Searched defs:value (Results 1 - 25 of 6334) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/roles/
H A DmergeWithTarget.js26 * This script merges an attribute value with the target. Returns an object
27 * containing the new value for the attribute and (optionally) an updated
34 function mergeValues(target, name, value) {
36 for (var x = 0; x < value.length; x++) {
37 if (target[name].indexOf(value[x]) == -1) {
38 target[name].push(value[x]);
43 for (var key in value) {
44 obj[key] = value[key];
47 target[name] = value;
59 "value"
[all...]
H A DreplaceTarget.js26 * This script replaces an attribute value on the target. This operation makes use of the
29 * object containing the new value for the attribute and an updated attributesInfo object.
36 function mergeValues(target, name, value) {
38 for (var x = 0; x < value.length; x++) {
39 if (target[name].indexOf(value) == -1) {
40 target[name].push(value[x]);
45 for (var key in value) {
46 obj[key] = value[key];
49 target[name] = value;
54 // The value o
[all...]
/forgerock/opendj2/src/server/org/opends/server/api/
H A DAttributeValueDecoder.java38 * @param <T> Decode the attribute value to an object of this type.
48 * Decode the specified attribute value to an object of type T.
50 * @param value
51 * The attribute value.
52 * @return The decoded attribute value.
54 * If the value could not be decoded successfully.
56 T decode(AttributeValue value) throws DirectoryException; argument
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DAttributeValueDecoder.java39 * @param <T> Decode the attribute value to an object of this type.
49 * Decode the specified attribute value to an object of type T.
51 * @param value
52 * The attribute value.
53 * @return The decoded attribute value.
55 * If the value could not be decoded successfully.
57 T decode(AttributeValue value) throws DirectoryException; argument
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjdk/
H A DCSN.java31 String value; field in class:CSN
33 public CSN (String value) { argument
34 this.value = value;
39 if (this.value.equals(anotherCSN.value)) // same CSN value
42 Long i = Long.valueOf(this.value.substring(0,12),16 );
43 Long l = Long.valueOf(anotherCSN.value.substring(0,12),16 );
49 if (this.value
[all...]
/forgerock/opendj2/tests/staf-tests/shared/java/ldapjdk/
H A DCSN.java30 String value; field in class:CSN
32 public CSN (String value) { argument
33 this.value = value;
38 if (this.value.equals(anotherCSN.value)) // same CSN value
41 Long i = Long.valueOf(this.value.substring(0,12),16 );
42 Long l = Long.valueOf(anotherCSN.value.substring(0,12),16 );
48 if (this.value
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DAttributeValueDecoder.java39 * @param <T> Decode the attribute value to an object of this type.
49 * Decode the specified attribute value to an object of type T.
51 * @param value
52 * The attribute value.
53 * @return The decoded attribute value.
55 * If the value could not be decoded successfully.
57 T decode(AttributeValue value) throws DirectoryException; argument
/forgerock/opendj2.6.2/tests/staf-tests/shared/java/ldapjdk/
H A DCSN.java31 String value; field in class:CSN
33 public CSN (String value) { argument
34 this.value = value;
39 if (this.value.equals(anotherCSN.value)) // same CSN value
42 Long i = Long.valueOf(this.value.substring(0,12),16 );
43 Long l = Long.valueOf(anotherCSN.value.substring(0,12),16 );
49 if (this.value
[all...]
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/java/ldapjdk/
H A DCSN.java31 String value; field in class:CSN
33 public CSN (String value) { argument
34 this.value = value;
39 if (this.value.equals(anotherCSN.value)) // same CSN value
42 Long i = Long.valueOf(this.value.substring(0,12),16 );
43 Long l = Long.valueOf(anotherCSN.value.substring(0,12),16 );
49 if (this.value
[all...]
/forgerock/opendj2-hg/tests/staf-tests/shared/java/ldapjdk/
H A DCSN.java30 String value; field in class:CSN
32 public CSN (String value) { argument
33 this.value = value;
38 if (this.value.equals(anotherCSN.value)) // same CSN value
41 Long i = Long.valueOf(this.value.substring(0,12),16 );
42 Long l = Long.valueOf(anotherCSN.value.substring(0,12),16 );
48 if (this.value
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DAttributeValueDecoder.java38 * @param <T> Decode the attribute value to an object of this type.
48 * Decode the specified attribute value to an object of type T.
50 * @param value
51 * The attribute value.
52 * @return The decoded attribute value.
54 * If the value could not be decoded successfully.
56 T decode(AttributeValue value) throws DirectoryException; argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DAttributeValueDecoder.java39 * @param <T> Decode the attribute value to an object of this type.
49 * Decode the specified attribute value to an object of type T.
51 * @param value
52 * The attribute value.
53 * @return The decoded attribute value.
55 * If the value could not be decoded successfully.
57 T decode(AttributeValue value) throws DirectoryException; argument
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DToken.java34 * just a holder of name value pairs
43 public int value; field in class:Token
58 * @param value
59 * An int representing value of the token
61 public Token(String name, int value) { argument
63 this.value = value;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DConfigSource.java38 * Gets value array that represent the config service sources.
42 String[] value(); method in interface:ConfigSource
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/annotations/
H A DConsumes.java34 String value(); method in interface:Consumes
H A DPath.java34 String value(); method in interface:Path
H A DProduces.java34 String value(); method in interface:Produces
/forgerock/openam-v13/openam-tokens/src/main/java/org/forgerock/openam/tokens/
H A DType.java33 TokenType value(); method in interface:Type
/forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/felixgogo/
H A DMetaVar.java40 /** the value. */
41 String value(); method in interface:MetaVar
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DToken.java34 * just a holder of name value pairs
43 public int value; field in class:Token
58 * @param value
59 * An int representing value of the token
61 public Token(String name, int value) { argument
63 this.value = value;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DConfigSource.java38 * Gets value array that represent the config service sources.
42 String[] value(); method in interface:ConfigSource
/forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/annotations/
H A DConsumes.java34 String value(); method in interface:Consumes
H A DPath.java34 String value(); method in interface:Path
H A DProduces.java34 String value(); method in interface:Produces
/forgerock/openam/openam-tokens/src/main/java/org/forgerock/openam/tokens/
H A DType.java33 TokenType value(); method in interface:Type

Completed in 123 milliseconds

1234567891011>>