Serialized Form


Package org.figure8.join.businessobjects.artifact

Class org.figure8.join.businessobjects.artifact.Assembly extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The assembly key


comments

java.lang.String comments
The assembly comments


versionInfo

java.lang.String versionInfo
Assembly version info


creationDate

java.util.Date creationDate
The assembly creation date


composerId

java.lang.String composerId
The identifier of user that has composed assembly


components

java.util.Map<K,V> components
A map containing components. Keys are component types, values are components entity


deliverables

java.util.Map<K,V> deliverables
A map containing deliverables. Keys are deliverable types, values are deliverables entity


deployments

java.util.List<E> deployments
A list of deployments done with this assembly


status

Status status
The assembly current status


release

Release release
The release for which assembly is created

Class org.figure8.join.businessobjects.artifact.Build extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The build unique key


comments

java.lang.String comments
The build comments


versionInfo

java.lang.String versionInfo
The build version info


creationDate

java.util.Date creationDate
The build creation date


composerId

java.lang.String composerId
The identifier of user that has composed build


components

java.util.Map<K,V> components
A map containing components. Keys are component types, values are components entity


status

Status status
The build current status


release

Release release
The build release for which build is created

Class org.figure8.join.businessobjects.artifact.Component extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The component key


versionInfo

java.lang.String versionInfo
Component version info


creationDate

java.util.Date creationDate
The component creation date


size

long size
The component size (in bytes)


builds

java.util.List<E> builds
A list of Build objects containing component


assemblies

java.util.List<E> assemblies
A list of Assembly objects containing component


assembly

Assembly assembly
The assembly that has generated component


componentType

ComponentType componentType
The component type

Class org.figure8.join.businessobjects.artifact.ComponentType extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The component type key


label

java.lang.String label
The component type label


keyTemplate

java.lang.String keyTemplate
The component type keyTemplate


description

java.lang.String description
The component type description

Class org.figure8.join.businessobjects.artifact.Deliverable extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
Deliverable key


comments

java.lang.String comments
The deliverable comments


versionInfo

java.lang.String versionInfo
Deliverable version info


creationDate

java.util.Date creationDate
The deliverable creation date


supplierId

java.lang.String supplierId
The deliverable supplier identifier


assemblies

java.util.List<E> assemblies
A list of Assembly objects containing deliverable


release

Release release
The deliverable release


deliverableType

DeliverableType deliverableType
The deliverable type

Class org.figure8.join.businessobjects.artifact.DeliverableType extends SortableEntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The deliverable type key


label

java.lang.String label
The deliverable type label


keyTemplate

java.lang.String keyTemplate
The deliverable type keyTemplate


versionable

boolean versionable
The deliverable type is versionnable


mandatory

boolean mandatory
The deliverable type is mandatory


vcsDeliverable

boolean vcsDeliverable
The deliverable type use version and configuration system


vcsUser

java.lang.String vcsUser
User for connecting to the version and configuration system


vcsPassword

java.lang.String vcsPassword
Password for connecting to the version and configuration system


vcsRoot

java.lang.String vcsRoot
The root of the version and configuration system


vcsModule

java.lang.String vcsModule
The module of the version and configuration system


vcsAccessorClass

java.lang.String vcsAccessorClass
The accessor class name for the version and configuration system


template

java.text.MessageFormat template
The template object for generating deliverable keys


vcsAccessor

VCSAccessor vcsAccessor
The VCS accessor instance of type vcsAccessorClass


Package org.figure8.join.businessobjects.commons

Class org.figure8.join.businessobjects.commons.Release extends SortableEntityObject implements Serializable

Serialized Fields

name

java.lang.String name
The release name


major

int major
The release major version


minor

int minor
The release minor version


shippingDate

java.util.Date shippingDate
The release ship date

Class org.figure8.join.businessobjects.commons.Status extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The unique key of this status


label

java.lang.String label
The display label of this status


type

java.lang.String type
The type of process this status is for


terminal

boolean terminal
Whether this status is terminal in process


cancelled

boolean cancelled
Whether this status corresponds to a 'cancel' status in process

Class org.figure8.join.businessobjects.commons.Step extends SortableEntityObject implements Serializable

Serialized Fields

label

java.lang.String label
The label of this step


position

int position
The position of this step into the integration cycle


nextStep

Step nextStep
The following step into the integration cycle (if any)


previousStep

Step previousStep
The previous step into the integration cycle (if any)

Class org.figure8.join.businessobjects.commons.Target extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
This deployment target name


description

java.lang.String description
This deployment target description


Package org.figure8.join.businessobjects.environment

Class org.figure8.join.businessobjects.environment.AbstractResource extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
This resource name (must be unique)


logDirPath

java.lang.String logDirPath
The path to the log directory of this resource


logFilePath

java.lang.String logFilePath
The path to the current log file of this resource


currentMappings

java.util.List<E> currentMappings
A list of ResourceMapping objects that are currently valid


machine

Machine machine
The physical machine hosting this resource


resourceType

AbstractResourceType resourceType
The type of this resource (this impl uses AbstractResourceType impl)

Class org.figure8.join.businessobjects.environment.AbstractResourceType extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The key of this resource type (should be a unique business meaningfull identifier )


label

java.lang.String label
The label of this resource type (should be use for display purpose)

Class org.figure8.join.businessobjects.environment.Deployment extends EntityObject implements Serializable

Serialized Fields

applicantId

java.lang.String applicantId
Identifier of user who asked for deployment


applicantComments

java.lang.String applicantComments
Comments on deployment demand made by applicants


assigneeId

java.lang.String assigneeId
Identifier of user assigned to deployment relaization


assigneeComments

java.lang.String assigneeComments
Comments on deployment relalization made by assignee


creationDate

java.util.Date creationDate
The deployment demand creation date


assignationDate

java.util.Date assignationDate
The deployment demand assignation date


realizationDate

java.util.Date realizationDate
The deployment realization date


wishedDate

java.util.Date wishedDate
The date applicant wished the delpoyment's done


status

Status status
The deployment current status


target

Target target
The deployment target used for process


assembly

Assembly assembly
The assembly that is deployed during this deployment


environmentMapping

EnvironmentMapping environmentMapping
The runtime environment context to use for deployment

Class org.figure8.join.businessobjects.environment.EIS extends VersionedResource implements Serializable

Class org.figure8.join.businessobjects.environment.EISMapping extends EntityObject implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The date this mapping has started being active


endDate

java.util.Date endDate
The date this mapping has stopped being active


eis

EIS eis
The EIS this mapping is for


gateway

Gateway gateway
The gateway this mapping is for

Class org.figure8.join.businessobjects.environment.EISType extends VersionedResourceType implements Serializable

Class org.figure8.join.businessobjects.environment.EnvironmentMapping extends EntityObject implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The date this mapping has started being active


endDate

java.util.Date endDate
The date this mapping has stopped being active


deployments

java.util.List<E> deployments
The deployments done during this mapping activity


logicalEnvironment

LogicalEnvironment logicalEnvironment
The logical environment this mapping is for


physicalEnvironment

PhysicalEnvironment physicalEnvironment
The physical environment this mapping is for

Class org.figure8.join.businessobjects.environment.Gateway extends AbstractResource implements Serializable

Serialized Fields

activeEISMappings

java.util.List<E> activeEISMappings
The list of active EIS mappings (many EIS bound at same time)

Class org.figure8.join.businessobjects.environment.GatewayType extends AbstractResourceType implements Serializable

Class org.figure8.join.businessobjects.environment.LogicalEnvironment extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
This environment unique business key


label

java.lang.String label
This environment label


description

java.lang.String description
This environment description


managerId

java.lang.String managerId
This environment manager identifier


active

boolean active
Is this environment active ? default is true


activeMappings

java.util.List<E> activeMappings
The list of active environment mappings (should be only one)


step

Step step
The integration process step this environment is dedicated to


release

Release release
The project release this environment is dedicated to

Class org.figure8.join.businessobjects.environment.Machine extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
This machine full network name


ipAddress

java.lang.String ipAddress
This machine IP address


osInfo

java.lang.String osInfo
This machine Operating System info


cpuInfo

java.lang.String cpuInfo
This machine CPU info


ramAmount

int ramAmount
This machine RAM amount


romAmount

int romAmount
This machine ROM amount


resources

java.util.List<E> resources
The resources hosted onto this machine

Class org.figure8.join.businessobjects.environment.Parameter extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
The parameter name


description

java.lang.String description
The parameter description

Class org.figure8.join.businessobjects.environment.ParameterValue extends EntityObject implements Serializable

Serialized Fields

value

java.lang.String value
The parameter value


status

java.lang.String status
The status of this value wrapper


deprecationDate

java.util.Date deprecationDate
The date this value has been deprecated


parameter

Parameter parameter
The variable of the value


target

Target target
The target for this value


environment

PhysicalEnvironment environment
The environment for this value

Class org.figure8.join.businessobjects.environment.PhysicalEnvironment extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
This physical environment key


name

java.lang.String name
This physical environment name


activeMappings

java.util.List<E> activeMappings
The list of active environment mappings (should be only one)


activeResourceMappings

java.util.List<E> activeResourceMappings
The list of active resource mappings (many resources bound at same time)

Class org.figure8.join.businessobjects.environment.ResourceMapping extends EntityObject implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The date this mapping has started being active


endDate

java.util.Date endDate
The date this mapping has stopped being active


resource

AbstractResource resource
The resource this mapping is for


physicalEnvironment

PhysicalEnvironment physicalEnvironment
The physical environment this mapping is for

Class org.figure8.join.businessobjects.environment.ResourceVersion extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
This resource version name (should be unique)


description

java.lang.String description
This resource version description


creationDate

java.util.Date creationDate
This resource version creation date


resourceType

VersionedResourceType resourceType
The type of resources this version can apply to (this impl uses VersionedResourceType impl)

Class org.figure8.join.businessobjects.environment.Service extends AbstractResource implements Serializable

Class org.figure8.join.businessobjects.environment.ServiceType extends AbstractResourceType implements Serializable

Class org.figure8.join.businessobjects.environment.VersionedResource extends AbstractResource implements Serializable

Serialized Fields

activeVersionUpdates

java.util.List<E> activeVersionUpdates
The list of active version updates (should be only one)

Class org.figure8.join.businessobjects.environment.VersionedResourceType extends AbstractResourceType implements Serializable

Class org.figure8.join.businessobjects.environment.VersionedResourceUpdate extends EntityObject implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The date this update has started being active


endDate

java.util.Date endDate
The date this update has stopped being active


version

ResourceVersion version
The version resource has been updated with


resource

VersionedResource resource
The versioned resource this update is for


Package org.figure8.join.businessobjects.network

Class org.figure8.join.businessobjects.network.NetClient extends EntityObject implements Serializable

Class org.figure8.join.businessobjects.network.NetConfiguration extends EntityObject implements Serializable

Class org.figure8.join.businessobjects.network.NotificationFailure extends EntityObject implements Serializable


Package org.figure8.join.businessobjects.reporting

Class org.figure8.join.businessobjects.reporting.Event extends EntityObject implements Serializable

Serialized Fields

key

java.lang.String key
The unique key for this event


label

java.lang.String label
The label to display for this event


msgTitleTemplate

java.lang.String msgTitleTemplate
A string representing template for generating messages title


msgContentTemplate

java.lang.String msgContentTemplate
A string representing template for generating messages content


msgLinkTemplate

java.lang.String msgLinkTemplate
A string representing template for generating messages link


resourceResolverClass

java.lang.String resourceResolverClass
Java class used to resolve resource subject to event publication


resourceResolver

PermissionResourceResolver resourceResolver
The resolver instance of type resourceResolverClass

Class org.figure8.join.businessobjects.reporting.MailingList extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
The name of this mailing list


msgTitleTemplate

java.lang.String msgTitleTemplate
A string representing template for generating messages title


msgContentTemplate

java.lang.String msgContentTemplate
A string representing template for generating messages content


subscriptions

java.util.List<E> subscriptions
A list of Subscription objects for this mailing list


event

Event event
The event this mailing list is attached to.


resourceId

java.lang.String resourceId
The identifier of resource associated with this mailing list event (if any)

Class org.figure8.join.businessobjects.reporting.Message extends EntityObject implements Serializable

Serialized Fields

title

java.lang.String title
The title of this message.


content

java.lang.String content
The content of this message.


link

java.lang.String link
A link to reference from this message.


publicationDate

java.util.Date publicationDate
The date of first publication of this message.


expiryDate

java.util.Date expiryDate
Expiration date (ie. end of publication) for this message.


release

Release release
The release this message is attached to.

Class org.figure8.join.businessobjects.reporting.Subscription extends EntityObject implements Serializable

Serialized Fields

userId

java.lang.String userId
Identifier of user owning this subscription


creationDate

java.util.Date creationDate
The date this subscription was done


mailingList

MailingList mailingList
The mailing list that is subscribed to


Package org.figure8.join.businessobjects.security

