Interface EditableObject

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void delete()
      Removes an existing editable object from its source.
      void save()
      Saves the new or modified object on its source.
      void save​(java.lang.String iPGUID, java.lang.String iSessionId)
      Saves the new or modified object on its source.
    • Method Detail

      • save

        void save​(java.lang.String iPGUID,
                  java.lang.String iSessionId)
           throws WebObjectsException
        Saves the new or modified object on its source. Example : saving a WebSchedule on IServer.
        Parameters:
        iPGUID - the project Id the object is at
        iSessionId - the session Id to access the object on IServer
        Throws:
        WebObjectsException - if an error was encountered on the source while saving.
      • delete

        void delete()
             throws WebObjectsException
        Removes an existing editable object from its source. Example : removing an existing WebSchedule from IServer.
        Throws:
        WebObjectsException - if an error was encountered on the source while deletion.