Serialized Form


Package oracle.cle.exception

Class oracle.cle.exception.CLEException implements Serializable

Serialized Fields

errCode

java.lang.String errCode
The error code like CLE-XXX

errorMessage

java.lang.String errorMessage
The one line error message

detailedErrorMessage

java.lang.String detailedErrorMessage
The detailed error message

possibleFix

java.lang.String possibleFix
The possible fix for this message

callingObject

java.lang.Object callingObject
The Object where the Exception occurred

lastException

java.lang.Exception lastException
The exception that caused this one to be created. Required for Chaining

Class oracle.cle.exception.CLERuntimeException implements Serializable

Serialized Fields

cleException

CLEException cleException


Package oracle.cle.persistence

Class oracle.cle.persistence.ConnectionManager implements Serializable

Serialized Fields

dtdValidation

boolean dtdValidation

sessionProviders

java.util.Map sessionProviders
This map contains the dynamic deployment keys of providers that belong to a particular session id. Each entry in this map has the session id as a key and a collection of dynamic provider deployment keys as a value.

Class oracle.cle.persistence.ConnectionProvider implements Serializable

Serialized Fields

defaultProperties

java.util.Properties defaultProperties

userName

java.lang.String userName

password

java.lang.String password

host

java.lang.String host

port

java.lang.String port

failover

java.lang.String failover

sid

java.lang.String sid

driverType

java.lang.String driverType

connectionString

java.lang.String connectionString

persistenceBase

java.lang.String persistenceBase

encryptionType

java.lang.String encryptionType

propertyKeys

java.util.Set propertyKeys

scope

java.lang.String scope
Scope defines when a connection is released. There are three possibilities: 1. NO_SCOPE, the connection is released immediately when the releaseConnection method is called. This is the default scope. 2. REQUEST_SCOPE, the connection at the end of the request. The connection is only released if releaseConnection is called during this request. 3. SESSION_SCOPE, the connection is only released at the end of a session. releaseConnection doesn't do anything if this scope is used.

connection

java.lang.Object connection

deploymentKey

java.lang.String deploymentKey

sessionConnectionIds

java.util.Map sessionConnectionIds
This map contains the connection ids that belong to a particular session id where connectionId != sessionId. It basically contains all connections that are retrieved with the getConnection(Object sessionId, Object connectionId) method (with connectionId is not null). Each entry in this map has the session id as a key and a collection of connection ids as a value.

releasedConnectionIds

java.util.Collection releasedConnectionIds
This map contains all the connection ids that can be released at the end of the request.

Class oracle.cle.persistence.DeploymentConnectorException implements Serializable

Class oracle.cle.persistence.Handler implements Serializable

Class oracle.cle.persistence.HandlerNotFoundException implements Serializable


Package oracle.cle.persistence.handler

Class oracle.cle.persistence.handler.UserHandler implements Serializable

Serialized Fields

provider

ConnectionProvider provider

Class oracle.cle.persistence.handler.UserProfileHandler implements Serializable

Serialized Fields

provider

ConnectionProvider provider


Package oracle.cle.process

Class oracle.cle.process.CLEStateMachine implements Serializable

Class oracle.cle.process.DisplayGroup implements Serializable

Serialized Fields

groupNavigationTable

java.util.Hashtable groupNavigationTable

dtdValidation

boolean dtdValidation

Class oracle.cle.process.GenericProcess implements Serializable

Serialized Fields

parent

Parent parent
The GenericProcess that contains and starts this Process. This is NOT a Parent because Parent doesn't implement getParents().

parameters

java.util.Hashtable parameters
A Hashtable containing this Process' required ProcessParameters

results

java.util.Hashtable results
A Hashtable containing this Process' results

Class oracle.cle.process.ParentProcess implements Serializable

Serialized Fields

skipable

boolean skipable
If this is set to true, then the ParentProcess can bypass its StateMachine's TransitionTable to run the skip() method.