Class org.figure8.join.businessobjects.security.Permission extends EntityObject implements Serializable

Serialized Fields

role

Role role
The security role asscoiated with this permission


userId

java.lang.String userId
The user associated with this permission


resourceId

java.lang.String resourceId
The identifier of resource associated with this permission

Class org.figure8.join.businessobjects.security.Role extends SortableEntityObject implements Serializable

Serialized Fields

name

java.lang.String name
Role name


description

java.lang.String description
Role decription


permissionResourceResolverClass

java.lang.String permissionResourceResolverClass
Java class used to resolve resource subject to permissions within this role


resourceResolver

PermissionResourceResolver resourceResolver
The resolver instance of type permissionResourceResolverClass

Class org.figure8.join.businessobjects.security.User extends EntityObject implements Serializable

Serialized Fields

id

long id
The unique identifier of this object.


login

java.lang.String login
This user login : its unique business identifier


password

java.lang.String password
This user password


lastname

java.lang.String lastname
This user lastname


firstname

java.lang.String firstname
This user firstname


mail

java.lang.String mail
This user mail address


phone

java.lang.String phone
This user phone number


team

java.lang.String team
This user team description


Package org.figure8.join.control

Class org.figure8.join.control.DownloadServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

notExistsURL

java.lang.String notExistsURL
URL to redirect to in case the specified file does not exists.


notReadableURL

java.lang.String notReadableURL
URL to redirect to in case the specified file is not readable.

Class org.figure8.join.control.FeedServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

reportingManager

ReportingManager reportingManager
The reporting manager implementation to use for retrieving messages.


processManager

IntegrationProcessManager processManager
The integration process manager to use for retrieving releases.

Class org.figure8.join.control.JoinForm extends org.apache.struts.action.ActionForm implements Serializable

Serialized Fields

id

long id
The identifier of EntityObject associated


idStr

java.lang.String idStr
The string representation of EntityObject identifier


errors

org.apache.struts.action.ActionErrors errors
The ActionErrors associated to this form validation.

Class org.figure8.join.control.JoinServlet extends org.apache.struts.action.ActionServlet implements Serializable

Class org.figure8.join.control.UserContainer extends java.lang.Object implements Serializable

Serialized Fields

view

UserView view
A wrapped user view if container is for authenticated user


Package org.figure8.join.control.config

Class org.figure8.join.control.config.AccessControlConfig extends java.lang.Object implements Serializable

Serialized Fields

actionConstraints

java.util.HashMap<K,V> actionConstraints
The set of action constraints configurations for this module, if any.

Class org.figure8.join.control.config.ActionConstraintConfig extends java.lang.Object implements Serializable

Serialized Fields

roles

java.util.ArrayList<E> roles
The set of associated roles handling configurations for this action, if any.


operationConstraints

java.util.HashMap<K,V> operationConstraints
The set of operaton handling configurations for this action, if any.


path

java.lang.String path
The path of this action constraint applies to. Context-relative path of the submitted request, starting with a slash ("/") character, and omitting any filename extension if extension mapping is being used.

Class org.figure8.join.control.config.OperationConstraintConfig extends java.lang.Object implements Serializable

Serialized Fields

roles

java.util.ArrayList<E> roles
The set of associated roles handling configurations for this operation, if any.


name

java.lang.String name
Name of the operation with the Action scope. This name if indeed the value of the op request parameter that is used in action for routing request to the correct business method.

Class org.figure8.join.control.config.RoleConfig extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
Name of this role


resource

java.lang.String resource
Resource the role applies to


resourceParameter

java.lang.String resourceParameter
Request parameter allowing to identify the resource role applies to


hasResource

boolean hasResource
Boolean flag that tells if role applies to a resource or not


hasResourceParameter

boolean hasResourceParameter
Boolean flag that tells if role applies to a resource retrieved from parameter


Package org.figure8.join.control.form

Class org.figure8.join.control.form.AssemblyForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The assembly key


comments

java.lang.String comments
The assembly comments


versionInfo

java.lang.String versionInfo
Assembly version info


creationDate

java.util.Date creationDate
The assembly creation date


composerId

java.lang.String composerId
The identifier of user that has composed assembly


releaseName

java.lang.String releaseName
The name of release this assembly is attached to


statusKey

java.lang.String statusKey
The key of assembly status


creationDateStr

java.lang.String creationDateStr
String representation of creationDate


deliverables

java.util.Map<K,V> deliverables
The map of deliverables that are used for assembly composition. Values are the deliverable unique business identifier, keys are their type key.

Class org.figure8.join.control.form.BuildForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The build key


comments

java.lang.String comments
The build comments


versionInfo

java.lang.String versionInfo
Build version info


creationDate

java.util.Date creationDate
The build creation date


composerId

java.lang.String composerId
The identifier of user that has composed build


releaseName

java.lang.String releaseName
The name of release this build is attached to


creationDateStr

java.lang.String creationDateStr
String representation of creationDate


components

java.util.Map<K,V> components
The map of components that are used for build composition. Values are the components unique business identifier, keys are their type key.


extractedComponents

java.util.Map<K,V> extractedComponents
The map of components that shoud be extracted from assembly for build composition. Values are the assemblies unique business identifier, keys are the key of type of component to extract from this assembly.

Class org.figure8.join.control.form.ComponentForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The component key


typeKey

java.lang.String typeKey
The component type key identifier


releaseName

java.lang.String releaseName
The name of release this component is attached to

Class org.figure8.join.control.form.ComponentTypeForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The component type key


label

java.lang.String label
The component type label


keyTemplate

java.lang.String keyTemplate
The component type keyTemplate


description

java.lang.String description
The component type description

Class org.figure8.join.control.form.ConsumerForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
The name corresponding to the consumer.


selector

java.lang.String selector
The message selector expression to apply on consumer.


destination

java.lang.String destination
The reference of destination this consumer get messages from.


consumerBeanClass

java.lang.String consumerBeanClass
The Java class used for instanciating a JMS consumer


active

boolean active
Whether the described consumer is active or not (it may have been temporarily disabled)


threadSafe

boolean threadSafe
Whether the described consumer bean is thread safe or not. Default is true.


activeStr

java.lang.String activeStr
String representation of active flag.


threadSafeStr

java.lang.String threadSafeStr
String representation of threadSafe flag.


parameters

java.util.Map<K,V> parameters
The map of parameters of the consumer bean instance if Configurable. Keys are the name of parmaeter, values are string representing values.

Class org.figure8.join.control.form.DefaultForm extends JoinForm implements Serializable

Class org.figure8.join.control.form.DeliverableForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The deliverable key


