public final class LdapTransactionUtils
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
BIND_METHOD_NAME |
static java.lang.String |
MODIFY_ATTRIBUTES_METHOD_NAME |
static java.lang.String |
REBIND_METHOD_NAME |
static java.lang.String |
RENAME_METHOD_NAME |
static java.lang.String |
UNBIND_METHOD_NAME |
Modifier and Type | Method and Description |
---|---|
static javax.naming.Name |
getArgumentAsName(java.lang.Object arg)
Get the argument as a Name.
|
static javax.naming.Name |
getFirstArgumentAsName(java.lang.Object[] args)
Get the first parameter in the argument list as a Name.
|
static boolean |
isSupportedWriteTransactionOperation(java.lang.String methodName)
Check whether the supplied method is a method for which transactions is
supported (and which should be recorded for possible rollback later).
|
public static final java.lang.String REBIND_METHOD_NAME
public static final java.lang.String BIND_METHOD_NAME
public static final java.lang.String RENAME_METHOD_NAME
public static final java.lang.String UNBIND_METHOD_NAME
public static final java.lang.String MODIFY_ATTRIBUTES_METHOD_NAME
public static javax.naming.Name getFirstArgumentAsName(java.lang.Object[] args)
args
- arguments supplied to a ldap operation.public static javax.naming.Name getArgumentAsName(java.lang.Object arg)
arg
- an argument supplied to an Ldap operation.public static boolean isSupportedWriteTransactionOperation(java.lang.String methodName)
methodName
- name of the method to check.true
if this is a supported transaction operation,
false
otherwise.