Serialized Form


Package flux

Class flux.Configuration extends java.lang.Object implements Serializable

Serialized Fields

impl

fluximpl.ConfigurationImpl impl

Class flux.CronColumn extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
Serialized Fields

name

java.lang.String name
The name of the Cron column.


order

int order
The position of the Cron column.


minimum

int minimum
The minimum legal value for the Cron column.


maximum

int maximum
The maximum legal value for the Cron column.

Class flux.DatabaseConditionAction.DatabaseConditionActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

boolean result
Indicates whether the condition was satisfied after the query ran.

Class flux.DatabaseQueryAction.DatabaseQueryActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

boolean result
The result when a SqlSelectAction runs and indicates whether more data is available through the underlying JDBC result set.


row

java.util.List<E> row
Represents the current row of the underlying JDBC result set. Column 1 in the current row of the JDBC result set corresponds to list element 0 in this row object.

Class flux.DatabaseStoredProcedureAction.DatabaseStoredProcedureActionResult extends java.lang.Object implements Serializable

Serialized Fields

outParameters

java.util.List<E> outParameters
Represents the OUT parameters, if any. They are listed in the order that the OUT parameters were registered. For example, if the registered OUT parameters are 3 and 5, then list element 0 contains OUT parameter 3, and list element 1 contains OUT parameter 5.


result

boolean result
Indicates whether more data is available through the underlying JDBC result set.


row

java.util.List<E> row
Represents the current row of the underlying JDBC result set. Column 1 in the current row of the JDBC result set corresponds to list element 0 in this row object.

Class flux.DatabaseUpdateAction.DatabaseUpdateActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

int result
Indicates the number of database rows that were modified. This result is derived by summing the individual results of each call to java.sql.PreparedStatement.executeUpdate().

Class flux.DelayTrigger.Delay_Result extends java.lang.Object implements Serializable

Serialized Fields

result

boolean result
Deprecated. 
The result when a delay trigger fires. Indicates whether a delay trigger fired or expired. If true, the delay trigger fired. Otherwise, the delay trigger expired.

Class flux.DelayTrigger.DelayTriggerResult extends DelayTrigger.Delay_Result implements Serializable

Serialized Fields

result

boolean result
The result when a delay trigger fires. Indicates whether a delay trigger fired or expired. If true, the delay trigger fired. Otherwise, the delay trigger expired.

Class flux.EngineCommunicationException extends EngineException implements Serializable

Class flux.EngineException extends java.lang.Exception implements Serializable

Class flux.ErrorResult extends ErrorResultElement implements Serializable

Serialized Fields

exception

java.lang.Throwable exception
The actual exception that was thrown from a trigger or action in a running flow chart. Flux's built-in file actions throw flux.file.FileActionException when an error occurs.

This exception object is serialized into the database. If a deserialization error occurs when retrieving this exception object, this field is set to null.

See Also:
FileActionException

Class flux.ErrorResultElement extends java.lang.Object implements Serializable

Serialized Fields

clazz

java.lang.String clazz
The class name of the exception.


message

java.lang.String message
The exception's message as returned by java.lang.Exception.getMessage().


stackTrace

java.lang.String stackTrace
The exception's stack trace, as returned by java.lang.Exception.printStackTrace().


throwingAction

java.lang.String throwingAction
The name of the trigger or action that threw the exception.

Class flux.ForEachAction.For_Each_Res extends java.lang.Object implements Serializable

Serialized Fields

result

boolean result
Deprecated. 
Indicates whether the end of data has been found.

Class flux.ForEachAction.ForEachResult extends ForEachAction.For_Each_Res implements Serializable

Serialized Fields

result

boolean result
Indicates whether the end of data has been found.

Class flux.ProcessAction.ProcessActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

int result
The process's exit code, as returned by the operating system, if the process executed synchronously.

Class flux.RestAction.RestActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

java.lang.Object result
The response from the REST service.


responseCode

int responseCode
HTTP response code.


responseStatus

java.lang.String responseStatus
HTTP response status.


type

java.lang.String type
HTTP response media type.

Class flux.StringMapEntry extends java.lang.Object implements Serializable

Serialized Fields

key

java.lang.String key

value

java.lang.String value

Class flux.TimerTrigger.Timer_Result extends java.lang.Object implements Serializable

Serialized Fields

result

boolean result
The result when a timer trigger fires. Indicates whether a timer trigger fired or expired. If true, the timer trigger fired. Otherwise, the timer trigger expired.

Class flux.WebServiceAction.WebServiceActionResult extends java.lang.Object implements Serializable


Package flux.agent

Class flux.agent.AgentConfiguration extends java.lang.Object implements Serializable

Serialized Fields

impl

fluximpl.agent.AgentConfigurationImpl impl

Class flux.agent.AgentException extends java.lang.Exception implements Serializable

Class flux.agent.AgentFileActionResult extends FileActionResult implements Serializable

Serialized Fields

impl

fluximpl.agent.AgentResultImpl impl

Class flux.agent.AgentFileTriggerResult extends FileTrigger.FileTriggerResult implements Serializable

Serialized Fields

impl

fluximpl.agent.AgentResultImpl impl

Class flux.agent.AgentInfo extends java.lang.Object implements Serializable

Class flux.agent.AgentProcessActionResult extends ProcessAction.ProcessActionResult implements Serializable

Serialized Fields

impl

fluximpl.agent.AgentResultImpl impl

Package flux.audittrail