Class oracle.cle.process.PersistingProcess implements Serializable

Class oracle.cle.process.Process implements Serializable

Serialized Fields

name

java.lang.String name
A hopefully unique name given to this process

stateMachine

StateMachine stateMachine
A statemachine object

conditions

java.util.Hashtable conditions
The transition conditions that are available for this State to return to the StateMachine.

service

Service service
The Service that contains this Process.

endState

boolean endState

condition

TransitionCondition condition
The TransitionCondition that is curently set to be returned by this State. In other owrds, if we called returnCondition() at any given point in time, it would return this attribute.

processes

java.util.Vector processes
A list containing all of this process' child processes
ie: Services would contain DisplayGroups, DisplayGroups would contain Processes, Processes would contain ??? Anything ???

DEBUG

boolean DEBUG
Set this to true to get diagnostic remarks

Class oracle.cle.process.ProcessInfo implements Serializable

Serialized Fields

name

java.lang.String name

type

java.lang.String type

description

java.lang.String description

value

java.lang.Object value

producer

java.lang.String producer
This is the Process object that produced this info as a Result

Class oracle.cle.process.ProcessInfoException implements Serializable

Class oracle.cle.process.ProcessParameter implements Serializable

Class oracle.cle.process.ProcessResult implements Serializable

Class oracle.cle.process.RuntimeServiceException implements Serializable

Class oracle.cle.process.Service implements Serializable

Serialized Fields

infoTable

java.util.Hashtable infoTable
A table containing all of this Service's offspring's prerequisites and results (ProcessParameters and ProcessResults). This includes children, grandchildren, great grandchildren, etc...

aliasTable

java.util.Hashtable aliasTable
A table containing aliases for the names of some of the ProcessInfo (Parameters and Results) objects. In short, a Process can call a ProcessInfo one name but it can actually refer to a ProcessInfo of another name at the Service level. This table is checked first before finding or setting a ProcessInfo.

groupNavigationTable

java.util.Hashtable groupNavigationTable
A table for storing the information to be passed to each of the DisplayGroups of this Service. This table will provide the information that the Group needs to set the Service's next initial state

globalInfoNames

java.util.Vector globalInfoNames
A list of the names of the ProcessInfos that will be passed on to a subsequently called Service. This allows us keep information among services without having to get it again.

validationAttributes

java.lang.String validationAttributes
Contains validation attributes.

dtdValidation

boolean dtdValidation
Determines whether to validate the Service descriptor file against the dtd


Package oracle.cle.util

Class oracle.cle.util.OfferableCompare implements Serializable

Serialized Fields

key

java.lang.String key

sc

StringCompare sc

Class oracle.cle.util.SimpleDate implements Serializable

Serialized Fields

months

java.lang.String[] months

shortMonths

java.lang.String[] shortMonths

year

int year

month

int month

day

int day

hour

int hour

minute

int minute

second

int second

Class oracle.cle.util.SortVector implements Serializable

Serialized Fields

compare

Compare compare

Class oracle.cle.util.StringCompare implements Serializable


Package oracle.cle.util.statemachine

Class oracle.cle.util.statemachine.StateMachine implements Serializable

Serialized Fields

states

java.util.Vector states
The set of states in this FSM

transitionTable

TransitionTable transitionTable
The transition table function for this FSM

initialState

java.lang.String initialState
The single initial state for this FSM

currentState

java.lang.String currentState
The single state that this FSM is currently in

stateStack

java.util.Stack stateStack
The history of this FSM

DEBUG

boolean DEBUG
Set this to true for diagnostic messages

Class oracle.cle.util.statemachine.StateMachineValidator implements Serializable

Serialized Fields

stateMachine

StateMachine stateMachine
The FSM being validated

violations

java.util.Vector violations
A list of all the violations found for the StateMachine being validated.

DEBUG

boolean DEBUG
Set this to true for diagnostic messages

