Class ProjectInfo
- java.lang.Object
-
- com.opentext.livelink.service.core.ServiceDataObject
-
- com.opentext.livelink.service.collaboration.ProjectInfo
-
- All Implemented Interfaces:
IServiceDataObject,java.io.Serializable
public class ProjectInfo extends ServiceDataObject implements java.io.Serializable
ProjectInfo is a light weight object that provides details about a project.- Version:
- 2013-08-26
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProjectInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.LonggetCreatedBy()Gets the ID of the user that created the project.java.lang.StringgetGoals()Gets the goals of the project.longgetID()Gets the ID of the project.java.lang.StringgetInitiatives()Gets the initiatives of the project.java.lang.StringgetMission()Gets the mission of the project.java.lang.StringgetName()Gets the name of the project.java.lang.StringgetObjectives()Gets the objectives of the project.longgetParentID()Gets the parent ID of the container for the project.booleangetPublicAccess()Gets whether public access is allowed.java.util.DategetStartDate()Gets the start date of the project.ProjectStatusgetStatus()Gets the current status of the project.java.util.DategetTargetDate()Gets the target date to complete the project.voidload(com.opentext.api.LLValue value)Deserialize an ServiceDataObject from an LLValue that is received from Livelink.voidsetCreatedBy(java.lang.Long value)Sets the ID of the user that created the project.voidsetGoals(java.lang.String value)Sets the goals of the project.voidsetID(long value)Sets the ID of the project.voidsetInitiatives(java.lang.String value)Sets the initiatives of the project.voidsetMission(java.lang.String value)Sets the mission of the project.voidsetName(java.lang.String value)Sets the name of the project.voidsetObjectives(java.lang.String value)Sets the objectives of the project.voidsetParentID(long value)Sets the parent ID of the container for the project.voidsetPublicAccess(boolean value)Sets whether public access is allowed.voidsetStartDate(java.util.Date value)Sets the start date of the project.voidsetStatus(ProjectStatus value)Sets the current status of the project.voidsetTargetDate(java.util.Date value)Sets the target date to complete the project.com.opentext.api.LLValuetoLLValue()Serialize an SDO object to an LLValue that can be sent to Livelink.java.lang.StringtoString()Returns a string representation of the object consisting of the object name and any features and their values within square brackets.
-
-
-
Method Detail
-
setCreatedBy
public void setCreatedBy(java.lang.Long value)
Sets the ID of the user that created the project.
-
getCreatedBy
public java.lang.Long getCreatedBy()
Gets the ID of the user that created the project.
-
setGoals
public void setGoals(java.lang.String value)
Sets the goals of the project.
-
getGoals
public java.lang.String getGoals()
Gets the goals of the project.
-
setID
public void setID(long value)
Sets the ID of the project.
-
getID
public long getID()
Gets the ID of the project.
-
setInitiatives
public void setInitiatives(java.lang.String value)
Sets the initiatives of the project.
-
getInitiatives
public java.lang.String getInitiatives()
Gets the initiatives of the project.
-
setMission
public void setMission(java.lang.String value)
Sets the mission of the project.
-
getMission
public java.lang.String getMission()
Gets the mission of the project.
-
setName
public void setName(java.lang.String value)
Sets the name of the project.
-
getName
public java.lang.String getName()
Gets the name of the project.
-
setObjectives
public void setObjectives(java.lang.String value)
Sets the objectives of the project.
-
getObjectives
public java.lang.String getObjectives()
Gets the objectives of the project.
-
setParentID
public void setParentID(long value)
Sets the parent ID of the container for the project.
-
getParentID
public long getParentID()
Gets the parent ID of the container for the project.
-
setPublicAccess
public void setPublicAccess(boolean value)
Sets whether public access is allowed.
-
getPublicAccess
public boolean getPublicAccess()
Gets whether public access is allowed.
-
setStartDate
public void setStartDate(java.util.Date value)
Sets the start date of the project.
-
getStartDate
public java.util.Date getStartDate()
Gets the start date of the project.
-
setStatus
public void setStatus(ProjectStatus value)
Sets the current status of the project.
-
getStatus
public ProjectStatus getStatus()
Gets the current status of the project.
-
setTargetDate
public void setTargetDate(java.util.Date value)
Sets the target date to complete the project.
-
getTargetDate
public java.util.Date getTargetDate()
Gets the target date to complete the project.
-
load
public void load(com.opentext.api.LLValue value)
Description copied from interface:IServiceDataObjectDeserialize 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:
loadin interfaceIServiceDataObject- Overrides:
loadin classServiceDataObject- Parameters:
value- the LLValue containing the data to be loaded
-
toLLValue
public com.opentext.api.LLValue toLLValue()
Description copied from interface:IServiceDataObjectSerialize 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:
toLLValuein interfaceIServiceDataObject- Overrides:
toLLValuein classServiceDataObject- Returns:
- Returns the LLValue object that represents this SDO
-
toString
public java.lang.String toString()
Description copied from class:ServiceDataObjectReturns 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:
toStringin classServiceDataObject
-
-