Class Assignment

  • All Implemented Interfaces:
    IServiceDataObject, java.io.Serializable

    public class Assignment
    extends ServiceDataObject
    implements java.io.Serializable
    Assignment (a.k.a Inbox item) represents an entry from the Personal/Assignments page.
    Version:
    2013-08-26
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      Assignment()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Long getCreatedBy()
      Gets the ID of the user who created the assignment.
      java.lang.String getCreatedByName()
      Gets the name of the user who created the assignment.
      java.util.Date getDateAssigned()
      Gets the date the assignment was assigned.
      java.util.Date getDateDue()
      Gets the date the assignment is due.
      java.lang.String getDateDueColor()
      Gets the color to display the due date (e.g. #00FF00).
      java.lang.String getKeySig()
      Gets the key signature for the assignment.
      java.lang.String getName()
      Gets the name of the assignment.
      java.lang.Integer getPriority()
      Gets the priority of the assignment.
      java.lang.String getPriorityColor()
      Gets the color to display the priority (e.g. #00FF00).
      java.lang.String getPriorityString()
      Gets the priority of the assignment (as an xLated String).
      java.lang.Integer getStatus()
      Gets the status of the assignment.
      java.lang.String getStatusColor()
      Gets the color to display the status (e.g. #00FF00).
      java.lang.String getStatusString()
      Gets the status of the assignment (as an xLated String).
      int getSubType()
      Gets the subtype of the assignment.
      void load​(com.opentext.api.LLValue value)
      Deserialize an ServiceDataObject from an LLValue that is received from Livelink.
      void setCreatedBy​(java.lang.Long value)
      Sets the ID of the user who created the assignment.
      void setCreatedByName​(java.lang.String value)
      Sets the name of the user who created the assignment.
      void setDateAssigned​(java.util.Date value)
      Sets the date the assignment was assigned.
      void setDateDue​(java.util.Date value)
      Sets the date the assignment is due.
      void setDateDueColor​(java.lang.String value)
      Sets the color to display the due date (e.g. #00FF00).
      void setKeySig​(java.lang.String value)
      Sets the key signature for the assignment.
      void setName​(java.lang.String value)
      Sets the name of the assignment.
      void setPriority​(java.lang.Integer value)
      Sets the priority of the assignment.
      void setPriorityColor​(java.lang.String value)
      Sets the color to display the priority (e.g. #00FF00).
      void setPriorityString​(java.lang.String value)
      Sets the priority of the assignment (as an xLated String).
      void setStatus​(java.lang.Integer value)
      Sets the status of the assignment.
      void setStatusColor​(java.lang.String value)
      Sets the color to display the status (e.g. #00FF00).
      void setStatusString​(java.lang.String value)
      Sets the status of the assignment (as an xLated String).
      void setSubType​(int value)
      Sets the subtype of the assignment.
      com.opentext.api.LLValue toLLValue()
      Serialize an SDO object to an LLValue that can be sent to Livelink.
      java.lang.String toString()
      Returns a string representation of the object consisting of the object name and any features and their values within square brackets.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Assignment

        public Assignment()
    • Method Detail

      • setCreatedBy

        public void setCreatedBy​(java.lang.Long value)
        Sets the ID of the user who created the assignment.
      • getCreatedBy

        public java.lang.Long getCreatedBy()
        Gets the ID of the user who created the assignment.
      • setCreatedByName

        public void setCreatedByName​(java.lang.String value)
        Sets the name of the user who created the assignment.
      • getCreatedByName

        public java.lang.String getCreatedByName()
        Gets the name of the user who created the assignment.
      • setDateAssigned

        public void setDateAssigned​(java.util.Date value)
        Sets the date the assignment was assigned.
      • getDateAssigned

        public java.util.Date getDateAssigned()
        Gets the date the assignment was assigned.
      • setDateDue

        public void setDateDue​(java.util.Date value)
        Sets the date the assignment is due.
      • getDateDue

        public java.util.Date getDateDue()
        Gets the date the assignment is due.
      • setDateDueColor

        public void setDateDueColor​(java.lang.String value)
        Sets the color to display the due date (e.g. #00FF00).
      • getDateDueColor

        public java.lang.String getDateDueColor()
        Gets the color to display the due date (e.g. #00FF00).
      • setKeySig

        public void setKeySig​(java.lang.String value)
        Sets the key signature for the assignment.
      • getKeySig

        public java.lang.String getKeySig()
        Gets the key signature for the assignment.
      • setName

        public void setName​(java.lang.String value)
        Sets the name of the assignment.
      • getName

        public java.lang.String getName()
        Gets the name of the assignment.
      • setPriority

        public void setPriority​(java.lang.Integer value)
        Sets the priority of the assignment.
      • getPriority

        public java.lang.Integer getPriority()
        Gets the priority of the assignment.
      • setPriorityColor

        public void setPriorityColor​(java.lang.String value)
        Sets the color to display the priority (e.g. #00FF00).
      • getPriorityColor

        public java.lang.String getPriorityColor()
        Gets the color to display the priority (e.g. #00FF00).
      • setPriorityString

        public void setPriorityString​(java.lang.String value)
        Sets the priority of the assignment (as an xLated String).
      • getPriorityString

        public java.lang.String getPriorityString()
        Gets the priority of the assignment (as an xLated String).
      • setStatus

        public void setStatus​(java.lang.Integer value)
        Sets the status of the assignment.
      • getStatus

        public java.lang.Integer getStatus()
        Gets the status of the assignment.
      • setStatusColor

        public void setStatusColor​(java.lang.String value)
        Sets the color to display the status (e.g. #00FF00).
      • getStatusColor

        public java.lang.String getStatusColor()
        Gets the color to display the status (e.g. #00FF00).
      • setStatusString

        public void setStatusString​(java.lang.String value)
        Sets the status of the assignment (as an xLated String).
      • getStatusString

        public java.lang.String getStatusString()
        Gets the status of the assignment (as an xLated String).
      • setSubType

        public void setSubType​(int value)
        Sets the subtype of the assignment.
      • getSubType

        public int getSubType()
        Gets the subtype of the assignment.
      • load

        public void load​(com.opentext.api.LLValue value)
        Description copied from interface: IServiceDataObject
        Deserialize an ServiceDataObject from an LLValue that is received from Livelink. The LLValue is an Assoc that contains all of the features of this SDO. These features may refer to other SDOs and contain arrays of primitive values or SDOs. Each referenced SDO, will have its load() method called as well. Note: this is an internal method not meant to be called by clients.
        Specified by:
        load in interface IServiceDataObject
        Overrides:
        load in class ServiceDataObject
        Parameters:
        value - the LLValue containing the data to be loaded
      • toLLValue

        public com.opentext.api.LLValue toLLValue()
        Description copied from interface: IServiceDataObject
        Serialize an SDO object to an LLValue that can be sent to Livelink. Each feature of the SDO is stored in a key of the LLValue Assoc. Any references to other SDOs cause their toLLValue() method to be called. Note: this is an internal method not meant to be called by clients.
        Specified by:
        toLLValue in interface IServiceDataObject
        Overrides:
        toLLValue in class ServiceDataObject
        Returns:
        Returns the LLValue object that represents this SDO
      • toString

        public java.lang.String toString()
        Description copied from class: ServiceDataObject
        Returns a string representation of the object consisting of the object name and any features and their values within square brackets. Intended for simple debugging or logging of an SDO.
        Overrides:
        toString in class ServiceDataObject