Package flux.audittrail.status

Package flux.file

Class flux.file.FileActionException extends EngineException implements Serializable

Serialized Fields

successful_url_strings

java.util.Map<K,V> successful_url_strings

unsuccessful_url_strings

java.util.Map<K,V> unsuccessful_url_strings

successful_url_objects

java.util.Map<K,V> successful_url_objects

unsuccessful_url_objects

java.util.Map<K,V> unsuccessful_url_objects

successful_filenames

java.util.Map<K,V> successful_filenames

unsuccessful_filenames

java.util.Map<K,V> unsuccessful_filenames

Class flux.file.FileActionResult extends java.lang.Object implements Serializable

Serialized Fields

url_strings

java.util.Map<K,V> url_strings
URLs of files for which the file action was carried out successfully.

This field contains the same information as the "url_objects" field, except file names are stored as strings, not URL objects.


successful_count

int successful_count
The number of files that succeeded in the file action operation.


failed_count

int failed_count
The number of files that failed in the file action operation.

Class flux.file.FileDecryptPgpAction extends fluximpl.file.pgp.decrypt.FileDecryptPgpActionImpl implements Serializable

Class flux.file.FileEncryptPgpAction extends fluximpl.file.pgp.encrypt.FileEncryptPgpActionImpl implements Serializable

Class flux.file.FileTransferException extends java.io.IOException implements Serializable

Class flux.file.FileTrigger.File_Res extends FileTrigger.FileTriggerResult implements Serializable

Class flux.file.FileTrigger.FileTriggerResult extends java.lang.Object implements Serializable

Serialized Fields

url_string_matches

java.util.List<E> url_string_matches
Contains URLs of files and directories against which the file trigger matched using its file criteria. This field contains the same information as the "url_object_matches" field but in string form.


fileinfo_matches

java.util.List<E> fileinfo_matches
Contains details about files against which the file trigger matched using its file criteria. Details include file size, last modified date, and file permissions.

Class flux.file.FileUnzipAction extends fluximpl.file.zip.FileUnzipActionImpl implements Serializable

Class flux.file.FileZipAction extends fluximpl.file.zip.FileZipActionImpl implements Serializable

Class flux.file.FtpCommandAction.FtpCommandActionResult extends java.lang.Object implements Serializable

Serialized Fields

result

java.util.List<E> result
A sequence of responses from the remote server for each FTP command that the server executed. The response from each FTP command, including empty responses, are listed in the same order as the FTP commands.


Package flux.j2ee

Package flux.logging

Package flux.notification

Class flux.notification.MailContentType extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name

Class flux.notification.MailTrigger.Mail_Attachment extends MailTrigger.MailAttachment implements Serializable

Serialized Fields

filename

java.lang.String filename
Deprecated. 
The name of the file attachment.

Class flux.notification.MailTrigger.Mail_Trigger_Result extends MailTrigger.MailTriggerResult implements Serializable

Serialized Fields

attachments

java.util.List<E> attachments
Deprecated. 
List of MailTrigger.Mail_Attachment. The file attachments in the email message.


body

java.lang.String body
Deprecated. 
The body of the email message.


cc_addresses

java.util.List<E> cc_addresses
Deprecated. 
List of String. The carbon copy recipients of the email message.


content_type

MailContentType content_type
Deprecated. 
The content type of the email message.


status_flags

javax.mail.Flags status_flags
Deprecated. 
Status flags for the email message.


from_addresses

java.util.List<E> from_addresses
Deprecated. 
List of String. The senders of the email message.


reply_to_addresses

java.util.List<E> reply_to_addresses
Deprecated. 
List of String. The reply-to addresses of the email message.


sent_date

java.util.Date sent_date
Deprecated. 
The date the email message was sent.


size

int size
Deprecated. 
The size of the email message.


subject

java.lang.String subject
Deprecated. 
The subject of the email message.


to_addresses

java.util.List<E> to_addresses
Deprecated. 
List of String. The recipients of the email message.

Class flux.notification.MailTrigger.MailAttachment extends java.lang.Object implements Serializable

Class flux.notification.MailTrigger.MailTriggerResult extends java.lang.Object implements Serializable


Package flux.repository

Package flux.runtimeconfiguration

Package flux.runtimedatamap

Package flux.security

Class flux.security.AccessibleActionVariable extends java.lang.Object implements Serializable

Serialized Fields

actionName

java.lang.String actionName

actionVariableName

java.lang.String actionVariableName

namespace

java.lang.String namespace

Class flux.security.AccessibleFlowChartVariable extends java.lang.Object implements Serializable

Serialized Fields

flowChartVariableName

java.lang.String flowChartVariableName

namespace

java.lang.String namespace

Class flux.security.Privilege extends java.lang.Object implements Serializable

Serialized Fields

type

PrivilegeType type

namespaces

java.util.SortedSet<E> namespaces

flowChartVariables

java.util.SortedSet<E> flowChartVariables

actionVariables

java.util.SortedSet<E> actionVariables

Class flux.security.Role extends java.lang.Object implements Serializable

Serialized Fields

privileges

java.util.SortedSet<E> privileges

roleDescription

java.lang.String roleDescription

roleName

java.lang.String roleName

Class flux.security.User extends java.lang.Object implements Serializable

Serialized Fields

displayName

java.lang.String displayName

password

java.lang.String password

role

java.lang.String role

username

java.lang.String username



© 2014 Flux Corporation. All rights reserved.