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

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

public class LoRepositoryInfo
extends Object
implements Serializable, Idable, HasAttributes

Detailed information about a learning objective repository, including the root node.

See Also:
Serialized Form

Field Summary
private  Map<String,String> attributes
           
private  RichTextInfo desc
           
private  Date effectiveDate
           
private  Date expirationDate
           
private  String id
           
private  MetaInfo metaInfo
           
private  String name
           
private  String rootLoId
           
private static long serialVersionUID
           
 
Constructor Summary
LoRepositoryInfo()
           
 
Method Summary
 Map<String,String> getAttributes()
          List of key/value pairs, typically used for dynamic attributes.
 RichTextInfo getDesc()
          Narrative description of the learning objective repository
 Date getEffectiveDate()
          Date and time that this learning objective repository became effective.
 Date getExpirationDate()
          Date and time that this learning objective repository expires.
 String getId()
          Unique identifier for a learning objective repository.
 MetaInfo getMetaInfo()
          Create and last update info for the structure.
 String getName()
          Friendly name of the repository
 String getRootLoId()
          Identifier for the root node of the learning objective repository.
 void setAttributes(Map<String,String> attributes)
           
 void setDesc(RichTextInfo desc)
           
 void setEffectiveDate(Date effectiveDate)
           
 void setExpirationDate(Date expirationDate)
           
 void setId(String id)
           
 void setMetaInfo(MetaInfo metaInfo)
           
 void setName(String name)
           
 void setRootLoId(String rootLoId)
           
 
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

name

private String name

desc

private RichTextInfo desc

rootLoId

private String rootLoId

effectiveDate

private Date effectiveDate

expirationDate

private Date expirationDate

attributes

private Map<String,String> attributes

metaInfo

private MetaInfo metaInfo

id

private String id
Constructor Detail

LoRepositoryInfo

public LoRepositoryInfo()
Method Detail

getName

public String getName()
Friendly name of the repository


setName

public void setName(String name)

getDesc

public RichTextInfo getDesc()
Narrative description of the learning objective repository


setDesc

public void setDesc(RichTextInfo desc)

getRootLoId

public String getRootLoId()
Identifier for the root node of the learning objective repository. This is primarily present for repositories which are trees descendent from a singular node instead of looser collections.


setRootLoId

public void setRootLoId(String rootLoId)

getEffectiveDate

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

getId

public String getId()
Unique identifier for a learning objective repository.

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.