Searched refs:intValue (Results 26 - 50 of 543) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/controls/
H A DPersistentSearchChangeType.java64 private int intValue; field in class:PersistentSearchChangeType
70 * @param intValue The integer value associated with this change type.
72 private PersistentSearchChangeType(int intValue) argument
74 this.intValue = intValue;
84 public int intValue() method in class:PersistentSearchChangeType
86 return intValue;
100 switch (intValue)
120 * @param intValue The integer value to decode as a change type.
127 public static PersistentSearchChangeType valueOf(int intValue) argument
159 intToTypes(int intValue) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/controls/
H A DPersistentSearchChangeType.java79 private int intValue; field in class:PersistentSearchChangeType
87 * @param intValue The integer value associated with this change type.
89 private PersistentSearchChangeType(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:PersistentSearchChangeType
103 return intValue;
116 switch (intValue)
136 * @param intValue The integer value to decode as a change type.
143 public static PersistentSearchChangeType valueOf(int intValue) argument
175 intToTypes(int intValue) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/controls/
H A DPersistentSearchChangeType.java79 private int intValue; field in class:PersistentSearchChangeType
87 * @param intValue The integer value associated with this change type.
89 private PersistentSearchChangeType(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:PersistentSearchChangeType
103 return intValue;
116 switch (intValue)
136 * @param intValue The integer value to decode as a change type.
143 public static PersistentSearchChangeType valueOf(int intValue) argument
175 intToTypes(int intValue) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/controls/
H A DPersistentSearchChangeType.java64 private int intValue; field in class:PersistentSearchChangeType
70 * @param intValue The integer value associated with this change type.
72 private PersistentSearchChangeType(int intValue) argument
74 this.intValue = intValue;
84 public int intValue() method in class:PersistentSearchChangeType
86 return intValue;
100 switch (intValue)
120 * @param intValue The integer value to decode as a change type.
127 public static PersistentSearchChangeType valueOf(int intValue) argument
159 intToTypes(int intValue) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/controls/
H A DPersistentSearchChangeType.java64 private int intValue; field in class:PersistentSearchChangeType
70 * @param intValue The integer value associated with this change type.
72 private PersistentSearchChangeType(int intValue) argument
74 this.intValue = intValue;
84 public int intValue() method in class:PersistentSearchChangeType
86 return intValue;
100 switch (intValue)
120 * @param intValue The integer value to decode as a change type.
127 public static PersistentSearchChangeType valueOf(int intValue) argument
159 intToTypes(int intValue) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DResultStatus.java77 return intValue;
80 protected ResultStatus(String name, int intValue) { argument
82 setIntValue(intValue);
89 private void setIntValue(int intValue) { argument
90 this.intValue = intValue;
95 private int intValue; field in class:ResultStatus
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DResultStatus.java77 return intValue;
80 protected ResultStatus(String name, int intValue) { argument
82 setIntValue(intValue);
89 private void setIntValue(int intValue) { argument
90 this.intValue = intValue;
95 private int intValue; field in class:ResultStatus
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/service/
H A DLogType.java44 public int intValue; field in class:LogType
60 intValue = Integer.parseInt(pcdata);
H A DParameter.java62 paramIndex = ((ParamIndex)elems.elementAt(0)).intValue;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/service/
H A DLogType.java44 public int intValue; field in class:LogType
60 intValue = Integer.parseInt(pcdata);
H A DParameter.java62 paramIndex = ((ParamIndex)elems.elementAt(0)).intValue;
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java157 * @param intValue the value of the attribute
160 public static final byte[] toOctets(AttributeType type, int intValue) { argument
165 octets[2] = (byte) ((intValue >>> 24) & 0xFF);
166 octets[3] = (byte) ((intValue >>> 16) & 0xFF);
167 octets[4] = (byte) ((intValue >>> 8) & 0xFF);
168 octets[5] = (byte) (intValue & 0xFF);
198 * @return intValue the value of the attribute
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java157 * @param intValue the value of the attribute
160 public static final byte[] toOctets(AttributeType type, int intValue) { argument
165 octets[2] = (byte) ((intValue >>> 24) & 0xFF);
166 octets[3] = (byte) ((intValue >>> 16) & 0xFF);
167 octets[4] = (byte) ((intValue >>> 8) & 0xFF);
168 octets[5] = (byte) (intValue & 0xFF);
198 * @return intValue the value of the attribute
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/asn1/
H A DASN1OutputStreamWriter.java81 public ASN1Writer writeInteger(int intValue) throws IOException argument
83 return writeInteger(UNIVERSAL_INTEGER_TYPE, intValue);
89 public ASN1Writer writeInteger(byte type, int intValue) throws IOException argument
92 if ((intValue < 0 && ((intValue & 0xFFFFFF80) == 0xFFFFFF80)) ||
93 (intValue & 0x0000007F) == intValue)
96 out.write((byte) (intValue & 0xFF));
101 type, 1, intValue));
104 else if ((intValue <
298 writeEnumerated(int intValue) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/asn1/
H A DASN1OutputStreamWriter.java80 public ASN1Writer writeInteger(int intValue) throws IOException argument
82 return writeInteger(UNIVERSAL_INTEGER_TYPE, intValue);
88 public ASN1Writer writeInteger(byte type, int intValue) throws IOException argument
91 if ((intValue < 0 && ((intValue & 0xFFFFFF80) == 0xFFFFFF80)) ||
92 (intValue & 0x0000007F) == intValue)
95 out.write((byte) (intValue & 0xFF));
100 type, 1, intValue));
103 else if ((intValue <
297 writeEnumerated(int intValue) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/asn1/
H A DASN1OutputStreamWriter.java81 public ASN1Writer writeInteger(int intValue) throws IOException argument
83 return writeInteger(UNIVERSAL_INTEGER_TYPE, intValue);
89 public ASN1Writer writeInteger(byte type, int intValue) throws IOException argument
92 if ((intValue < 0 && ((intValue & 0xFFFFFF80) == 0xFFFFFF80)) ||
93 (intValue & 0x0000007F) == intValue)
96 out.write((byte) (intValue & 0xFF));
101 type, 1, intValue));
104 else if ((intValue <
298 writeEnumerated(int intValue) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/asn1/
H A DASN1OutputStreamWriter.java81 public ASN1Writer writeInteger(int intValue) throws IOException argument
83 return writeInteger(UNIVERSAL_INTEGER_TYPE, intValue);
89 public ASN1Writer writeInteger(byte type, int intValue) throws IOException argument
92 if ((intValue < 0 && ((intValue & 0xFFFFFF80) == 0xFFFFFF80)) ||
93 (intValue & 0x0000007F) == intValue)
96 out.write((byte) (intValue & 0xFF));
101 type, 1, intValue));
104 else if ((intValue <
298 writeEnumerated(int intValue) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/asn1/
H A DASN1OutputStreamWriter.java80 public ASN1Writer writeInteger(int intValue) throws IOException argument
82 return writeInteger(UNIVERSAL_INTEGER_TYPE, intValue);
88 public ASN1Writer writeInteger(byte type, int intValue) throws IOException argument
91 if ((intValue < 0 && ((intValue & 0xFFFFFF80) == 0xFFFFFF80)) ||
92 (intValue & 0x0000007F) == intValue)
95 out.write((byte) (intValue & 0xFF));
100 type, 1, intValue));
103 else if ((intValue <
297 writeEnumerated(int intValue) argument
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/util/
H A DConstrainedSelection.java86 protected ConstrainedSelection(String name, int intValue) { argument
88 setIntValue(intValue);
95 private void setIntValue(int intValue) { argument
96 _intValue = intValue;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DSearchControl.java75 public static final int SCOPE_ONE = SearchScope.SINGLE_LEVEL.intValue();
84 public static final int SCOPE_SUB = SearchScope.WHOLE_SUBTREE.intValue();
91 public static final int SCOPE_BASE = SearchScope.BASE_OBJECT.intValue();
218 return i.intValue();
241 return i.intValue();
268 return scope.intValue();
290 return scope.intValue();
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DSearchControl.java75 public static final int SCOPE_ONE = SearchScope.SINGLE_LEVEL.intValue();
84 public static final int SCOPE_SUB = SearchScope.WHOLE_SUBTREE.intValue();
91 public static final int SCOPE_BASE = SearchScope.BASE_OBJECT.intValue();
218 return i.intValue();
241 return i.intValue();
268 return scope.intValue();
290 return scope.intValue();
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/
H A DUserMappingMode.java140 private UserMappingMode(String name, int intValue) { argument
141 super(name, intValue);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/policy/
H A DAmWebPolicyResultStatus.java78 private AmWebPolicyResultStatus(String name, int intValue) { argument
79 super(name, intValue);
/forgerock/openam-v13/openam-authentication/openam-auth-membership/src/main/java/com/sun/identity/authentication/modules/membership/
H A DModuleState.java78 lookup.put(ls.intValue(), ls);
99 int intValue() { method in class:ModuleState
/forgerock/openam/openam-authentication/openam-auth-membership/src/main/java/com/sun/identity/authentication/modules/membership/
H A DModuleState.java78 lookup.put(ls.intValue(), ls);
99 int intValue() { method in class:ModuleState

Completed in 137 milliseconds

1234567891011>>