comments

java.lang.String comments
The deliverable comments


versionInfo

java.lang.String versionInfo
Deliverable version info


creationDate

java.util.Date creationDate
The deliverable creation date


typeKey

java.lang.String typeKey
The deliverable type key identifier


supplierId

java.lang.String supplierId
The deliverable supplier identifier


releaseName

java.lang.String releaseName
The name of release this deliverable is attached to


creationDateStr

java.lang.String creationDateStr
String representation of creationDate


deliverableFile

org.apache.struts.upload.FormFile deliverableFile
File handler for deliverable content

Class org.figure8.join.control.form.DeliverableTypeForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The deliverable type key


label

java.lang.String label
The deliverable type label


keyTemplate

java.lang.String keyTemplate
The deliverable type keyTemplate


versionable

boolean versionable
The deliverable type is versionnable flag


mandatory

boolean mandatory
The deliverable type is mandatory flag


vcsDeliverable

boolean vcsDeliverable
The deliverable type use version and configuration system flag


vcsUser

java.lang.String vcsUser
User for connecting to the version and configuration system


vcsPassword

java.lang.String vcsPassword
Password for connecting to the version and configuration system


vcsRoot

java.lang.String vcsRoot
The root of the version and configuration system


vcsModule

java.lang.String vcsModule
The module of the version and configuration system


vcsAccessorClass

java.lang.String vcsAccessorClass
The accessor class name for the version and configuration system


versionableStr

java.lang.String versionableStr
String representation of the versionable flag


mandatoryStr

java.lang.String mandatoryStr
String representation of the mandatory flag


vcsDeliverableStr

java.lang.String vcsDeliverableStr
String representation of the vcsDeliverable flag

Class org.figure8.join.control.form.DeploymentForm extends JoinForm implements Serializable

Serialized Fields

applicantId

java.lang.String applicantId
Identifier of user who asked for deployment


applicantComments

java.lang.String applicantComments
Comments on deployment demand made by applicants


assigneeId

java.lang.String assigneeId
Identifier of user assigned to deployment relaization


assigneeComments

java.lang.String assigneeComments
Comments on deployment relalization made by assignee


creationDate

java.util.Date creationDate
The deployment demand creation date


assignationDate

java.util.Date assignationDate
The deployment demand assignation date


realizationDate

java.util.Date realizationDate
The deployment realization date


wishedDate

java.util.Date wishedDate
The date applicant wished the deployment's done


assemblyKey

java.lang.String assemblyKey
The key of assembly to deploy


logicalEnvKey

java.lang.String logicalEnvKey
The key of logical environment to deploy on


targetName

java.lang.String targetName
The identifier of deployment target


statusKey

java.lang.String statusKey
The key of deployment status


creationDateStr

java.lang.String creationDateStr
String representation of creationDate


assignationDateStr

java.lang.String assignationDateStr
String represantation of assignationDate


realizationDateStr

java.lang.String realizationDateStr
String representation of realizationDate


wishedDateStr

java.lang.String wishedDateStr
String representation of wishedDate


wishedHourStr

java.lang.String wishedHourStr
String representation of wishedHour


wishedMinStr

java.lang.String wishedMinStr
String representation of wishedMin

Class org.figure8.join.control.form.DeploymentsForm extends JoinForm implements Serializable

Serialized Fields

logicalEnvKey

java.lang.String logicalEnvKey
The key of logical environment to get deployments for.


physicalEnvKey

java.lang.String physicalEnvKey
The unique key of physical environment to get deployments for.

Class org.figure8.join.control.form.EISMappingForm extends JoinForm implements Serializable

Serialized Fields

eisId

long eisId
The unique id of EIS this mapping is for


gatewayName

java.lang.String gatewayName
The unique name of gateway this mapping is for


startDate

java.util.Date startDate
The starting date of this EIS mapping


endDate

java.util.Date endDate
The end date of this EIS mapping


eisIdStr

java.lang.String eisIdStr
String representation of eisId (should be a long)


gatewayIdStr

java.lang.String gatewayIdStr
String representation of gatewayId (should be a long)

Class org.figure8.join.control.form.EnvironmentMappingForm extends JoinForm implements Serializable

Serialized Fields

logicalEnvKey

java.lang.String logicalEnvKey
The unique key of logical environment this maping is for


physicalEnvKey

java.lang.String physicalEnvKey
The unique key of physical environment this mapping is for


startDate

java.util.Date startDate
The starting date of this environmnent mapping


endDate

java.util.Date endDate
The end date of this environment mapping

Class org.figure8.join.control.form.LogicalEnvironmentForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The key of current logical environment.


label

java.lang.String label
The label of current logical environment.


description

java.lang.String description
The description of current logical environment.


managerId

java.lang.String managerId
The identifier of logical environment manager.


active

boolean active
The flag telling if logical environment is active or not;


releaseName

java.lang.String releaseName
The name of release this environment is attached to


stepId

long stepId
The unique id of step this environment is dedicated to


activeStr

java.lang.String activeStr
String representation of the active flag.


stepIdStr

java.lang.String stepIdStr
String representation of the stepId long.

Class org.figure8.join.control.form.LoginForm extends JoinForm implements Serializable

Serialized Fields

login

java.lang.String login
User login


password

java.lang.String password
User password


targetUrl

java.lang.String targetUrl
Redirection target URL

Class org.figure8.join.control.form.MachineForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
This machine full network name


ipAddress

java.lang.String ipAddress
This machine IP address


osInfo

java.lang.String osInfo
This machine Operating System info


cpuInfo

java.lang.String cpuInfo
This machine CPU info


ramAmount

int ramAmount
This machine RAM amount


romAmount

int romAmount
This machine ROM amount


ramAmountStr

java.lang.String ramAmountStr
String representation of ramAmount


romAmountStr

java.lang.String romAmountStr
String representation of romAmount

Class org.figure8.join.control.form.MailingListForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
The name of this mailing list


msgTitleTemplate

java.lang.String msgTitleTemplate
A string representing template for generating messages title


msgContentTemplate

java.lang.String msgContentTemplate
A string representing template for generating messages content


eventKey

java.lang.String eventKey
The key of event corresponding to mailing list


resourceId

java.lang.String resourceId
The identifier of resource to whom event applies when using mailing list


userId

java.lang.String userId
The identifier of user to manage subscriptions for


subscribedLists

java.util.Map<K,V> subscribedLists
The map of subscribed lists for the associated user. Keys are the name of list, values are boolean telling if list is subcribes.

Class org.figure8.join.control.form.MessageForm extends JoinForm implements Serializable

Serialized Fields

