|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.jcorporate.expresso.core.dataobjects.BaseDataObject com.jcorporate.expresso.core.dataobjects.jdbc.JDBCDataObject com.jcorporate.expresso.core.dbobj.DBObject com.jcorporate.expresso.core.dbobj.SecuredDBObject com.sri.emo.dbobj.WizDecisionSet
public class WizDecisionSet
WizDecisionSet represents a set of responses that make up a "row" in the decision matrix.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.jcorporate.expresso.core.dbobj.DBObject |
---|
DBObject.FieldError, DBObject.FieldUpdate |
Field Summary | |
---|---|
static String |
FLD_DECISIONRESULT
Public constant for access to field "Decision Result" |
static String |
FLD_DECISIONTITLE
Public constant for access to field "Example Title" |
static String |
FLD_ID
Public constant for access to field "Item ID" |
static String |
FLD_WIZID
Public constant for access to field "Wizard Id" |
Fields inherited from class com.jcorporate.expresso.core.dbobj.SecuredDBObject |
---|
ADD, ALL_FUNCTIONS, CACHE_NAME, CACHE_TTY, DELETE, SEARCH, SYSTEM_ACCOUNT_NAME, UPDATE |
Fields inherited from class com.jcorporate.expresso.core.dbobj.DBObject |
---|
ATTRIBUTE_ERROR, ATTRIBUTE_ERROR_MESSAGE, ATTRIBUTE_PAGE_LIMIT, BIG_DECIMAL_ZERO, CACHE_LIMIT_PERCENT, CACHE_LIMIT_TTL, EMAIL_MASK, EVENT_ADD, EVENT_DELETE, EVENT_UPDATE, FLOAT_MASK, INT_MASK, IS_CHECK_RELATIONAL_INTEGRITY, IS_MUTABLE, sCacheStats, UPDATE_CHANGED_ONLY, WHERE_KEYWORD |
Fields inherited from class com.jcorporate.expresso.core.dataobjects.jdbc.JDBCDataObject |
---|
anyFieldsDistinct, anyFieldsToInput, anyFieldsToRetrieve, appendCustomWhere, caseSensitiveQuery, customWhereClause, dbKey, distinctFields, inputFields, localConnection, LONGBINARY_READ_DEFAULT_SIZE, maxRecords, myClassName, myUpdates, offsetRecord, recordSet, retrieveFields, sMetadataMap, sortKeys |
Fields inherited from class com.jcorporate.expresso.core.dataobjects.BaseDataObject |
---|
currentStatus, globalMask |
Fields inherited from interface com.jcorporate.expresso.core.dataobjects.Securable |
---|
SYSTEM_ACCOUNT |
Fields inherited from interface com.jcorporate.expresso.core.dataobjects.DataObject |
---|
STATUS_CURRENT, STATUS_DELETED, STATUS_NEW, STATUS_UPDATED |
Constructor Summary | |
---|---|
WizDecisionSet()
Creates an instance of WizDecisionSet. |
|
WizDecisionSet(DBConnection dbConnection,
int uid)
Constructor that sets a connection as the object is created - typically this is used when a particular DBConnection is required for the purposes of maintaining a database transaction. |
|
WizDecisionSet(ReadOnlyUser user)
Creates an instance of WizDecisionSet automatically setting the object's requesting user. |
Method Summary | |
---|---|
void |
addDecisionEntity(int[] wizStepIds,
String[] pickListIds)
Adds a decision entry into this 'set' of decisions. |
void |
addSingleDecisionEntity(DBConnection connection,
int wizStepId,
String pickListId)
Adds a single decision entity to the set. |
boolean |
equals(Object obj)
Indicates whether some other object is "equal to" this one. |
List |
getDecisionEntities()
Retrieve all details for this object. |
Node |
getDecisionNode()
Retrieves the node associated with this decision set. |
String |
getDecisionResult()
|
String |
getField(String fieldName)
Override of getField to provide for virtual field 'decision title' |
Integer |
getWizardId()
Retrieve the wizard id for this decision set. |
int |
hashCode()
Returns a hash code value for the object. |
void |
setDecisionResult(int parameterValue)
|
protected void |
setupFields()
One time intiialization of all the field types. |
void |
setWizardId(int newValue)
Set the wizard id for this decision set. |
void |
setWizardId(String newValue)
Set the wizard id for this decision set. |
Methods inherited from class com.jcorporate.expresso.core.dbobj.SecuredDBObject |
---|
add, canRequesterAdd, canRequesterDelete, canRequesterRead, canRequesterUpdate, checkAllowed, copyAttributes, count, createSecurityCache, delete, deleteAll, find, getRequestingUid, getRequestingUser, getString, getString, getString, getString, getString, getString, getSystemUid, instantiate, isAllowed, retrieve, search, searchAndRetrieveList, searchAndRetrieveList, setRequestingUid, setRequestingUser, update |
Methods inherited from class com.jcorporate.expresso.core.dataobjects.BaseDataObject |
---|
getGlobalMask, getStatus, isGlobalMasked, setFieldsWithDefaults, setGlobalMask, setStatus |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String FLD_ID
public static final String FLD_WIZID
public static final String FLD_DECISIONRESULT
public static final String FLD_DECISIONTITLE
Constructor Detail |
---|
public WizDecisionSet() throws DBException
DBException
- upon initialization exception.SecuredDBObject.SecuredDBObject(java.lang.String, int)
public WizDecisionSet(DBConnection dbConnection, int uid) throws DBException
This constructor is neceesary to work with otherDBMap and transaction capabilities
dbConnection
- The DBConnection to utilizeuid
- User Uid.
DBException
- upon initialization errorpublic WizDecisionSet(ReadOnlyUser user) throws DBException
user
- The user's security context.
DBException
- upon construction errorMethod Detail |
---|
public Node getDecisionNode() throws DBException
DBException
protected void setupFields() throws DBException
setupFields
in class DBObject
DBException
- upon errorpublic List getDecisionEntities() throws DBException
DBException
public void addDecisionEntity(int[] wizStepIds, String[] pickListIds) throws DBException
Assertions:
wizStepIds[].length == pickListIds[].length
wizStepsIds[i] maps to pickListIds[i]
This object's local connection MUST be already set: ie this occurs within a transaction
wizStepIds
- int[] the step ids corresponding to the picklist ids.pickListIds
- String[] the picklist ids corresponding to
the step ids.
DBException
- upon add() error.public void addSingleDecisionEntity(DBConnection connection, int wizStepId, String pickListId) throws DBException
connection
- DBConnection the database connectionwizStepId
- int the step id.pickListId
- String the corresponding picklist string
DBException
- upon addOrUpdate() error.public void setWizardId(int newValue) throws DBException
newValue
- int the new wizard id (integer > 0)
DBException
- upon setField() errorpublic void setWizardId(String newValue) throws DBException
newValue
- int the new wizard id (integer > 0)
DBException
- upon setField() errorpublic Integer getWizardId() throws DBException
DBException
- upon getDataField() generated error.public int hashCode()
hashCode
in class Object
public boolean equals(Object obj)
equals
in interface DataObject
equals
in class DBObject
obj
- the reference object with which to compare.
true
if this object is the same as the obj
argument; false
otherwise.public String getField(String fieldName) throws DBException
getField
in interface DataObject
getField
in class DBObject
fieldName
- the name of the field to retrieve
DBException
- upon errorpublic void setDecisionResult(int parameterValue) throws DBException
DBException
public String getDecisionResult() throws DBException
DBException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |