org.jboss.soa.esb.listeners
Enum SqlTablePoller.TABLE_ATT
java.lang.Object
java.lang.Enum<SqlTablePoller.TABLE_ATT>
org.jboss.soa.esb.listeners.SqlTablePoller.TABLE_ATT
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SqlTablePoller.TABLE_ATT>
- Enclosing class:
- SqlTablePoller
public static enum SqlTablePoller.TABLE_ATT
- extends java.lang.Enum<SqlTablePoller.TABLE_ATT>
Mandatory attributes needed for SqlTablePoller
1) Table name
2) Comma separated list of fields needed in the ResultSet
3) Comma separated list of fields that constitute a unique ID of the working row
all fields in this list MUST also be in the "selectFields" list
these fields will be used in the "where" clause of update statements
4) Name of table field used as indicator/semaphore to avoid concurrent update
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
tableName
public static final SqlTablePoller.TABLE_ATT tableName
selectFields
public static final SqlTablePoller.TABLE_ATT selectFields
keyFields
public static final SqlTablePoller.TABLE_ATT keyFields
inProcessField
public static final SqlTablePoller.TABLE_ATT inProcessField
values
public static final SqlTablePoller.TABLE_ATT[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(SqlTablePoller.TABLE_ATT c : SqlTablePoller.TABLE_ATT.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static SqlTablePoller.TABLE_ATT valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name