title

java.lang.String title
This message title


content

java.lang.String content
This message content


link

java.lang.String link
This message link to outer reference


publicationDate

java.util.Date publicationDate
This message publication date


expiryDate

java.util.Date expiryDate
This message publication end date


releaseName

java.lang.String releaseName
The name of release this message is attached to


publicationDateStr

java.lang.String publicationDateStr
String representation of publicationDate


expiryDateStr

java.lang.String expiryDateStr
Sting representation of expiryDate

Class org.figure8.join.control.form.ParameterForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
The parameter name


description

java.lang.String description
The parameter description

Class org.figure8.join.control.form.ParameterValueForm extends JoinForm implements Serializable

Serialized Fields

value

java.lang.String value
Edited parameter value


parameterName

java.lang.String parameterName
Edited parameter name


editedEnvironment

java.lang.String editedEnvironment
Edited environment name


editedTarget

java.lang.String editedTarget
Edited target name


viewedEnvironment

java.lang.String viewedEnvironment
Viewed environment name


viewedTarget

java.lang.String viewedTarget
Viewed target name


render

boolean render
Render parameters values


copiedValue

java.util.Map<K,V> copiedValue
The map of values in form to copy. Keys are the id of value, values are boolean telling if value is selected to copy.

Class org.figure8.join.control.form.PermissionForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
Name of security role associated to permission


description

java.lang.String description
Description of security role associated to permission


permissionResourceResolverClass

java.lang.String permissionResourceResolverClass
FQN of PermissionResourceResolver implementation to use for role


userId

java.lang.String userId
The unique identifier of user associated to permissions


roles

java.util.Map<K,V> roles
The map of security roles endorsed by the associated user. Keys are the name of role, values are boolean telling if role is acquired.


resources

java.util.Map<K,V> resources
The map of permissions resources for the associated user. Keys are the name of security roles, values are array of resource identifiers.

Class org.figure8.join.control.form.PhysicalEnvironmentForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The key of current physical environment.


name

java.lang.String name
The name of current physical environment.


startDate

java.util.Date startDate
The starting date of changes tracking period.


endDate

java.util.Date endDate
The ending date of changes tracking period.


startHour

int startHour
The hour of day for configuration time


startMin

int startMin
The minute of hour for configuration time


fromLogical

boolean fromLogical
Wether the requested operation is made from the logical environment point of view


startDateStr

java.lang.String startDateStr
The String representation of changes tracking period start date.


startHourStr

java.lang.String startHourStr
The String representation of changes tracking period start hour.


startMinStr

java.lang.String startMinStr
The String representation of changes tracking period start minutes.


endDateStr

java.lang.String endDateStr
The String representation of changes tracking period end date.

Class org.figure8.join.control.form.QuartzCronForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
name: The cron name to manage


cronExpression

java.lang.String cronExpression
cronExpression: The cron expression to schedule


jobClass

java.lang.String jobClass
jobClass: The job class name to instanciate on job execution


userProperties

java.lang.String userProperties
userProperties: The user properties to parameter a job


parameters

java.util.Map<K,V> parameters
The map of parameters of the consumer bean instance if Configurabel. Keys are the name of parmaeter, values are string representing values.

Class org.figure8.join.control.form.ReleaseForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
The name of this release


major

int major
The major number of version number of release


minor

int minor
The minor number of version number of release


shippingDate

java.util.Date shippingDate
The date of shipping for this release


majorStr

java.lang.String majorStr
String representation of major


minorStr

java.lang.String minorStr
String representation of minor


shippingDateStr

java.lang.String shippingDateStr
String representation of shippingDate

Class org.figure8.join.control.form.ResourceForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
This resource name (must be unique)


logDirPath

java.lang.String logDirPath
The path to the log directory of this resource


logFilePath

java.lang.String logFilePath
The path to the current log file of this resource


resourceTypeKey

java.lang.String resourceTypeKey
The key of this resource type


machineId

long machineId
The identifier of machine this resource is hosted on


category

java.lang.String category
The category of this resource (this determine its persistent implementation)


startDate

java.util.Date startDate
The starting date of changes tracking period.


endDate

java.util.Date endDate
The ending date of changes tracking period.


startHour

int startHour
The hour of day for configuration time


startMin

int startMin
The minute of hour for configuration time


machineIdStr

java.lang.String machineIdStr
The string representation of identifier of machine this resource is hosted on


startDateStr

java.lang.String startDateStr
The String representation of changes tracking period start date.


startHourStr

java.lang.String startHourStr
The String representation of changes tracking period start hour.


startMinStr

java.lang.String startMinStr
The String representation of changes tracking period start minutes.


endDateStr

java.lang.String endDateStr
The String representation of changes tracking period end date.

Class org.figure8.join.control.form.ResourceMappingForm extends JoinForm implements Serializable

Serialized Fields

resourceId

long resourceId
The unique id of infrastructure resource this mapping is for


environmentKey

java.lang.String environmentKey
The unique key of physical environment this mapping is for


startDate

java.util.Date startDate
The starting date of this resource mapping


endDate

java.util.Date endDate
The end date of this resource mapping


resourceIdStr

java.lang.String resourceIdStr
String representation of resourceId (should be a long)

Class org.figure8.join.control.form.ResourceTypeForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The key of this resource type (should be a unique business meaningfull identifier )


label

java.lang.String label
The label of this resource type (should be use for display purpose)


category

java.lang.String category
The category of this resource type (this determine its persistent implementation)

Class org.figure8.join.control.form.ResourceUpdateForm extends JoinForm implements Serializable

Serialized Fields

resourceName

java.lang.String resourceName
The name of resource to update


resourceVersionName

java.lang.String resourceVersionName
The name of resource version to apply

Class org.figure8.join.control.form.ResourceVersionForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
This resource version name (should be unique)


description

java.lang.String description
This resource version description


resourceTypeKey

java.lang.String resourceTypeKey
The key of this resource type

Class org.figure8.join.control.form.ScriptLogForm extends JoinForm implements Serializable

Serialized Fields

entityId

long entityId
The unique identifier of entity referenced by this log


entityClass

java.lang.String entityClass
The class of entity referenced by this log


scriptName

java.lang.String scriptName
The name of executed script


scriptCategory

java.lang.String scriptCategory
The category of executed script


entityIdStr

java.lang.String entityIdStr
String representation ot the unique identifier of entity referenced

Class org.figure8.join.control.form.SetupForm extends JoinForm implements Serializable

Serialized Fields

setupType

java.lang.String setupType
Setup type (standard or custom)


setupMode

