org.kuali.student.lum.lo.dto
Class LoInfo

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

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

Detailed information about a learning objective

See Also:
Serialized Form

Field Summary
private  Map<String,String> attributes
           
private  RichTextInfo desc
           
private  Date effectiveDate
           
private  Date expirationDate
           
private  String id
           
private  String loRepositoryKey
           
private  MetaInfo metaInfo
           
private  String name
           
private static long serialVersionUID
           
private  String state
           
private  String type
           
 
Constructor Summary
LoInfo()
           
 
Method Summary
 Map<String,String> getAttributes()
          List of key/value pairs, typically used for dynamic attributes.
 RichTextInfo getDesc()
          Narrative description of the learning objective
 Date getEffectiveDate()
          Date and time that this learning objective became effective.
 Date getExpirationDate()
          Date and time that this learning objective expires.
 String getId()
          Unique identifier for a learning objective record.
 String getLoRepositoryKey()
          Unique identifier for a learning objective repository.
 MetaInfo getMetaInfo()
          Create and last update info for the structure.
 String getName()
          Friendly name of the learning objective
 String getState()
          The current status of the learning objective.
 String getType()
          Unique identifier for a learning objective type.
 void setAttributes(Map<String,String> attributes)
           
 void setDesc(RichTextInfo desc)
           
 void setEffectiveDate(Date effectiveDate)
           
 void setExpirationDate(Date expirationDate)
           
 void setId(String id)
           
 void setLoRepositoryKey(String loRepositoryKey)
           
 void setMetaInfo(MetaInfo metaInfo)
           
 void setName(String name)
           
 void setState(String state)
           
 void setType(String type)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

name

private String name

desc

private RichTextInfo desc

loRepositoryKey

private String loRepositoryKey

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

LoInfo

public LoInfo()
Method Detail

getName

public String getName()
Friendly name of the learning objective


setName

public void setName(String name)

getDesc

public RichTextInfo getDesc()
Narrative description of the learning objective


setDesc

public void setDesc(RichTextInfo desc)

getLoRepositoryKey

public String getLoRepositoryKey()
Unique identifier for a learning objective repository. This value is immutable once set during creation.


setLoRepositoryKey

public void setLoRepositoryKey(String loRepositoryKey)

getEffectiveDate

public Date getEffectiveDate()
Date and time that this learning objective 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 learning objective 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 a learning objective type.

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 learning objective. The values for this field are constrained to those in the loState 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 learning objective record. This is optional, due to the identifier being set at the time of creation. Once the learning objective 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

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2010 The Kuali Foundation. All rights reserved.