Kaydet (Commit) 665e762b authored tarafından Caolán McNamara's avatar Caolán McNamara

allow building against later pentaho libraries

üst 43bb0120
...@@ -35,6 +35,7 @@ import java.util.Map; ...@@ -35,6 +35,7 @@ import java.util.Map;
import org.pentaho.reporting.libraries.resourceloader.ResourceData; import org.pentaho.reporting.libraries.resourceloader.ResourceData;
import org.pentaho.reporting.libraries.resourceloader.ResourceKey; import org.pentaho.reporting.libraries.resourceloader.ResourceKey;
import org.pentaho.reporting.libraries.resourceloader.ResourceException;
import org.pentaho.reporting.libraries.resourceloader.ResourceKeyCreationException; import org.pentaho.reporting.libraries.resourceloader.ResourceKeyCreationException;
import org.pentaho.reporting.libraries.resourceloader.ResourceLoader; import org.pentaho.reporting.libraries.resourceloader.ResourceLoader;
import org.pentaho.reporting.libraries.resourceloader.ResourceLoadingException; import org.pentaho.reporting.libraries.resourceloader.ResourceLoadingException;
...@@ -169,4 +170,19 @@ public class InputRepositoryLoader implements ResourceLoader ...@@ -169,4 +170,19 @@ public class InputRepositoryLoader implements ResourceLoader
{ {
return resourceManager; return resourceManager;
} }
public boolean isSupportedDeserializer(String string)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public String serialize(ResourceKey rk, ResourceKey rk1) throws ResourceException
{
throw new UnsupportedOperationException("Not supported yet.");
}
public ResourceKey deserialize(ResourceKey rk, String string) throws ResourceKeyCreationException
{
throw new UnsupportedOperationException("Not supported yet.");
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment