public Collection<Object> getObjects() {
return commandService.execute( new GetObjectsInEntryPointCommand(null, entryPoint) );
}
public Collection<Object> getObjects(ObjectFilter filter) {
return commandService.execute( new GetObjectsInEntryPointCommand(filter, entryPoint) );
}