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 Type
    Method
    Description
    void
    MdObjectCreated(MdEvent e, String id)
    The object created event is sent when a new object has been created.
    void
    MdObjectDeleted(MdEvent e, String id)
    The object deleted event is sent when an object has been deleted on the server.
    void
    MdObjectsCreated(MdEvent e, List<String> ids)
    The objects created event is sent when new objects have been created.
  • Method Details

    • MdObjectCreated

      void MdObjectCreated(MdEvent e, String id) throws RemoteException
      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 - MdEvent
      id - String
      Throws:
      RemoteException
    • MdObjectDeleted

      void MdObjectDeleted(MdEvent e, String id) throws RemoteException
      The object deleted event is sent when an object has been deleted on the server.
      Parameters:
      e - MdEvent
      id - String
      Throws:
      RemoteException
    • MdObjectsCreated

      void MdObjectsCreated(MdEvent e, List<String> ids) throws RemoteException
      The objects created event is sent when new objects have been created. Or temporary objects ids changes upon return from the server
      Parameters:
      e - MdEvent
      ids - List
      Throws:
      RemoteException