Class oracle.cle.util.statemachine.StateMachineViolation implements Serializable

Serialized Fields

violationCode

java.lang.String violationCode
The possible values for this code are found as constants in this class

specificMessage

java.lang.String specificMessage
The specific message for this violation. This is apart from the violationCode

fromState

State fromState
reference to source State in question

toState

State toState
reference to destination State in question

condition

TransitionCondition condition
reference to TransitionCondition in question

Class oracle.cle.util.statemachine.TransitionCondition implements Serializable

Serialized Fields

value

int value

name

java.lang.String name

Class oracle.cle.util.statemachine.TransitionConditionException implements Serializable

Class oracle.cle.util.statemachine.TransitionTable implements Serializable

Serialized Fields

stateTable

java.util.Hashtable stateTable
A datastructure indexing the "to" States keyed on "from" State and TransitionCondition

transitionTable

java.util.Hashtable transitionTable
A datastructure indexing the TransitionConditions keyed on "from" State and "to" State.

DEBUG

boolean DEBUG
Set this to true for diagnostic messages


Package oracle.clex.persistence.bc4j

Class oracle.clex.persistence.bc4j.ApplicationModuleProvider implements Serializable

Serialized Fields

pool

java.util.Hashtable pool
Holds the ApplicationModules that this provider has doled out

moduleName

java.lang.String moduleName
This should be specified in the properties for this provider

urlPackagePrefix

java.lang.String urlPackagePrefix
This should be specified in the properties for this provider

applicationPool

oracle.jbo.common.ampool.ApplicationPool applicationPool
The Pool of ApplicationModules

Class oracle.clex.persistence.bc4j.BC4JHandler implements Serializable


Package oracle.clex.persistence.datasource

Class oracle.clex.persistence.datasource.DataSourceProvider implements Serializable

Serialized Fields

cache

java.util.Hashtable cache
This is here to support releasing a Connection via the releaseConnection method. If a connection is not released to the pool, calling getConnection should return the one they are holding on to again because it is in this cache.


Package oracle.clex.persistence.ejb

Class oracle.clex.persistence.ejb.EJBHomeProvider implements Serializable

Serialized Fields

homeInterface

javax.ejb.EJBHome homeInterface
The single Home Interface for this provider. This is derived from the properties loaded for this provider.

classname

java.lang.String classname
The classname for the EJBHome that we are looking for.

contextFactory

java.lang.String contextFactory

NON_SSL_LOGIN

java.lang.String NON_SSL_LOGIN


Package oracle.clex.persistence.ejb.oc4j

Class oracle.clex.persistence.ejb.oc4j.OC4JEJBHomeProvider implements Serializable


Package oracle.clex.persistence.handler

Class oracle.clex.persistence.handler.MessageLogHandler implements Serializable


Package oracle.clex.persistence.ifs

Class oracle.clex.persistence.ifs.LibrarySessionProvider implements Serializable

Serialized Fields

librarySession

oracle.ifs.beans.LibrarySession librarySession
The single LibrarySession for this provider. This is derived from the properties loaded for this provider.

serviceName

java.lang.String serviceName

servicePassword

java.lang.String servicePassword


Package oracle.clex.persistence.jdbc

Class oracle.clex.persistence.jdbc.JDBCConnectionProvider implements Serializable

Serialized Fields

pool

java.util.Hashtable pool
Holds the Connections that this provider has pooled out

Class oracle.clex.persistence.jdbc.JDBCPoolProvider implements Serializable

Serialized Fields

pool

javax.sql.PooledConnection pool

connectionTable

java.util.Hashtable connectionTable

Class oracle.clex.persistence.jdbc.OracleJDBCPoolProvider implements Serializable


Package oracle.clex.persistence.jndi

Class oracle.clex.persistence.jndi.JndiObjectProvider implements Serializable

Serialized Fields

jndiObject

