org.kuali.student.lum.lu.dto
Class LuDocRelationInfo

java.lang.Object
  extended by org.kuali.student.lum.lu.dto.LuDocRelationInfo
All Implemented Interfaces:
Serializable, HasAttributes, HasTypeState, Idable

public class LuDocRelationInfo
extends Object
implements Serializable, Idable, HasTypeState, HasAttributes

Information about the LU to document relation.

See Also:
Serialized Form

Field Summary
private  Map<String,String> attributes
           
private  String cluId
           
private  RichTextInfo desc
           
private  String documentId
           
private  Date effectiveDate
           
private  Date expirationDate
           
private  String id
           
private  MetaInfo metaInfo
           
private static long serialVersionUID
           
private  String state
           
private  String title
           
private  String type
           
 
Constructor Summary
LuDocRelationInfo()
           
 
Method Summary
 Map<String,String> getAttributes()
          List of key/value pairs, typically used for dynamic attributes.
 String getCluId()
          Unique identifier for a Canonical Learning Unit (CLU).
 RichTextInfo getDesc()
          The description of the document usage in the context of the CLU.
 String getDocumentId()
          Unique identifier for a document.
 Date getEffectiveDate()
          Date and time that this LU Doc Relation became effective.
 Date getExpirationDate()
          Date and time that this LU Doc Relation expires.
 String getId()
          Unique identifier for a LU to document relation.
 MetaInfo getMetaInfo()
          Create and last update info for the structure.
 String getState()
          The current status of the LU to document relationship.
 String getTitle()
          The title of the document usage in the context of the CLU.
 String getType()
          Unique identifier for an LU document relationship type.
 void setAttributes(Map<String,String> attributes)
           
 void setCluId(String cluId)
           
 void setDesc(RichTextInfo desc)
           
 void setDocumentId(String documentId)
           
 void setEffectiveDate(Date effectiveDate)
           
 void setExpirationDate(Date expirationDate)
           
 void setId(String id)
           
 void setMetaInfo(MetaInfo metaInfo)
           
 void setState(String state)
           
 void setTitle(String title)
           
 void setType(String type)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

cluId

private String cluId

documentId

private String documentId

title

private String title

desc

private RichTextInfo desc

effectiveDate

private Date effectiveDate

expirationDate

private Date expirationDate

attributes

private Map<String,String> attributes

metaInfo

private MetaInfo metaInfo

type

private String type

state

private String state

id

private String id
Constructor Detail

LuDocRelationInfo

public LuDocRelationInfo()
Method Detail

getCluId

public String getCluId()
Unique identifier for a Canonical Learning Unit (CLU).


setCluId

public void setCluId(String cluId)

getDocumentId

public String getDocumentId()
Unique identifier for a document.


setDocumentId

public void setDocumentId(String documentId)

getTitle

public String getTitle()
The title of the document usage in the context of the CLU.


setTitle

public void setTitle(String title)

getDesc

public RichTextInfo getDesc()
The description of the document usage in the context of the CLU.


setDesc

public void setDesc(RichTextInfo desc)

getEffectiveDate

public Date getEffectiveDate()
Date and time that this LU Doc Relation became effective. This is a similar concept to the effective date on enumerated values. When an expiration date has been specified, this field must be less than or equal to the expiration date.


setEffectiveDate

public void setEffectiveDate(Date effectiveDate)

getExpirationDate

public Date getExpirationDate()
Date and time that this LU Doc Relation expires. This is a similar concept to the expiration date on enumerated values. If specified, this should be greater than or equal to the effective date. If this field is not specified, then no expiration date has been currently defined and should automatically be considered greater than the effective date.


setExpirationDate

public void setExpirationDate(Date expirationDate)

getAttributes

public Map<String,String> getAttributes()
List of key/value pairs, typically used for dynamic attributes.

Specified by:
getAttributes in interface HasAttributes

setAttributes

public void setAttributes(Map<String,String> attributes)
Specified by:
setAttributes in interface HasAttributes

getMetaInfo

public MetaInfo getMetaInfo()
Create and last update info for the structure. This is optional and treated as read only since the data is set by the internals of the service during maintenance operations.


setMetaInfo

public void setMetaInfo(MetaInfo metaInfo)

getType

public String getType()
Unique identifier for an LU document relationship type. Describes the type of usage of the document.

Specified by:
getType in interface HasTypeState

setType

public void setType(String type)
Specified by:
setType in interface HasTypeState

getState

public String getState()
The current status of the LU to document relationship. The values for this field are constrained to those in the luDocRelationState enumeration. A separate setup operation does not exist for retrieval of the meta data around this value.

Specified by:
getState in interface HasTypeState

setState

public void setState(String state)
Specified by:
setState in interface HasTypeState

getId

public String getId()
Unique identifier for a LU to document relation. This is optional, due to the identifier being set at the time of creation. Once the connection has been created, this should be seen as required.

Specified by:
getId in interface Idable

setId

public void setId(String id)
Specified by:
setId in interface Idable


Copyright © 2010 The Kuali Foundation. All rights reserved.