org.kuali.rice.core.api.component
Class Component

java.lang.Object
  extended by org.kuali.rice.core.api.mo.AbstractDataTransferObject
      extended by org.kuali.rice.core.api.component.Component
All Implemented Interfaces:
Serializable, ComponentContract, Inactivatable, Coded, GloballyUnique, Versioned, ModelObjectBasic, ModelObjectComplete

public final class Component
extends AbstractDataTransferObject
implements ComponentContract

An immutable representation of an ComponentContract. Use the class Component.Builder to construct an Component object.

See Also:
ComponentContract, Serialized Form

Nested Class Summary
static class Component.Builder
          This builder is used to construct instances of Component.
 
Method Summary
 String getCode()
          The code value for this object.
 String getName()
          This is the name value for the component.
 String getNamespaceCode()
          This is the namespace for the component.
 String getObjectId()
          Return the globally unique object id of this object.
 Long getVersionNumber()
          Returns the version number for this object.
 boolean isActive()
          This the active flag for the Component.
 boolean isVirtual()
          Whether this is a virtual or derived component.
 
Methods inherited from class org.kuali.rice.core.api.mo.AbstractDataTransferObject
afterUnmarshal, beforeUnmarshal, equals, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

getNamespaceCode

public String getNamespaceCode()
Description copied from interface: ComponentContract
This is the namespace for the component. It cannot be null or a blank string.

It is a way of assigning the component to a logical grouping within a rice application or rice ecosystem.

Specified by:
getNamespaceCode in interface ComponentContract
Returns:
namespace code

getCode

public String getCode()
Description copied from interface: Coded
The code value for this object. In general a code value cannot be null or a blank string.

Specified by:
getCode in interface Coded
Returns:
the code value for this object.

getName

public String getName()
Description copied from interface: ComponentContract
This is the name value for the component. It cannot be null or a blank string.

Specified by:
getName in interface ComponentContract
Returns:
name

isVirtual

public boolean isVirtual()
Description copied from interface: ComponentContract
Whether this is a virtual or derived component.

Specified by:
isVirtual in interface ComponentContract
Returns:
virtual

isActive

public boolean isActive()
Description copied from interface: ComponentContract
This the active flag for the Component.

Specified by:
isActive in interface ComponentContract
Specified by:
isActive in interface Inactivatable
Returns:
active

getVersionNumber

public Long getVersionNumber()
Description copied from interface: Versioned
Returns the version number for this object. In general, this value should only be null if the object has not yet been stored to a persistent data store. This version number is generally used for the purposes of optimistic locking.

Specified by:
getVersionNumber in interface Versioned
Returns:
the version number, or null if one has not been assigned yet

getObjectId

public String getObjectId()
Description copied from interface: GloballyUnique
Return the globally unique object id of this object. In general, this value should only be null if the object has not yet been stored to a persistent data store.

Specified by:
getObjectId in interface GloballyUnique
Returns:
the objectId of this object, or null if it has not been set yet


Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.