Serialized Form


Package com.boylesoftware.cb2

Class com.boylesoftware.cb2.ApplicationException extends java.lang.Exception implements Serializable

Class com.boylesoftware.cb2.BLErrors extends java.lang.Object implements Serializable

Serialized Fields

errors

java.util.Map errors
The errors container. Keys are error codes (objects of Integer) and values are error descriptions (objects of String). An error description can be empty string, but never null.

Class com.boylesoftware.cb2.BLException extends ApplicationException implements Serializable

Class com.boylesoftware.cb2.BLObject extends java.lang.Object implements Serializable

Serialized Fields

bloDescriptor

BLManager.BLODescriptor bloDescriptor
The BLO descriptor used for this BLO.


errors

BLErrors errors
Business errors for the last invoked business method.

Class com.boylesoftware.cb2.BLOContainer extends java.lang.Object implements Serializable

Serialized Fields

sessionId

java.lang.String sessionId
Id of the user session this BLO container instance belongs to. Is null for the shared BLO container.


blos

java.util.Map blos
This map containes instances of all BLOs in this container. Keys are BLO deployment names (objects of String) and values are instances of BLOs (objects of BLObject). The stored names are all in upper case.


userPrincipal

java.security.Principal userPrincipal
Currently authenticated user for the BLO container or null if the container is in the "non-authenticated" state.

Class com.boylesoftware.cb2.DataModel extends java.lang.Object implements Serializable

Class com.boylesoftware.cb2.DynamicDataModel extends DataModel implements Serializable

Serialized Fields

fields

java.util.Map fields
The row data.

Class com.boylesoftware.cb2.FetchResultDescriptor extends java.lang.Object implements Serializable

Serialized Fields

rowsTotal

int rowsTotal
Total number of rows in the result set.

Class com.boylesoftware.cb2.NoBLOContainerException extends BLException implements Serializable

Class com.boylesoftware.cb2.TooManyWaitingThreadsException extends BLException implements Serializable


Package com.boylesoftware.cb2.admin.servlet

Class com.boylesoftware.cb2.admin.servlet.AdminServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

windowTitlePrefix

java.lang.String windowTitlePrefix
Prefix for window title, which normally contains the host name (or address). Can be an empty string.


transformerFactory

javax.xml.transform.TransformerFactory transformerFactory
XSL transformer factory.


templates

java.util.Map templates
Contains compiled templates. Keys are XSL file names (objects of String), values are compiled templates (objects of Templates).


subsystems

java.util.Map subsystems
Collection of subsystem descriptors. Keys are subsystem names (objects of String), values are subsystem descriptors (objects of SubsystemDescriptor).


cluster

ClusterController cluster
Cluster controller instance.


Package com.boylesoftware.cb2.bcmproviders.http

Class com.boylesoftware.cb2.bcmproviders.http.ReceiverServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

appCtx

ApplicationContext appCtx
Our application context.


log

org.apache.commons.logging.Log log
Log to be used for debug messages.


Package com.boylesoftware.cb2.commons.user

Class com.boylesoftware.cb2.commons.user.UserBasicDM extends DataModel implements Serializable

Serialized Fields

userId

long userId
The user id.


loginName

java.lang.String loginName
The user's login name.


password

java.lang.String password
The user's login password.


roles

UserRoleBasicDM[] roles
List of security roles this user is associated with. This field is never null but can be empty.

Class com.boylesoftware.cb2.commons.user.UserBLO extends BLObject implements Serializable

Serialized Fields

userSessionStateListeners

java.util.List userSessionStateListeners
List of all registered UserSessionStateEvent listeners.


fetchUserDetailsByLoginNameQN

java.lang.String fetchUserDetailsByLoginNameQN
Name of the select query in the configuration file which is used for getting a user details data model by the user's login name. This field is populated from fetchUserDetailsByLoginNameQN BLO initialization parameter.


loggedInUserDM

UserBasicDM loggedInUserDM
DM of the logged in user or null if no user is logged in.

Class com.boylesoftware.cb2.commons.user.UserRoleBasicDM extends DataModel implements Serializable

Serialized Fields

name

java.lang.String name
The role's identifying name.

Class com.boylesoftware.cb2.commons.user.UserSessionStateEvent extends java.util.EventObject implements Serializable

Serialized Fields

userId

long userId
The related user account id.


