Temporary build fix

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2191 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-01-25 08:35:42 +00:00
parent 744535fa73
commit 27c3652b85
2 changed files with 66 additions and 4 deletions

View File

@@ -76,6 +76,58 @@ public class ImporterComponentTest extends BaseSpringTest
System.out.println(NodeStoreInspector.dumpNodeStore(nodeService, storeRef));
}
/*
* Temporary build fix
*/
private static class ImportTimerProgress implements ImporterProgress
{
public void aspectAdded(NodeRef nodeRef, QName aspect)
{
throw new UnsupportedOperationException();
}
public void completed()
{
throw new UnsupportedOperationException();
}
public void contentCreated(NodeRef nodeRef, String sourceUrl)
{
throw new UnsupportedOperationException();
}
public void error(Throwable e)
{
throw new UnsupportedOperationException();
}
public void nodeCreated(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)
{
throw new UnsupportedOperationException();
}
public void nodeLinked(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)
{
throw new UnsupportedOperationException();
}
public void permissionSet(NodeRef nodeRef, AccessPermission permission)
{
throw new UnsupportedOperationException();
}
public void propertySet(NodeRef nodeRef, QName property, Serializable value)
{
throw new UnsupportedOperationException();
}
public void started()
{
throw new UnsupportedOperationException();
}
}
public void testBootstrap()
{
@@ -84,7 +136,6 @@ public class ImporterComponentTest extends BaseSpringTest
importerBootstrap.bootstrap();
authenticationComponent.setSystemUserAsCurrentUser();
System.out.println(NodeStoreInspector.dumpNodeStore(nodeService, bootstrapStoreRef));
}
}
}