Serialized Form
name
java.lang.String name
- Name of the attribute.
value
java.lang.Object value
- Normal value of the attribute.
NOTE: Be careful when setting this value. Most methods
should be going through the basicSetValue() method so
validation at the subclass level can take place!!!
originalValue
java.lang.Object originalValue
- Original value of the attribute. If the value was changed
since the object was read from a source, this attribute
contains the originally-read value.
hasChanged
boolean hasChanged
- Keeps track of whether the attribute has changed since it
was originally read in from the database.
attributeName
java.lang.String attributeName
- Holds an attribute name.
dataMappedObject
DataMappedObject dataMappedObject
- Holds a reference to a particular data mapped object.
key
DataMappedObjectKey key
- Holds the key for the object.
relationships
java.util.Hashtable relationships
- Holds all the lazy-initialized relationships for this
particular business object.
hasBeenReadFromDataSource
boolean hasBeenReadFromDataSource
- Flag to tell if the object has previously been read from the
database. If it has, then when trying to write any updates out,
the object should not do a create, but rather an update or delete.
deleteOnWrite
boolean deleteOnWrite
- Flag to delete an object previously read from a database
the next time the object is synchronized with the database.
attributes
java.util.Hashtable attributes
- Holds all the lazy-initialized attributes for this
particular business object.
dateFormatString
java.lang.String dateFormatString
- Holds the date format string so the attribute can be properly
date formatted when using the toString() method.
relationshipDescriptor
RelationshipDescriptor relationshipDescriptor
- Holds the relationship descriptor this relationship is an
instance of.
primaryObject
DataMappedObject primaryObject
- Holds a back reference to the
DataMappedObject object
on the near (role A) side of the relationship.
hasRelationshipBeenRead
boolean hasRelationshipBeenRead
- Holds a flag for relationships that are not read inline,
to see if the relationship that is read in a separate query
has already been populated. If it hasn't, need to issue
a lazy query before any relationship information is
returned.
relatedObjects
java.util.Vector relatedObjects
- Holds the
DataMappedObject objects on the far (role B)
side of the relationship.
relationshipName
java.lang.String relationshipName
- The name of the relationship so accessors can
conveniently refer to the relationship.
relationshipClass
java.lang.Class relationshipClass
- The
DataMappedObject
class on the other
side of the relationship (role B in UML).
maximumStringLength
int maximumStringLength
- Holds the maximum length of the String. If exceeded,
an error will be thrown when the attribute is set.
If the value is zero (the default), there is no maximum length.
Package org.jlf.httpRequest |
request
javax.servlet.http.HttpServletRequest request
- Holds the HTTP Request object.
response
javax.servlet.http.HttpServletResponse response
- Holds the HTTP Response object.
out
java.io.PrintWriter out
- Holds the output stream of the servlet.
workflowAlias
java.lang.String workflowAlias
- Lazy initialized string for the workflow alias.
workflowProperties
WorkflowProperties workflowProperties
- Lazy initialized set of workflow properties specific to this
http request.
workflowName
java.lang.String workflowName
- Holds a workflow name.
Package org.jlf.httpRequest.servlet |
originalThrownObject
java.lang.Throwable originalThrownObject
- Holds a reference to the original Error or Exception object.
applicationName
java.lang.String applicationName
- Holds the application name the logs are generated for.
The default comes from AppInfo but can be overriden.
Class org.jlf.log.RemoteLogManagerImpl_Stub implements Serializable |
propertyFileName
java.lang.String propertyFileName
- Holds the file name of the property file.
vitalKey
java.lang.String vitalKey
- Holds the Vital Sign unique key these properties are for
measurementClass
java.lang.Class measurementClass
- Holds a cached Class object (to save on reflection
overhead) that is the equivalent of the measurement
class above.