Package com.sas.metadata.remote
Interface MdObjectFactoryListener
- All Superinterfaces:
EventListener,Remote
public interface MdObjectFactoryListener
extends EventListener, Remote
This Listener handles events for objects creation and deletion on the server.
-
Method Summary
Modifier and TypeMethodDescriptionvoidMdObjectCreated(MdEvent e, String id) The object created event is sent when a new object has been created.voidMdObjectDeleted(MdEvent e, String id) The object deleted event is sent when an object has been deleted on the server.voidMdObjectsCreated(MdEvent e, List<String> ids) The objects created event is sent when new objects have been created.
-
Method Details
-
MdObjectCreated
The object created event is sent when a new object has been created. Or a temporary objects id changes upon return from the server- Parameters:
e- MdEventid- String- Throws:
RemoteException
-
MdObjectDeleted
The object deleted event is sent when an object has been deleted on the server.- Parameters:
e- MdEventid- String- Throws:
RemoteException
-
MdObjectsCreated
The objects created event is sent when new objects have been created. Or temporary objects ids changes upon return from the server- Parameters:
e- MdEventids- List- Throws:
RemoteException
-