Class _JobEventLog

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

    public abstract class _JobEventLog
    extends BaseEntity

    Provides the _JobEventLog 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<Job> JOB
      Provides the 'JOB' property.
      static org.apache.cayenne.exp.Property<JobAction> JOB_ACTION
      Provides the 'JOB_ACTION' property.
      static String JOB_ACTION_PROPERTY
      Provides the 'jobAction' relationship name.
      static String JOB_EVENT_LOG_OID_PK_COLUMN
      Provides the 'job_event_log_oid' primary key database column name.
      static String JOB_PROPERTY
      Provides the 'job' relationship name.
      static org.apache.cayenne.exp.Property<String> MESSAGE
      Provides the 'MESSAGE' property.
      static String MESSAGE_PROPERTY
      Provides the 'message' property name.
      static org.apache.cayenne.exp.Property<Date> TIME_CREATED
      Provides the 'TIME_CREATED' property.
      static String TIME_CREATED_PROPERTY
      Provides the 'timeCreated' property name.
      static org.apache.cayenne.exp.Property<String> TYPE
      Provides the 'TYPE' property.
      static String TYPE_PROPERTY
      Provides the 'type' property name.
      static org.apache.cayenne.exp.Property<String> USER_LOGIN_NAME
      Provides the 'USER_LOGIN_NAME' property.
      static String USER_LOGIN_NAME_PROPERTY
      Provides the 'userLoginName' 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
      _JobEventLog()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Job getJob()
      Return the Job.
      JobAction getJobAction()
      Return the JobAction.
      String getMessage()
      Return the message value.
      Date getTimeCreated()
      Return the timeCreated value.
      String getType()
      Return the type value.
      String getUserLoginName()
      Return the userLoginName value.
      void setJob​(Job job)
      Set the Job.
      void setJobAction​(JobAction jobAction)
      Set the JobAction.
      void setMessage​(String message)
      Set the message value.
      void setTimeCreated​(Date timeCreated)
      Set the timeCreated value.
      void setType​(String type)
      Set the type value.
      void setUserLoginName​(String userLoginName)
      Set the userLoginName 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

      • TIME_CREATED_PROPERTY

        public static final String TIME_CREATED_PROPERTY
        Provides the 'timeCreated' property name.
        See Also:
        Constant Field Values
      • USER_LOGIN_NAME_PROPERTY

        public static final String USER_LOGIN_NAME_PROPERTY
        Provides the 'userLoginName' property name.
        See Also:
        Constant Field Values
      • JOB_ACTION_PROPERTY

        public static final String JOB_ACTION_PROPERTY
        Provides the 'jobAction' relationship name.
        See Also:
        Constant Field Values
      • JOB_EVENT_LOG_OID_PK_COLUMN

        public static final String JOB_EVENT_LOG_OID_PK_COLUMN
        Provides the 'job_event_log_oid' primary key database column name.
        See Also:
        Constant Field Values
      • MESSAGE

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

        public static final org.apache.cayenne.exp.Property<Date> TIME_CREATED
        Provides the 'TIME_CREATED' property.
      • TYPE

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

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

        public static final org.apache.cayenne.exp.Property<Job> JOB
        Provides the 'JOB' property.
      • JOB_ACTION

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

      • _JobEventLog

        public _JobEventLog()
    • Method Detail

      • setMessage

        public void setMessage​(String message)
        Set the message value.
        Parameters:
        message - the message value to set
      • getMessage

        public String getMessage()
        Return the message value.
        Returns:
        message the message value
      • setTimeCreated

        public void setTimeCreated​(Date timeCreated)
        Set the timeCreated value.
        Parameters:
        timeCreated - the timeCreated value to set
      • getTimeCreated

        public Date getTimeCreated()
        Return the timeCreated value.
        Returns:
        timeCreated the timeCreated value
      • setType

        public void setType​(String type)
        Set the type value.
        Parameters:
        type - the type value to set
      • getType

        public String getType()
        Return the type value.
        Returns:
        type the type value
      • setUserLoginName

        public void setUserLoginName​(String userLoginName)
        Set the userLoginName value.
        Parameters:
        userLoginName - the userLoginName value to set
      • getUserLoginName

        public String getUserLoginName()
        Return the userLoginName value.
        Returns:
        userLoginName the userLoginName value
      • setJob

        public void setJob​(Job job)
        Set the Job.
        Parameters:
        job - the job value to set
      • getJob

        public Job getJob()
        Return the Job.
        Returns:
        the job value
      • setJobAction

        public void setJobAction​(JobAction jobAction)
        Set the JobAction.
        Parameters:
        jobAction - the jobAction value to set
      • getJobAction

        public JobAction getJobAction()
        Return the JobAction.
        Returns:
        the jobAction value