java.lang.String setupMode
Mode of setup (simple or dissociated)


setupSynch

java.lang.String setupSynch
Synchronization of setup (synchronous or asynchronous)


httpUrl

java.lang.String httpUrl
Application over side http url


brokerUrl

java.lang.String brokerUrl
Application over side broker url


brokerPort

int brokerPort
Message broker listening port


brokerPortStr

java.lang.String brokerPortStr
String representation of message broker listening port


adminName

java.lang.String adminName
Administrator name


adminPassword

java.lang.String adminPassword
Administrator password


adminCPassword

java.lang.String adminCPassword
Administrator password confirmation


adminLastname

java.lang.String adminLastname
Administrator lastname


adminFirstname

java.lang.String adminFirstname
Administrator firstname


userName

java.lang.String userName
DB user name


userPassword

java.lang.String userPassword
DB user password


databaseUrl

java.lang.String databaseUrl
DB connection URL


driverClassname

java.lang.String driverClassname
JDBC driver class name


dialect

java.lang.String dialect
DB dialect to use


poolSize

int poolSize
Maximum size of the connection pool.


poolSizeStr

java.lang.String poolSizeStr
String representation of maximum size of connection pool


datasource

java.lang.String datasource
Datasource jndi name

Class org.figure8.join.control.form.StatusForm extends JoinForm implements Serializable

Serialized Fields

key

java.lang.String key
The unique key of this status


label

java.lang.String label
The display label of this status


type

java.lang.String type
The type of process this status is for


terminal

boolean terminal
Whether this status is terminal in process


cancelled

boolean cancelled
Whether this status corresponds to a 'cancel' status in process


terminalStr

java.lang.String terminalStr
String representation of terminal


cancelledStr

java.lang.String cancelledStr
String representation of cancelled

Class org.figure8.join.control.form.StepForm extends JoinForm implements Serializable

Serialized Fields

label

java.lang.String label
The label of current step


position

int position
The position of current step into integration cycle


positionStr

java.lang.String positionStr
String representation of position

Class org.figure8.join.control.form.TargetForm extends JoinForm implements Serializable

Serialized Fields

name

java.lang.String name
The name of current target


description

java.lang.String description
The description of current target

Class org.figure8.join.control.form.UserForm extends JoinForm implements Serializable

Serialized Fields

login

java.lang.String login
The current user login identifier


password

java.lang.String password
This user password


password2

java.lang.String password2
The current user password confirmation


lastname

java.lang.String lastname
This user lastname


firstname

java.lang.String firstname
The current user firstname


mail

java.lang.String mail
This user mail address


phone

java.lang.String phone
The current user phone number


team

java.lang.String team
This user team description


Package org.figure8.join.control.taglib

Class org.figure8.join.control.taglib.AjaxAnchorsTag extends javax.servlet.jsp.tagext.BodyTagSupport implements Serializable

Serialized Fields

ajaxFlag

java.lang.String ajaxFlag
A flag to append on request telling we're an XHR


target

java.lang.String target
The target div of the ajax retrieved content


preFunction

java.lang.String preFunction
A Javascript function to execute before making ajax call


postFunction

java.lang.String postFunction
A Javascript function to execute after making ajax call


options

java.lang.String options
A list of options to pass to ajax library

Class org.figure8.join.control.taglib.AuthorizeTag extends ContextTag implements Serializable

Serialized Fields

role

java.lang.String role
Required security role that the user must have to view the body content.


resourceName

java.lang.String resourceName
The name of bean allowing to access security resource (directly or through resourceProperty).


resourceProperty

java.lang.String resourceProperty
The property of bean resourceName for getting security resource to whom role should apply.


authorized

boolean authorized
Authorized flag. Set by doStartTag().

Class org.figure8.join.control.taglib.ContextTag extends javax.servlet.jsp.tagext.BodyTagSupport implements Serializable

Class org.figure8.join.control.taglib.CssRowTag extends ContextTag implements Serializable

Serialized Fields

name

java.lang.String name
The name of the bean to evaluate.


scope

java.lang.String scope
The scope where we can find the bean name.


odd

java.lang.String odd
CSS class to apply if bean value is odd


even

java.lang.String even
CSS class to apply if bean value is even (pair)

Class org.figure8.join.control.taglib.GetResultTag extends ContextTag implements Serializable

Serialized Fields

name

java.lang.String name
The name of the bean to call method on.


scope

java.lang.String scope
The scope where we can find the bean name.


method

java.lang.String method
The method to call onto bean name.


paramName

java.lang.String paramName
The name of the bean that is the method param.


paramScope

java.lang.String paramScope
The scope where we can find the bean paramName.


resultName

java.lang.String resultName
The name of the bean where to put result of method call.


resultScope

java.lang.String resultScope
The scope where we have to store the bean resultName.

Class org.figure8.join.control.taglib.LoggedInTag extends javax.servlet.jsp.tagext.BodyTagSupport implements Serializable

Serialized Fields

flag

boolean flag
Must the user be logged in to access resources ?


logged

boolean logged
Logged In flag. Set by doStartTag().

Class org.figure8.join.control.taglib.ResolveUserTag extends ContextTag implements Serializable

Serialized Fields

userId

java.lang.String userId
User to resolve id


name

java.lang.String name
Name of the bean to use (in some scope)


property

java.lang.String property
Property to call on bean in order to get user's id


link

boolean link
Flag telling if user's details page should be linked.


Package org.figure8.join.core

Class org.figure8.join.core.DuplicateEntityException extends java.lang.Exception implements Serializable

Serialized Fields

original

EntityObject original
Original EntityObject that has cause the duplicate exception to occur.

Class org.figure8.join.core.EntityObject extends java.lang.Object implements Serializable

Serialized Fields

id

long id
The unique identifier of this object.

Class org.figure8.join.core.InfrastructureException extends java.lang.RuntimeException implements Serializable

Class org.figure8.join.core.InvalidParameterException extends java.lang.Exception implements Serializable

Class org.figure8.join.core.ParameterDefinition extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The name of this parameter.


description

java.lang.String description
The description of this parameter;


defaultValue

java.lang.String defaultValue
A default value (or at least an example) for this parameter.


mandatory

boolean mandatory
Flag telling if this parameter is mandatory or optional.

Class org.figure8.join.core.SortableEntityObject extends EntityObject implements Serializable


Package org.figure8.join.core.messaging

Class org.figure8.join.core.messaging.JMSConsumerBeanInfo extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
The name corresponding to the consumer.


selector

java.lang.String selector
The message selector expression to apply on consumer.


destination

java.lang.String destination
The reference of destination this consumer get messages from.


