Package com.uc4.api.objects
Class DatabaseEventSettings
- java.lang.Object
-
- com.uc4.api.objects.DatabaseEventSettings
-
public class DatabaseEventSettings extends java.lang.ObjectThis class provides acccess to Database Event settings.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDatabaseEventSettings(com.uc4.util.XMLDocument doc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetOperator()Returns the operator character.voidsetOperator(char operator)Sets the operator which should be used to convert the data sources.protected voidstore(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request)DatabaseEventValuevalue1()Provides access to the definition of value 1 for this database event.DatabaseEventValuevalue2()Provides access to the definition of value 2 for this database event.
-
-
-
Method Detail
-
store
protected void store(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request)
-
getOperator
public char getOperator()
Returns the operator character. Possible return values are:- G ... Greater
- L ... Lower
- E ... Equal
- N ... Not
- F ... Greater or Equal
- K ... Lower or Equal
- P ... Pattern
- Returns:
- Operator
-
setOperator
public void setOperator(char operator)
Sets the operator which should be used to convert the data sources. Valid parameter values are:- G ... Greater
- L ... Lower
- E ... Equal
- N ... Not
- F ... Greater or Equal
- K ... Lower or Equal
- P ... Pattern
- Parameters:
operator- Operator
-
value1
public DatabaseEventValue value1()
Provides access to the definition of value 1 for this database event.- Returns:
- Value 1
-
value2
public DatabaseEventValue value2()
Provides access to the definition of value 2 for this database event.- Returns:
- Value 2
-
-