Package com.boylesoftware.cb2.commons.property

Class com.boylesoftware.cb2.commons.property.PropertySharedBLO extends BLObject implements Serializable

Serialized Fields

dataSourceName

java.lang.String dataSourceName
Name of the data source corresponding to the database where the properties are stored. Set in the init method from com.boylesoftware.cb2.appProperties.dataSource application property. If the property is not defined, set to "default".


table

java.lang.String table
Name of the database table, which contains application properties. Set in the init method from the "table" BLO initialization parameter.


nameColumn

java.lang.String nameColumn
Name of the column, which contains application property names. Set in the init method from the "nameColumn" BLO initialization parameter.


valueColumn

java.lang.String valueColumn
Name of the column, which contains application property values. Set in the init method from the "valueColumn" BLO initialization parameter.


insertPropertyQuery

java.lang.String insertPropertyQuery
SQL query used to insert new properties;


updatePropertyQuery

java.lang.String updatePropertyQuery
SQL query used to update existing properties;


deletePropertyQuery

java.lang.String deletePropertyQuery
SQL query used to delete properties;


Package com.boylesoftware.cb2.presentation.servlet

Class com.boylesoftware.cb2.presentation.servlet.EmptyForm extends org.apache.struts.action.ActionForm implements Serializable

Class com.boylesoftware.cb2.presentation.servlet.InsertTag extends javax.servlet.jsp.tagext.TagSupport implements Serializable

Serialized Fields

name

java.lang.String name
Name of the component reference or the attribute as it is configured by componentref or attribute element in the configuration file.


nameBean

java.lang.String nameBean
Name of the bean containing component reference or page attribute name.


nameProperty

java.lang.String nameProperty
Property in the nameBean bean containing component reference or page attribute name.


ignoreIfAbsent

boolean ignoreIfAbsent
Ignore the tag if no component nor attribute with the specified name is defined for the page. If set to false, which is the default, an exception will be thrown.

Class com.boylesoftware.cb2.presentation.servlet.InvalidParamValueException extends javax.servlet.ServletException implements Serializable

Class com.boylesoftware.cb2.presentation.servlet.NoRequiredParamException extends javax.servlet.ServletException implements Serializable

Class com.boylesoftware.cb2.presentation.servlet.UIState extends java.lang.Object implements Serializable


Package com.boylesoftware.cb2.util

Class com.boylesoftware.cb2.util.BTreeMap extends java.lang.Object implements Serializable

Serialized Fields

top

java.util.HashMap top
The top level. Keys are objects of Character, values are objects of BTreeMap.Entry.

Class com.boylesoftware.cb2.util.BTreeMap.Entry extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.Object value
The entrie's value. May be null.


nextLevel

java.util.HashMap nextLevel
Collection of entries for the next level. The keys are letters (objects of Character), values are entries (objects of Entry).

Class com.boylesoftware.cb2.util.EventHistory extends java.lang.Object implements Serializable

Serialized Fields

samples

long[] samples
Containes samples.


totalSpan

long totalSpan
Number of milliseconds representing the whole timeline.


sampleSpan

long sampleSpan
Number of milliseconds for a single sample data.


curSampleInd

int curSampleInd
Index of the currently being built sample.


nSamples

int nSamples
Number of samples in the timeline including the current one (so it never can be zero).


tsLastSampleStart

long tsLastSampleStart
Timestamp when collecting data for the current sample was started.


maxSample

long maxSample
Maximum sample value.

Class com.boylesoftware.cb2.util.EventStatistics extends java.lang.Object implements Serializable

Serialized Fields

nTimes

long nTimes
Number of times the event has happened.


distAvg

long distAvg
Average time in milliseconds between events.


tsLast

long tsLast
Timestamp when the event happened last time.


procTimeMin

long procTimeMin
Minimum amount of time in milliseconds processing of the event took.


procTimeAvg

long procTimeAvg
Average amount of time in milliseconds processing of the event took.


procTimeMax

long procTimeMax
Maximum amount of time in milliseconds processing of the event took.


timelines

EventHistory[] timelines
Array of event history timlines.

Class com.boylesoftware.cb2.util.PrincipalWithRoles extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The principal's name.


roles

java.util.Set roles
Colelction of user roles.



Copyright © 2002,2003,2004 - Boyle Software, Inc.