Class _FormPortal

  • All Implemented Interfaces:
    IEntity, Serializable, org.apache.cayenne.DataObject, org.apache.cayenne.Persistent, org.apache.cayenne.Validating
    Direct Known Subclasses:
    FormPortal

    public abstract class _FormPortal
    extends BaseEntity

    Provides the _FormPortal database entity.

    Please note this class was generated by Cayenne. You should avoid making changes to this class as it may be regenerated. Please make customizations to the entity subclass.

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static org.apache.cayenne.exp.Property<Boolean> ANONYMOUS_FLAG
      Provides the 'ANONYMOUS_FLAG' property.
      static String ANONYMOUS_FLAG_PROPERTY
      Provides the 'anonymousFlag' property name.
      static org.apache.cayenne.exp.Property<Boolean> AUTHENTICATED_FLAG
      Provides the 'AUTHENTICATED_FLAG' property.
      static String AUTHENTICATED_FLAG_PROPERTY
      Provides the 'authenticatedFlag' property name.
      static org.apache.cayenne.exp.Property<ClientPortal> CLIENT_PORTAL
      Provides the 'CLIENT_PORTAL' property.
      static String CLIENT_PORTAL_PROPERTY
      Provides the 'clientPortal' relationship name.
      static org.apache.cayenne.exp.Property<Form> FORM
      Provides the 'FORM' property.
      static String FORM_PORTAL_OID_PK_COLUMN
      Provides the 'form_portal_oid' primary key database column name.
      static String FORM_PROPERTY
      Provides the 'form' relationship name.
      static org.apache.cayenne.exp.Property<Portal> PORTAL
      Provides the 'PORTAL' property.
      static String PORTAL_PROPERTY
      Provides the 'portal' relationship name.
      static org.apache.cayenne.exp.Property<String> TXN_SCOPE
      Provides the 'TXN_SCOPE' property.
      static String TXN_SCOPE_PROPERTY
      Provides the 'txnScope' property name.
      • Fields inherited from class org.apache.cayenne.CayenneDataObject

        values
      • Fields inherited from class org.apache.cayenne.BaseDataObject

        snapshotVersion
      • Fields inherited from class org.apache.cayenne.PersistentObject

        objectContext, objectId, persistenceState
      • Fields inherited from interface org.apache.cayenne.DataObject

        DEFAULT_VERSION
    • Constructor Summary

      Constructors 
      Constructor Description
      _FormPortal()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ClientPortal getClientPortal()
      Return the ClientPortal.
      Form getForm()
      Return the Form.
      Portal getPortal()
      Return the Portal.
      String getTxnScope()
      Return the txnScope value.
      boolean isAnonymousFlag()
      Return the anonymousFlag value.
      boolean isAuthenticatedFlag()
      Return the authenticatedFlag value.
      void setAnonymousFlag​(boolean anonymousFlag)
      Set the anonymousFlag value.
      void setAuthenticatedFlag​(boolean authenticatedFlag)
      Set the authenticatedFlag value.
      void setClientPortal​(ClientPortal clientPortal)
      Set the ClientPortal.
      void setForm​(Form form)
      Set the Form.
      void setPortal​(Portal portal)
      Set the Portal.
      void setTxnScope​(String txnScope)
      Set the txnScope value.
      • Methods inherited from class org.apache.cayenne.CayenneDataObject

        makePath, readPropertyDirectly, readState, setPersistenceState, writePropertyDirectly, writeState
      • Methods inherited from class org.apache.cayenne.BaseDataObject

        addToManyTarget, beforePropertyRead, beforePropertyWrite, getSnapshotVersion, readNestedProperty, readProperty, readSerialized, removeToManyTarget, setObjectContext, setReverseRelationship, setSnapshotVersion, setToManyTarget, setToOneTarget, toStringBuffer, unsetReverseRelationship, validateForDelete, validateForInsert, validateForSave, validateForUpdate, willConnect, writeProperty, writeSerialized
      • Methods inherited from class org.apache.cayenne.PersistentObject

        getMapKey, getObjectContext, getObjectId, getPersistenceState, setObjectId
      • Methods inherited from interface org.apache.cayenne.Persistent

        getObjectContext, getObjectId, getPersistenceState, setObjectContext, setObjectId, setPersistenceState
    • Field Detail

      • ANONYMOUS_FLAG_PROPERTY

        public static final String ANONYMOUS_FLAG_PROPERTY
        Provides the 'anonymousFlag' property name.
        See Also:
        Constant Field Values
      • AUTHENTICATED_FLAG_PROPERTY

        public static final String AUTHENTICATED_FLAG_PROPERTY
        Provides the 'authenticatedFlag' property name.
        See Also:
        Constant Field Values
      • TXN_SCOPE_PROPERTY

        public static final String TXN_SCOPE_PROPERTY
        Provides the 'txnScope' property name.
        See Also:
        Constant Field Values
      • CLIENT_PORTAL_PROPERTY

        public static final String CLIENT_PORTAL_PROPERTY
        Provides the 'clientPortal' relationship name.
        See Also:
        Constant Field Values
      • FORM_PORTAL_OID_PK_COLUMN

        public static final String FORM_PORTAL_OID_PK_COLUMN
        Provides the 'form_portal_oid' primary key database column name.
        See Also:
        Constant Field Values
      • ANONYMOUS_FLAG

        public static final org.apache.cayenne.exp.Property<Boolean> ANONYMOUS_FLAG
        Provides the 'ANONYMOUS_FLAG' property.
      • AUTHENTICATED_FLAG

        public static final org.apache.cayenne.exp.Property<Boolean> AUTHENTICATED_FLAG
        Provides the 'AUTHENTICATED_FLAG' property.
      • TXN_SCOPE

        public static final org.apache.cayenne.exp.Property<String> TXN_SCOPE
        Provides the 'TXN_SCOPE' property.
      • CLIENT_PORTAL

        public static final org.apache.cayenne.exp.Property<ClientPortal> CLIENT_PORTAL
        Provides the 'CLIENT_PORTAL' property.
      • FORM

        public static final org.apache.cayenne.exp.Property<Form> FORM
        Provides the 'FORM' property.
      • PORTAL

        public static final org.apache.cayenne.exp.Property<Portal> PORTAL
        Provides the 'PORTAL' property.
    • Constructor Detail

      • _FormPortal

        public _FormPortal()
    • Method Detail

      • setAnonymousFlag

        public void setAnonymousFlag​(boolean anonymousFlag)
        Set the anonymousFlag value.
        Parameters:
        anonymousFlag - the anonymousFlag value to set
      • isAnonymousFlag

        public boolean isAnonymousFlag()
        Return the anonymousFlag value.
        Returns:
        anonymousFlag the anonymousFlag value
      • setAuthenticatedFlag

        public void setAuthenticatedFlag​(boolean authenticatedFlag)
        Set the authenticatedFlag value.
        Parameters:
        authenticatedFlag - the authenticatedFlag value to set
      • isAuthenticatedFlag

        public boolean isAuthenticatedFlag()
        Return the authenticatedFlag value.
        Returns:
        authenticatedFlag the authenticatedFlag value
      • setTxnScope

        public void setTxnScope​(String txnScope)
        Set the txnScope value.
        Parameters:
        txnScope - the txnScope value to set
      • getTxnScope

        public String getTxnScope()
        Return the txnScope value.
        Returns:
        txnScope the txnScope value
      • setClientPortal

        public void setClientPortal​(ClientPortal clientPortal)
        Set the ClientPortal.
        Parameters:
        clientPortal - the clientPortal value to set
      • getClientPortal

        public ClientPortal getClientPortal()
        Return the ClientPortal.
        Returns:
        the clientPortal value
      • setForm

        public void setForm​(Form form)
        Set the Form.
        Parameters:
        form - the form value to set
      • getForm

        public Form getForm()
        Return the Form.
        Returns:
        the form value
      • setPortal

        public void setPortal​(Portal portal)
        Set the Portal.
        Parameters:
        portal - the portal value to set
      • getPortal

        public Portal getPortal()
        Return the Portal.
        Returns:
        the portal value