java.lang.Object jndiObject
The JNDI Object that is provided by this class

jndiName

java.lang.String jndiName
This should be specified in the properties for this provider

NON_SSL_LOGIN

java.lang.String NON_SSL_LOGIN


Package oracle.clex.persistence.sqlj

Class oracle.clex.persistence.sqlj.DefaultContextProvider implements Serializable

Serialized Fields

contextPool

java.util.Hashtable contextPool

jdbcConnection

java.sql.Connection jdbcConnection

defaultContext

sqlj.runtime.ref.DefaultContext defaultContext


Package oracle.clex.persistence.toplink

Class oracle.clex.persistence.toplink.CLEUnitOfWork implements Serializable

Serialized Fields

applicationData

java.util.Hashtable applicationData
Deprecated. 

Class oracle.clex.persistence.toplink.ClientSessionProvider implements Serializable

Serialized Fields

projectPackage

java.lang.String projectPackage

projectName

java.lang.String projectName

server

oracle.toplink.threetier.Server server

mappingDescriptor

java.lang.String mappingDescriptor

shouldLogMessages

boolean shouldLogMessages

isRuntime

boolean isRuntime

connections

java.util.Hashtable connections
This is a table of TOPLinkConnections keyed by user

Class oracle.clex.persistence.toplink.TOPLink3TierConnectionProvider implements Serializable

Serialized Fields

projectPackage

java.lang.String projectPackage
Deprecated. 

projectName

java.lang.String projectName
Deprecated. 

licensePath

java.lang.String licensePath
Deprecated. 

key

java.lang.String key
Deprecated. 

projectDirectory

java.lang.String projectDirectory
Deprecated. 

isRuntime

boolean isRuntime
Deprecated. 

shouldLogMessages

boolean shouldLogMessages
Deprecated. 

server

TOPLink.Public.ThreeTier.Server server
Deprecated. 

connections

java.util.Hashtable connections
Deprecated. 
This is a table of TOPLinkConnections keyed by user

Class oracle.clex.persistence.toplink.TOPLink3TierHandler implements Serializable

Class oracle.clex.persistence.toplink.TOPLinkConnectionProvider implements Serializable

Serialized Fields

projectPackage

java.lang.String projectPackage
Deprecated. 

projectName

java.lang.String projectName
Deprecated. 

licensePath

java.lang.String licensePath
Deprecated. 

key

java.lang.String key
Deprecated. 

projectDirectory

java.lang.String projectDirectory
Deprecated. 

isRuntime

boolean isRuntime
Deprecated. 

shouldLogMessages

boolean shouldLogMessages
Deprecated. 

session

TOPLink.Public.Sessions.DatabaseSession session
Deprecated. 


Package oracle.clex.process

Class oracle.clex.process.ClearInfos implements Serializable

Serialized Fields

infosVector

java.util.Vector infosVector

infoToRemoveString

java.lang.String infoToRemoveString

Class oracle.clex.process.CreateGenericBinaryPage implements Serializable

Serialized Fields

inputStream

java.io.BufferedInputStream inputStream

Class oracle.clex.process.CreateGenericTextPage implements Serializable

Class oracle.clex.process.CreateHTMLPage implements Serializable

Class oracle.clex.process.CreateJSPPage implements Serializable

Serialized Fields

jspLocationUrl

java.lang.String jspLocationUrl

lookupKey

java.lang.String lookupKey

tagName

java.lang.String tagName

Class oracle.clex.process.CreateMarlinBeanPage implements Serializable

Class oracle.clex.process.CreatePage implements Serializable

Class oracle.clex.process.CreatePDFPage implements Serializable

Serialized Fields

pdfLocationKey

java.lang.String pdfLocationKey

url

java.net.URL url

pdf

java.lang.String pdf

Class oracle.clex.process.CreatePopulatedHTMLPage implements Serializable

Serialized Fields

infoTable

