oor.model
Class ContentState

java.lang.Object
  extended by oor.model.ContentState

public class ContentState
extends java.lang.Object

Possible states of an ontology or other OOR content during its lifecycle.

Author:
Mike Dean

Field Summary
static ContentState ACCEPTED
          Content which has been accepted according to gatekeeping policies, etc.
static ContentState ARCHIVED
          Content which is no longer generally available.
static ContentState CREATED
          Newly-created content, generally empty.
static ContentState DEPRECATED
          Content which is no longer recommended for use.
static ContentState MODIFIED
          Content which has been modified, but the modifications have not yet passed gatekeeping policies.
static ContentState SUBMITTED
          Newly-submitted content, generally largely or fully populated.
 
Constructor Summary
ContentState()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CREATED

public static ContentState CREATED
Newly-created content, generally empty. This supports development within the repository.


SUBMITTED

public static ContentState SUBMITTED
Newly-submitted content, generally largely or fully populated.


ACCEPTED

public static ContentState ACCEPTED
Content which has been accepted according to gatekeeping policies, etc.


MODIFIED

public static ContentState MODIFIED
Content which has been modified, but the modifications have not yet passed gatekeeping policies. Once gatekeeping policies have been passed, the state will generally revert back to ACCEPTED.


DEPRECATED

public static ContentState DEPRECATED
Content which is no longer recommended for use.


ARCHIVED

public static ContentState ARCHIVED
Content which is no longer generally available.

Constructor Detail

ContentState

public ContentState()