consumerBeanClass

java.lang.String consumerBeanClass
The Java class used for instanciating a JMS consumer


active

boolean active
Whether the wrapped consumer is active or not (it may have been temporarily disabled)


threadSafe

boolean threadSafe
Whether the wrapped consumer bean is thread safe or not. Default is true.


consumerParameters

java.util.List<E> consumerParameters
A list of JMSConsumerBeanParameterInfos if consumer is Configurable.


consumerBean

JMSConsumerBean consumerBean
Wrapped JMSConsumerBean instance

Class org.figure8.join.core.messaging.JMSConsumerBeanParameterInfo extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
The name of the consumer parameter.


value

java.lang.String value
The value of the consumer parameter denoted by name.


consumerInfo

JMSConsumerBeanInfo consumerInfo
The bean wrapping info about the consumer this parameters apply to.


Package org.figure8.join.core.setup

Class org.figure8.join.core.setup.BootstrapException extends java.lang.Exception implements Serializable


Package org.figure8.join.services.cache

Class org.figure8.join.services.cache.CacheException extends java.lang.Exception implements Serializable


Package org.figure8.join.services.notification

Class org.figure8.join.services.notification.NotificationException extends java.lang.Exception implements Serializable


Package org.figure8.join.services.remoting

Class org.figure8.join.services.remoting.InvalidSessionException extends java.lang.Exception implements Serializable


Package org.figure8.join.services.remoting.beans

Class org.figure8.join.services.remoting.beans.RemoteComponent extends java.lang.Object implements Serializable

Serialized Fields

size

long size
The component size (in bytes)


versionInfo

java.lang.String versionInfo
Component version information


componentTypeKey

java.lang.String componentTypeKey
The key of corresponding component type

Class org.figure8.join.services.remoting.beans.RemoteDeliverable extends java.lang.Object implements Serializable

Serialized Fields

comments

java.lang.String comments
Comments on deliverable creation.


versionInfo

java.lang.String versionInfo
Deliverable version information


release

RemoteRelease release
Release this deliverable should be bind to


deliverableType

RemoteDeliverableType deliverableType
Type of this deliverable

Class org.figure8.join.services.remoting.beans.RemoteDeliverableType extends java.lang.Object implements Serializable

Serialized Fields

key

java.lang.String key
This remote deliverable type unique key


label

java.lang.String label
This remote deliverable type label for display


vcsDeliverable

boolean vcsDeliverable
The deliverable type use version and configuration system flag

Class org.figure8.join.services.remoting.beans.RemoteJMSConsumerBeanInfo extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The name corresponding to the consumer.


selector

java.lang.String selector
The message selector expression to apply on consumer.


destination

java.lang.String destination
The reference of destination this consumer get messages from.


consumerBeanClass

java.lang.String consumerBeanClass
The Java class used for instanciating a JMS consumer


active

boolean active
Whether the wrapped consumer is active or not (it may have been temporarily disabled)


threadSafe

boolean threadSafe
Whether the wrapped consumer bean is thread safe or not. Default is true.


parameters

java.util.List<E> parameters
The parameters this consumer may have.

Class org.figure8.join.services.remoting.beans.RemoteMailingList extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The name of this mailing list


msgTitleTemplate

java.lang.String msgTitleTemplate
A string representing template for generating messages title


msgContentTemplate

java.lang.String msgContentTemplate
A string representing template for generating messages content

Class org.figure8.join.services.remoting.beans.RemoteMessage extends java.lang.Object implements Serializable

Serialized Fields

title

java.lang.String title
The title of this message.


content

java.lang.String content
The content of this message.


link

java.lang.String link
A link to reference from this message.


publicationDate

java.util.Date publicationDate
The date of first publication of this message.


expiryDate

java.util.Date expiryDate
Expiration date (ie. end of publication) for this message.


release

RemoteRelease release
The release this message is attached to.

Class org.figure8.join.services.remoting.beans.RemoteParameter extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The name of this parameter.


value

java.lang.String value
The value of this parameter. s

Class org.figure8.join.services.remoting.beans.RemoteQuartzCronInfo extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
name: The cron name


cronExpression

java.lang.String cronExpression
cronExpression: The cron expression that schedules job


jobType

java.lang.String jobType
jobType: The job type name


jobClass

java.lang.String jobClass
jobClass: The job class name to instanciate on job execution


jobParameters

java.util.List<E> jobParameters
A list of RemoteParameters


userParameters

java.util.List<E> userParameters
A list of RemoteParameters

Class org.figure8.join.services.remoting.beans.RemoteRelease extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
This release unique name


shippingDate

java.util.Date shippingDate
This release sipping date

Class org.figure8.join.services.remoting.beans.RemoteResourceVersion extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
This resource version name (should be unique)


description

java.lang.String description
This resource version description


creationDate

java.util.Date creationDate
This resource version creation date


resourceTypeKey

java.lang.String resourceTypeKey
The key of corresponding resource type

Class org.figure8.join.services.remoting.beans.RemoteScriptLogInfo extends java.lang.Object implements Serializable

Serialized Fields

id

long id
The identifier of this script log infos


creationDate

java.util.Date creationDate
The date of creation of this log


entityId

long entityId
The unique identifier of entity referenced by this log


entityClass

java.lang.String entityClass
The class of entity referenced by this log


logFile

java.lang.String logFile
The path of file corresponding to log


scriptName

java.lang.String scriptName
The name of executed script


scriptCategory

java.lang.String scriptCategory
The category of executed script


scriptFile

java.lang.String scriptFile
The path of file corresponding to script


exceptionMsg

java.lang.String exceptionMsg
The exception message if script has failed

Class org.figure8.join.services.remoting.beans.RemoteStatus extends java.lang.Object implements Serializable

Serialized Fields

key

java.lang.String key
This status unique key identifier


label

java.lang.String label
This status label for display


type

java.lang.String type
The type of process this status applies to

Class org.figure8.join.services.remoting.beans.RemoteStep extends java.lang.Object implements Serializable

Serialized Fields

label

java.lang.String label
This step label for display (is unique)


position

int position
This step prosition into integration process definition (unique too)

Class org.figure8.join.services.remoting.beans.RemoteSubscriber extends java.lang.Object implements Serializable

Serialized Fields

lastname

java.lang.String lastname
This subscriber lastname


firstname

java.lang.String firstname
This subscriber firstname


mailAddress

java.lang.String mailAddress
This subscriber mail address


subscriptionDate

java.util.Date subscriptionDate
This subsriber subscription date


Package org.figure8.join.services.remoting.xmlrpc