java.util.Hashtable infoTable

isSelectProcessingComplete

boolean isSelectProcessingComplete

selectTagName

java.lang.String selectTagName

Class oracle.clex.process.CreateTagReplacementPage implements Serializable

Serialized Fields

filename

java.lang.String filename

className

java.lang.String className

valueProvider

java.lang.Class valueProvider

valueProviderInstance

GenericProcess valueProviderInstance

htmlDynamicLine

HTMLString htmlDynamicLine

url

java.net.URL url

lookupPage

boolean lookupPage

pageLocationKey

java.lang.String pageLocationKey

htmlInputBufferLine

java.lang.String htmlInputBufferLine
HTML line read from input buffer

htmlInputBufferNextLine

java.lang.String htmlInputBufferNextLine
// Next HTML Line

wrbSubStr

java.lang.String wrbSubStr
Sub string of HTML line beginning from WRB_INC

wrbStr

java.lang.String wrbStr
Sub string between beginning from WRB_INC to ">"

valueStr

java.lang.String valueStr
Actual getXXX - valueStr contains XXX

Class oracle.clex.process.CreateXMLPage implements Serializable

Serialized Fields

xslLocationKey

java.lang.String xslLocationKey
Deprecated. 

xmlLocationKey

java.lang.String xmlLocationKey
Deprecated. 

tagName

java.lang.String tagName
Deprecated. 

xmlDocInfoName

java.lang.String xmlDocInfoName
Deprecated. 

useFile

boolean useFile
Deprecated. 

Class oracle.clex.process.CreateXSLTransformationPage implements Serializable

Serialized Fields

xsltFileURLString

java.lang.String xsltFileURLString
The file URL where the XSLT for this process is located

lookupPage

boolean lookupPage

pageLocationKey

java.lang.String pageLocationKey

Class oracle.clex.process.CreateXSLTransformPage implements Serializable

Serialized Fields

xsltFileURLString

java.lang.String xsltFileURLString
Deprecated. 
The file URL where the XSLT for this process is located

lookupPage

boolean lookupPage
Deprecated. 

pageLocationKey

java.lang.String pageLocationKey
Deprecated. 

Class oracle.clex.process.DeleteUser implements Serializable

Class oracle.clex.process.HTMLString implements Serializable

Serialized Fields

generatedHTMLString

java.lang.String generatedHTMLString
Deprecated. 

Class oracle.clex.process.LoginPage implements Serializable

Class oracle.clex.process.LoginSwitcher implements Serializable

Class oracle.clex.process.LogMessages implements Serializable

Class oracle.clex.process.ModifyUser implements Serializable

Class oracle.clex.process.PageValueProvider implements Serializable

Class oracle.clex.process.ProcessRouter implements Serializable

Serialized Fields

numberOfParameters

int numberOfParameters

removeAllInfoFlag

java.lang.Boolean removeAllInfoFlag

removeInfosFlag

java.lang.Boolean removeInfosFlag

useGlobalName

java.lang.Boolean useGlobalName

infosVector

java.util.Vector infosVector

CONDITION_NAME_PREFIX

java.lang.String CONDITION_NAME_PREFIX

PARAMETER_NAME_PREFIX

java.lang.String PARAMETER_NAME_PREFIX

mDefaultCondition

TransitionCondition mDefaultCondition

parameterTokens

java.util.List parameterTokens

Class oracle.clex.process.RegisterUser implements Serializable

Class oracle.clex.process.SendMail implements Serializable

Class oracle.clex.process.ValidateAttributes implements Serializable

Serialized Fields

xmlRuleFileHolder

java.lang.String xmlRuleFileHolder

lookupFileLocation

boolean lookupFileLocation

complexResults

boolean complexResults

attributes

java.util.Map attributes

Class oracle.clex.process.ValidateGroupLogin implements Serializable

Class oracle.clex.process.ValidateHintAnswer implements Serializable

