Interface RELEntryPoint

    • Method Detail

      • getName

        String getName()
        Get the value for Name. (The name by which function is to be published) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • getFQClassName

        String getFQClassName()
        Get the value for FQClassName. (The fully qualified class name) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • getMethodSignature

        String getMethodSignature()
        Get the value for MethodSignature. (The string version of the method signature) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setName

        void setName​(String newName)
        Set the value for Name. (The name by which function is to be published) This value is mandatory.
        Parameters:
        newName - the new value for Name. If this is null, then the object cannot be persisted.
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setFQClassName

        void setFQClassName​(String newFQClassName)
        Set the value for FQClassName. (The fully qualified class name) This value is mandatory.
        Parameters:
        newFQClassName - the new value for FQClassName. If this is null, then the object cannot be persisted.
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setMethodSignature

        void setMethodSignature​(String newMethodSignature)
        Set the value for MethodSignature. (The string version of the method signature) This value is mandatory.
        Parameters:
        newMethodSignature - the new value for MethodSignature. If this is null, then the object cannot be persisted.
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.