Adobe LiveCycle Business Activity Monitoring ES API
A C D E F G I L M O R S T

A

abs() - Method in interface com.celequest.api.type.ISQLNumeric
Changes this numeric to an unsigned value.
acknowledge() - Method in interface com.celequest.api.agent.IRecoverableAgent
acknowledge is called by VCAgent when the server sucessfully receives the data sent by the agent.

C

ceil() - Method in interface com.celequest.api.type.ISQLNumeric
Changes this numeric to the smallest integer greater than or equal to it.
cleanup(Throwable) - Method in interface com.celequest.api.agent.IAgent
cleanup is called to allow the source to clean up after the agent has transmitted the data to the server.
close() - Method in interface com.celequest.api.agent.IAgent
close closes the source.
com.celequest.api.agent - package com.celequest.api.agent
Celequest agent APIs.
com.celequest.api.function - package com.celequest.api.function
Celequest user-defined function APIs.
com.celequest.api.function.webservice - package com.celequest.api.function.webservice
Celequest user-defined function for web service APIs.
com.celequest.api.type - package com.celequest.api.type
Celequest data-types.
constructMessage(Element, String, String) - Method in interface com.celequest.api.function.webservice.IAlertWSMessageConstructor
Constructs the web service message based on the specified alert data.
constructMessage(Element, String, String, Map) - Method in interface com.celequest.api.function.webservice.IAlertWSMessageConstructor
Constructs the web service message based on the specified alert data.

D

delete(IUDAggregateState, ISQLValue[]) - Method in interface com.celequest.api.function.IUDAggregateFunction
Deletes a set of values (that were previously inserted) from the aggregate state.
disable() - Method in interface com.celequest.api.agent.IAgent
disable is called when a DISABLE request is received from the Celequest server.

E

enable() - Method in interface com.celequest.api.agent.IAgent
enable enables the source.
execute(ISQLValue[], ISQLValue) - Method in interface com.celequest.api.function.IUDScalarFunction
Computes the result of the function applied to the arguments in the input array and stores the result in the output object.

F

floor() - Method in interface com.celequest.api.type.ISQLNumeric
Changes this numeric to the greatest integer less than or equal to it.

G

getBigDecimal() - Method in interface com.celequest.api.type.ISQLNumeric
Get the value of this numeric as a decimal.
getBoolean() - Method in interface com.celequest.api.type.ISQLBoolean
Get the value.
getCount() - Method in interface com.celequest.api.function.IUDAggregateState
Return consumed value count.
getData() - Method in interface com.celequest.api.agent.IPollingAgent
getData is called by the agent every polling interval.
getDecimalResultType(ISQLValue[], IUDFunctionWithVariableResultType.IDecimalResultTypeSetter) - Method in interface com.celequest.api.function.IUDFunctionWithVariableResultType
Passed an array of UDF arguments, this method looks at the types of those arguments, including the precision and scale of any ISQLDecimal arguments, and calls the setPrecision and setScale methods on the passed-in IDecimalResultTypeSetter to specify the precision and scale of the ISQLDecimal type that should be returned by the UDF.
getDescription() - Method in interface com.celequest.api.agent.IAgent
getDescription provides an arbitrary description of the source.
getDouble() - Method in interface com.celequest.api.type.ISQLNumeric
Get the value of this numeric as a double.
getInt() - Method in interface com.celequest.api.type.ISQLNumeric
Get the value of this numeric as an integer.
getLong() - Method in interface com.celequest.api.type.ISQLNumeric
Get the value of this numeric as an integer.
getPrecision() - Method in interface com.celequest.api.type.ISQLDecimal
Returns the count of digits both to the left and right of the decimal point.
getResult(IUDAggregateState, ISQLValue) - Method in interface com.celequest.api.function.IUDAggregateFunction
This method is used to retrieve the computed aggregate value for the specified aggregate state.
getScale() - Method in interface com.celequest.api.type.ISQLDecimal
Returns the count of digits to the right of the decimal point.
getSpecifiedMaxStrLength() - Method in interface com.celequest.api.type.ISQLVarchar
Returns the maximum specified length of this string object, or INFINITE_STRING if there is no preset limit to the length of the string.
getString() - Method in interface com.celequest.api.type.ISQLValue
Get the value as a string.
getTimestamp() - Method in interface com.celequest.api.type.ISQLTimestamp
Get the value.
getVarcharResultType(ISQLValue[], IUDFunctionWithVariableResultType.IVarcharResultTypeSetter) - Method in interface com.celequest.api.function.IUDFunctionWithVariableResultType
Passed an array of UDF arguments, this method looks at the types of those arguments, including the maximum specified string length of ISQLVarchar arguments, and calls the setSpecifiedMaxStrLength methods on the passed-in IVarcharResultTypeSetter to specify the maximum specified string length of the ISQLVarchar type that should be returned by the UDF.