Class oracle.clex.process.ValidateHTMLForm implements Serializable

Serialized Fields

mandatoryFields

java.util.Vector mandatoryFields

numberFields

java.util.Vector numberFields

positiveNumberFields

java.util.Vector positiveNumberFields

decimalFields

java.util.Vector decimalFields

positiveDecimalFields

java.util.Vector positiveDecimalFields

dateFields

java.util.Hashtable dateFields

regularExpressionFields

java.util.Hashtable regularExpressionFields

conditionalMandatoryFields

java.util.Hashtable conditionalMandatoryFields

labelHash

java.util.Hashtable labelHash

errorMsgs

java.util.Vector errorMsgs

Class oracle.clex.process.ValidateHTMLInput implements Serializable

Serialized Fields

mandatoryFields

java.util.Vector mandatoryFields
Deprecated. 

Class oracle.clex.process.ValidateLogin implements Serializable

Class oracle.clex.process.ValidateRoles implements Serializable

Serialized Fields

roles

java.util.Vector roles

Class oracle.clex.process.XSLTransformException implements Serializable


Package oracle.clex.process.controller

Class oracle.clex.process.controller.ForwardPortletController implements Serializable

Class oracle.clex.process.controller.HttpServletController implements Serializable

Serialized Fields

DEBUG

boolean DEBUG

serviceName

java.lang.String serviceName

serviceDescriptorName

java.lang.String serviceDescriptorName

serviceCache

Service serviceCache

aSessionIdObj

java.lang.Object aSessionIdObj

Class oracle.clex.process.controller.PortletController implements Serializable

Class oracle.clex.process.controller.Version implements Serializable

Class oracle.clex.process.controller.WAPHttpServletController implements Serializable


Package oracle.clex.process.displaygroup

Class oracle.clex.process.displaygroup.LoginGroup implements Serializable

Class oracle.clex.process.displaygroup.SecureDisplayGroup implements Serializable

Serialized Fields

roles

java.util.Vector roles
Deprecated. 


Package oracle.clex.process.jsp

Class oracle.clex.process.jsp.GetInfoBean implements Serializable

Serialized Fields

session

javax.servlet.http.HttpSession session


Package oracle.clex.process.jsp.taglib.tags

Class oracle.clex.process.jsp.taglib.tags.AddHiddenTag implements Serializable

Serialized Fields

attribute

java.lang.String attribute

infoName

java.lang.String infoName

hiddenName

java.lang.String hiddenName

session

javax.servlet.http.HttpSession session

Class oracle.clex.process.jsp.taglib.tags.BaseTag implements Serializable

Serialized Fields

maxlength

java.lang.String maxlength
beanId: The name of the bean containing the attribute. attribute:The name of the attribute in the bean containing the value. name: name of the field style: stylesheet attribute styleClass: stylesheet attribute for style sheet value: value of the input field

size

java.lang.String size

pattern

java.lang.String pattern

beanName

java.lang.String beanName

attribute

java.lang.String attribute

name

java.lang.String name

style

java.lang.String style

styleClass

java.lang.String styleClass

value

java.lang.String value

onChange

java.lang.String onChange

onClick

java.lang.String onClick

onDblClick

java.lang.String onDblClick

onMouseOver

java.lang.String onMouseOver

onMouseOut

java.lang.String onMouseOut

onMouseMove

java.lang.String onMouseMove

onMouseDown

java.lang.String onMouseDown

onMouseUp

java.lang.String onMouseUp

onSelect

java.lang.String onSelect

onBlur

java.lang.String onBlur

onFocus

java.lang.String onFocus

properties

java.util.Hashtable properties

errorImage

java.lang.String errorImage

errorChar

java.lang.String errorChar

type

java.lang.String type

Class oracle.clex.process.jsp.taglib.tags.CheckboxTag implements Serializable

Serialized Fields

defaultInd

java.lang.String defaultInd

