Interface ObjectFieldDefinition

    • Method Detail

      • getFieldName

        String getFieldName()
        Get the value for FieldName. (The internal name of this Field. Used for debugging and to build the localized 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.
      • getSearchName

        String getSearchName()
        Get the value for SearchName. (The internal name of this ObjectType, normalized to allow for convenient database searching.) 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.
      • getFieldType

        ModelTypes getFieldType()
        Get the value for FieldType. (The type of the field) 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.
      • getFieldReferenceObjectDefinition

        ObjectDefinition getFieldReferenceObjectDefinition()
        Get the FieldReferenceObjectDefinition.
        Returns:
        FieldReferenceObjectDefinition
        Throws:
        ObjectDeletedException - If this method is called when the object has been marked for deletion.
        ObjectNotAttachedToSessionException - If this method is called when the object has been removed from it's session.
      • setFieldReferenceObjectDefinition

        void setFieldReferenceObjectDefinition​(ObjectDefinition newFieldReferenceObjectDefinition)
        Set the value for FieldReferenceObjectDefinition. This value is optional.
        Parameters:
        newFieldReferenceObjectDefinition - is the object to set FieldReferenceObjectDefinition to. The ObjectDefinition that this Field refers to if it is a relation.
      • checkCreatePrivilege

        RequiredPermission checkCreatePrivilege()
        Check whether or not the create action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkViewPrivilege

        RequiredPermission checkViewPrivilege()
        Check whether or not the view action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkEditPrivilege

        RequiredPermission checkEditPrivilege()
        Check whether or not the edit action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkDeletePrivilege

        RequiredPermission checkDeletePrivilege()
        Check whether or not the delete action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.