I

IAgent - interface com.celequest.api.agent.IAgent.
IAgent is implemented by a class that extracts data from an arbitrary source and sends it to the Celequest server.
IAlertWSMessageConstructor - interface com.celequest.api.function.webservice.IAlertWSMessageConstructor.
Interface for user-defined a function for constructing a web service message based on alert data.
IEventAgent - interface com.celequest.api.agent.IEventAgent.
IEventAgent is implemented by an event-driven agent.
IEventCallback - interface com.celequest.api.agent.IEventCallback.
The interface IEventCallback is implemented by the Celequest agent to receive data from an IEventAgent agent.
INFINITE_STRING - Static variable in interface com.celequest.api.type.ISQLVarchar
This is a constant indicating that a string can be of infinite length.
IPollingAgent - interface com.celequest.api.agent.IPollingAgent.
IPollingAgent is implemented by an agent and is polled at intervals seconds by the Celequest agent.
IRecoverableAgent - interface com.celequest.api.agent.IRecoverableAgent.
IRecoverableAgent is implemented by a class that extracts data from an arbitrary source, sends it to the Celequest server, and is recoverable.
ISQLBoolean - interface com.celequest.api.type.ISQLBoolean.
SQL "BOOLEAN" value.
ISQLDecimal - interface com.celequest.api.type.ISQLDecimal.
SQL "DECIMAL" value.
ISQLDouble - interface com.celequest.api.type.ISQLDouble.
SQL "DOUBLE" value.
ISQLInteger - interface com.celequest.api.type.ISQLInteger.
SQL "INTEGER" value.
ISQLLong - interface com.celequest.api.type.ISQLLong.
SQL "LONG" value.
ISQLNumeric - interface com.celequest.api.type.ISQLNumeric.
SQL "NUMERIC" values.
ISQLTimestamp - interface com.celequest.api.type.ISQLTimestamp.
SQL "TIMESTAMP" value.
ISQLValue - interface com.celequest.api.type.ISQLValue.
SQL value.
ISQLVarchar - interface com.celequest.api.type.ISQLVarchar.
SQL "VARCHAR" value.
IUDAggregateFunction - interface com.celequest.api.function.IUDAggregateFunction.
Interface for user-defined aggregate functions.
IUDAggregateState - interface com.celequest.api.function.IUDAggregateState.
This interface encapsulates the state required to compute the aggregate value for an aggregate function.
IUDFunction - interface com.celequest.api.function.IUDFunction.
This is a base interface for all types of user-defined functions.
IUDFunctionLogger - interface com.celequest.api.function.IUDFunctionLogger.
This interface is provided for implementors of user-defined functions to log messages.
IUDFunctionWithVariableResultType - interface com.celequest.api.function.IUDFunctionWithVariableResultType.
User defined functions should implement this extension of IUDFunction if they need to have specific control over the precision and scale of ISQLDecimal result types, or over the maximum specified string length of an ISQLVarchar result type.
IUDFunctionWithVariableResultType.IDecimalResultTypeSetter - interface com.celequest.api.function.IUDFunctionWithVariableResultType.IDecimalResultTypeSetter.
Helper interface for getVarcharResultType.
IUDFunctionWithVariableResultType.IVarcharResultTypeSetter - interface com.celequest.api.function.IUDFunctionWithVariableResultType.IVarcharResultTypeSetter.
Helper interface for getVarcharResultType.
IUDScalarFunction - interface com.celequest.api.function.IUDScalarFunction.
Interface for user-defined scalar functions.
insert(IUDAggregateState, ISQLValue[]) - Method in interface com.celequest.api.function.IUDAggregateFunction
Inserts a set of values into the aggregate state.
isDebugEnabled() - Method in interface com.celequest.api.function.IUDFunctionLogger
Returns true if logging at the DEBUG level is enabled for the com.celequest.functions.udf logger.
isNull() - Method in interface com.celequest.api.type.ISQLValue
Returns true if the value is null.
isRecoverable() - Method in interface com.celequest.api.agent.IAgent
isRecoverable states whether the agent is recoverable.