Class oracle.clex.process.jsp.taglib.tags.ErrorsTag implements Serializable

Serialized Fields

name

java.lang.String name
Name of the request scope attribute containing our error messages, if any.

textColor

java.lang.String textColor
color of text for lines of the error messages

style

java.lang.String style
Style attribute associated with component.

styleClass

java.lang.String styleClass
Named Style class associated with component.

Class oracle.clex.process.jsp.taglib.tags.OptionTag implements Serializable

Class oracle.clex.process.jsp.taglib.tags.PageIdTag implements Serializable

Serialized Fields

type

java.lang.String type

Class oracle.clex.process.jsp.taglib.tags.RadioTag implements Serializable

Serialized Fields

defaultInd

java.lang.String defaultInd

Class oracle.clex.process.jsp.taglib.tags.SelectTag implements Serializable

Serialized Fields

match

java.lang.String match
The actual value we will match against, calculated in doStartTag().

errorInd

java.lang.String errorInd

multiple

java.lang.String multiple
Should multiple selections be allowed? Any non-null value will trigger rendering this.

Class oracle.clex.process.jsp.taglib.tags.SetInfoTableObjectTag implements Serializable

Serialized Fields

obj

java.lang.Object obj

Class oracle.clex.process.jsp.taglib.tags.ShowBreadcrumbsTag implements Serializable

Serialized Fields

links

java.lang.String links

labels

java.lang.String labels

Class oracle.clex.process.jsp.taglib.tags.ShowInfoTableObjectTag implements Serializable

Serialized Fields

infoName

java.lang.String infoName

session

javax.servlet.http.HttpSession session

Class oracle.clex.process.jsp.taglib.tags.ShowListsAsTableTag implements Serializable

Serialized Fields

clear

boolean clear

Class oracle.clex.process.jsp.taglib.tags.ShowMultiLevelListTag implements Serializable

Serialized Fields

infoName

java.lang.String infoName

extraParameters

java.lang.String extraParameters

session

javax.servlet.http.HttpSession session

Class oracle.clex.process.jsp.taglib.tags.ShowSelectListTag implements Serializable

Serialized Fields

attribute

java.lang.String attribute

resource

java.lang.String resource

infoName

java.lang.String infoName

selectValue

java.lang.String selectValue

selectNumber

int selectNumber

selectInfoName

boolean selectInfoName

session

javax.servlet.http.HttpSession session

test

java.lang.String test
test flag

Class oracle.clex.process.jsp.taglib.tags.ShowTableTag implements Serializable

Serialized Fields

columnWidths

java.lang.String columnWidths
table view to show

columnNames

java.lang.String columnNames

inputNames

java.lang.String inputNames

displayParameters

java.lang.String displayParameters

attributes

java.lang.String attributes

formatParameters

java.lang.String formatParameters

infoName

java.lang.String infoName

extraParameters

java.lang.String extraParameters

tableParameters

java.lang.String tableParameters

clear

boolean clear

selectInfoName

boolean selectInfoName

selectCollectionInfoName

java.lang.String selectCollectionInfoName

session

javax.servlet.http.HttpSession session

test

java.lang.String test
test flag

Class oracle.clex.process.jsp.taglib.tags.ShowTabsTag implements Serializable

Serialized Fields

app

java.lang.String app
App Name and help file name

help

java.lang.String help

Class oracle.clex.process.jsp.taglib.tags.ShowTreeTag implements Serializable

Serialized Fields

currentLevel

int currentLevel

nextLevelToDisplay

int nextLevelToDisplay

dataItemNumber

int dataItemNumber

expandDataItem

int expandDataItem

levelSelectable

int levelSelectable

isExpanded

boolean isExpanded

multiSelect

boolean multiSelect

readOnly

boolean readOnly

selectInfoName

boolean selectInfoName

useRadio

boolean useRadio

multipleAttributes