Class org.figure8.join.services.remoting.xmlrpc.XmlRpcServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

xmlrpc

org.apache.xmlrpc.XmlRpcServer xmlrpc
The wrapped Xml-rpc server that processes request


Package org.figure8.join.services.repository

Class org.figure8.join.services.repository.ConnectionException extends RepositoryException implements Serializable

Class org.figure8.join.services.repository.RepositoryException extends java.lang.Exception implements Serializable

Class org.figure8.join.services.repository.TransferException extends RepositoryException implements Serializable


Package org.figure8.join.services.scheduling

Class org.figure8.join.services.scheduling.QuartzCronInfo extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
name: The cron name


cronExpression

java.lang.String cronExpression
cronExpression: The cron expression that schedules job


jobType

java.lang.String jobType
jobType: The job type name


jobClass

java.lang.String jobClass
jobClass: The job class name to instanciate on job execution


jobParameters

java.util.List<E> jobParameters
A list of QuartzCronParameterInfos if job is Configurable.

Class org.figure8.join.services.scheduling.QuartzCronParameterInfo extends EntityObject implements Serializable

Serialized Fields

name

java.lang.String name
name: The cron job parameter name


value

java.lang.String value
value: The cron job parameter value


jobParameter

boolean jobParameter
jobParameter: whether the parameter is a job instance parameter or a user parameter


cronInfo

QuartzCronInfo cronInfo
The bean wrapping info about the cron this parameter apply to.


Package org.figure8.join.services.scripting

Class org.figure8.join.services.scripting.ScriptException extends java.lang.Exception implements Serializable

Class org.figure8.join.services.scripting.ScriptLogInfo extends EntityObject implements Serializable

Serialized Fields

creationDate

java.util.Date creationDate
The date of creation of this log


entityId

long entityId
The unique identifier of entity referenced by this log


entityClass

java.lang.String entityClass
The class of entity referenced by this log


logFile

java.lang.String logFile
The path of file corresponding to log


scriptName

java.lang.String scriptName
The name of executed script


scriptCategory

java.lang.String scriptCategory
The category of executed script


scriptFile

java.lang.String scriptFile
The path of file corresponding to script


exceptionMsg

java.lang.String exceptionMsg
The exception message if script has failed


Package org.figure8.join.services.security

Class org.figure8.join.services.security.DeliverableTypeResolver extends java.lang.Object implements Serializable

Serialized Fields

cacheLoader

CacheLoader cacheLoader
CacheLoader allow to retrieve a cacheAccessor used for retrieving DeliverableTypes.

Class org.figure8.join.services.security.EnvironmentResolver extends java.lang.Object implements Serializable

Serialized Fields

action

LogicalEnvironmentActions action
LogicalEnvironmentActions allows to retrieve the cached environmentView list

Class org.figure8.join.services.security.InvalidLoginException extends java.lang.Exception implements Serializable

Class org.figure8.join.services.security.PermissionResource extends java.lang.Object implements Serializable

Serialized Fields

id

java.lang.String id
Resource unique identifier.


label

java.lang.String label
Resource label for display.


Package org.figure8.join.services.vcs

Class org.figure8.join.services.vcs.AbstractVCSAccessor extends java.lang.Object implements Serializable

Serialized Fields

user

java.lang.String user
User for connecting to VCS


password

java.lang.String password
Password for connecting to VCS


module

java.lang.String module
VCS module to connect to


protocol

java.lang.String protocol
Protocol used for connection


rootRepository

java.lang.String rootRepository
VCS remote root repository to connect

Class org.figure8.join.services.vcs.CVSAccessor extends AbstractVCSAccessor implements Serializable

Class org.figure8.join.services.vcs.SubversionAccessor extends AbstractVCSAccessor implements Serializable

Class org.figure8.join.services.vcs.VCSAccessException extends java.lang.Exception implements Serializable


Package org.figure8.join.services.workflow

Class org.figure8.join.services.workflow.OperationNotAllowedException extends java.lang.Exception implements Serializable


Package org.figure8.join.view

Class org.figure8.join.view.EnvironmentView extends java.lang.Object implements Serializable

Serialized Fields

environment

LogicalEnvironment environment
The encapsulated environment domain object


lastDeployment

Deployment lastDeployment
The optionnal last deployment completed onto this environment

Class org.figure8.join.view.GatewayTrackingView extends java.lang.Object implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The start date of the tracking period for Gateway changes


endDate

java.util.Date endDate
The end date of the tracking period for Gateway changes


gateway

Gateway gateway
The encapsulated gateway domain object


eisMappings

java.util.Map<K,V> eisMappings
A map of mappings done during tracking period, organized on EIS type

Class org.figure8.join.view.PhysicalEnvironmentTrackingView extends java.lang.Object implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The start date of the tracking period for PhysicalEnvironment changes


endDate

java.util.Date endDate
The end date of the tracking period for PhysicalEnvironment changes


environment

PhysicalEnvironment environment
The encapsulated environment domain object


resourceMappings

java.util.Map<K,V> resourceMappings
A map of mappings done during tracking period, organized on resource type


versionedResourceMappings

java.util.Map<K,V> versionedResourceMappings
A map of mappings for versioned resources done during transking period

Class org.figure8.join.view.UserView extends java.lang.Object implements Serializable

Serialized Fields

user

User user
The encapsulated user domain object


permissions

java.util.HashMap<K,V> permissions
Map containing user's permission. Keys are security roles, values are permissions on different resources for this role.


clearPassword

java.lang.String clearPassword
Non encrypted password of user (the one provided through authentication form) This is necessary in case of user calling a remote Join web-service that expect clear password for doing its own authentication. Not so unsafe because clear password will only be kept in VM memory...

Class org.figure8.join.view.VersionedResourceMapping extends java.lang.Object implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The date this mapping has started being active


endDate

java.util.Date endDate
The date this mapping has stopped being active


gateway

Gateway gateway
The gateway this mapping is for


physicalEnvironment

PhysicalEnvironment physicalEnvironment
The physical environment this mapping is for


resourceView

VersionedResourceTrackingView resourceView
The tracking view for resource during this mapping period

Class org.figure8.join.view.VersionedResourceTrackingView extends java.lang.Object implements Serializable

Serialized Fields

startDate

java.util.Date startDate
The start date of the tracking period for VersionedResource changes


endDate

java.util.Date endDate
The end date of the tracking period for VersionedResource changes


resource

VersionedResource resource
The encapsulated versioned resource domain object


versionUpdates

java.util.List<E> versionUpdates
The list of version updates done during tracking period



Copyright © 2005-2008 Join. All Rights Reserved.