L

logDebug(String) - Method in interface com.celequest.api.function.IUDFunctionLogger
Logs a message using the com.celequest.functions.udf logger at the DEBUG level.
logError(String) - Method in interface com.celequest.api.function.IUDFunctionLogger
Logs a message using the com.celequest.functions.udf logger at the ERROR level.

M

mergeDelete(IUDAggregateState, IUDAggregateState) - Method in interface com.celequest.api.function.IUDAggregateFunction
Deletes aggregateState2 (which aggregates a subset of values) from aggregateState1.
mergeInsert(IUDAggregateState, IUDAggregateState) - Method in interface com.celequest.api.function.IUDAggregateFunction
Inserts aggregateState2 into aggregateState1 For example, for the AVG set function, this method may add the two partial sums and the two partial counts.

O

onMessage(String[]) - Method in interface com.celequest.api.agent.IEventCallback
onMessage is called by the source when it receives new data; for example, from a publish-subscribe messaging system.
open(String, String) - Method in interface com.celequest.api.agent.IAgent
open is called by the Celequest agent to open the source.
open() - Method in interface com.celequest.api.function.IUDAggregateFunction
Initialization function called once for each group, producing an aggregate state object for the group.

R

registerListener(IEventCallback) - Method in interface com.celequest.api.agent.IEventAgent
registerListener is called by the Celequest agent to register a listener to handle data published by the the source.
round(int) - Method in interface com.celequest.api.type.ISQLNumeric
Changes this numeric to its value rounded to n places right of the decimal point.

S

SOAP_PASSWORD - Static variable in interface com.celequest.api.function.webservice.IAlertWSMessageConstructor
SOAP password attribute name.
SOAP_USER_NAME - Static variable in interface com.celequest.api.function.webservice.IAlertWSMessageConstructor
SOAP username attribute Name.
set(boolean) - Method in interface com.celequest.api.type.ISQLBoolean
Set the value.
set(int) - Method in interface com.celequest.api.type.ISQLNumeric
Set the value of this numeric with the specified integer.
set(double) - Method in interface com.celequest.api.type.ISQLNumeric
Set the value of this numeric with the specified double.
set(BigDecimal) - Method in interface com.celequest.api.type.ISQLNumeric
Set the value of this numeric with the specified decimal.
set(long) - Method in interface com.celequest.api.type.ISQLNumeric
Set the value of this numeric with the specified long.
set(Timestamp) - Method in interface com.celequest.api.type.ISQLTimestamp
Set the value.
set(ISQLValue) - Method in interface com.celequest.api.type.ISQLValue
Set the value of this type with the specified object.
set(String) - Method in interface com.celequest.api.type.ISQLValue
Set the value of this type with the specified string.
setLogger(IUDFunctionLogger) - Method in interface com.celequest.api.function.IUDFunction
Set the logger for this function.
setNull(boolean) - Method in interface com.celequest.api.type.ISQLValue
Sets the null value.
setPrecision(int) - Method in interface com.celequest.api.function.IUDFunctionWithVariableResultType.IDecimalResultTypeSetter
Sets the precision of a DECIMAL returned by a UDF.
setScale(int) - Method in interface com.celequest.api.function.IUDFunctionWithVariableResultType.IDecimalResultTypeSetter
Sets the scale of a DECIMAL returned by a UDF.
setSpecifiedMaxStrLength(int) - Method in interface com.celequest.api.function.IUDFunctionWithVariableResultType.IVarcharResultTypeSetter
Sets the maximum string length of a VARCHAR result to a UDF.
sign() - Method in interface com.celequest.api.type.ISQLNumeric
Returns an integer indicating the sign of this numeric.

T

trunc(int) - Method in interface com.celequest.api.type.ISQLNumeric
Changes this numeric to its value truncated to n places right of the decimal point.

A C D E F G I L M O R S T
Adobe LiveCycle Business Activity Monitoring ES API

Copyright © 2004-2007 Adobe Systems Incorporated. All rights reserved.
Copyright © 2002-2007 Celequest Corp. All Rights Reserved.