boolean multipleAttributes
indicates if there are different methods to call to get the text for each level Vector stores these.

attributeVector

java.util.Vector attributeVector

multipleCollectionAttributes

boolean multipleCollectionAttributes
indicates if there are different methods to call to get the children for each level Vector stores these.

collectionAttributeVector

java.util.Vector collectionAttributeVector

idAttribute

java.lang.String idAttribute

requestTarget

java.lang.String requestTarget

data

java.util.Collection data
target data structure

currentlySelected

java.util.TreeSet currentlySelected

expandedNodes

java.util.TreeSet expandedNodes

html

java.lang.StringBuffer html
Output buffer

session

javax.servlet.http.HttpSession session
user session

linkTarget

java.lang.String linkTarget
Variables for tag attributes

infoName

java.lang.String infoName

attribute

java.lang.String attribute

collectionAttribute

java.lang.String collectionAttribute

debug

boolean debug
test flag

expandAll

boolean expandAll

OFF_TD

java.lang.String OFF_TD
HTML Constants

ON_TD

java.lang.String ON_TD

OFF_TR

java.lang.String OFF_TR

ON_TR

java.lang.String ON_TR

PLACEHOLDER_GIF

java.lang.String PLACEHOLDER_GIF

DOWN

java.lang.String DOWN

RIGHT

java.lang.String RIGHT

resourceServletURL

java.lang.String resourceServletURL

Class oracle.clex.process.jsp.taglib.tags.TextareaTag implements Serializable

Serialized Fields

cols

java.lang.String cols

rows

java.lang.String rows

Class oracle.clex.process.jsp.taglib.tags.TextTag implements Serializable


Package oracle.clex.tools.processgenerator.process

Class oracle.clex.tools.processgenerator.process.CheckProcessExistence implements Serializable

Class oracle.clex.tools.processgenerator.process.CreateProcessConstants implements Serializable

Class oracle.clex.tools.processgenerator.process.CreateZipFile implements Serializable

Class oracle.clex.tools.processgenerator.process.GetServiceProcesses implements Serializable

Class oracle.clex.tools.processgenerator.process.InfoSelectionRouter implements Serializable

Class oracle.clex.tools.processgenerator.process.ParameterConstantsRouter implements Serializable

Class oracle.clex.tools.processgenerator.process.ProcessGeneratorValueProvider implements Serializable

Class oracle.clex.tools.processgenerator.process.ProcessTypeRouter implements Serializable

Class oracle.clex.tools.processgenerator.process.SaveProcess implements Serializable

Class oracle.clex.tools.processgenerator.process.StoreParameters implements Serializable

Class oracle.clex.tools.processgenerator.process.StoreResults implements Serializable

Class oracle.clex.tools.processgenerator.process.ValidateParameterInfo implements Serializable

Class oracle.clex.tools.processgenerator.process.ValidateResultInfo implements Serializable


Package oracle.clex.tools.processgenerator.process.service

Class oracle.clex.tools.processgenerator.process.service.ProcessGeneratorController implements Serializable


Package oracle.clex.util

Class oracle.clex.util.CollectionTypeNotSupportedException implements Serializable

Class oracle.clex.util.DefaultValueHashtable implements Serializable

Serialized Fields

defaultValue

java.lang.Object defaultValue

Class oracle.clex.util.FormatUtility implements Serializable

Class oracle.clex.util.MultipartRequest implements Serializable

Serialized Fields

req

javax.servlet.ServletRequest req

dir

java.io.File dir

maxSize

int maxSize

parameters

java.util.Hashtable parameters

files

java.util.Hashtable files


Package oracle.clex.util.http

Class oracle.clex.util.http.ProxyServlet implements Serializable

Serialized Fields

target

java.lang.String target

DEBUG

boolean DEBUG

Class oracle.clex.util.http.SSOProxyServlet implements Serializable



Copyright © 2003 ORACLE Corp. All Rights Reserved.