public LDAPArgument(String name,
String value,
String opcode) {
setProperty(new StringProperty(ARG_NAME, name));
setProperty(new StringProperty(VALUE, value));
setProperty(new StringProperty(OPCODE, opcode));
}
Create a new Argument with the specified name and value, and no metadata. Parameters:
name -
the argument name
value -
the argument value
|
public LDAPArgument(String name,
String value,
String opcode,
String metadata) {
setProperty(new StringProperty(ARG_NAME, name));
setProperty(new StringProperty(VALUE, value));
setProperty(new StringProperty(OPCODE, opcode));
setProperty(new StringProperty(METADATA, metadata));
}
Create a new Argument with the specified name, value, and metadata. Parameters:
name -
the argument name
value -
the argument value
metadata -
the argument metadata
|