Searched refs:mask (Results 1 - 25 of 141) sorted by relevance

123456

/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java45 * The net mask.
47 private byte[] mask = new byte[4]; field in class:FramedIPNetmaskAttribute
52 * is the most significant byte. The last is the least significant byte. So for a mask of 255.255.255.0 we would
65 this.mask = new FramedIPNetmaskAttribute(super.getOctets()).getMask();
76 mask[0] = octets[2];
77 mask[1] = octets[3];
78 mask[2] = octets[4];
79 mask[3] = octets[5];
83 * Get the mask.
85 * @return the mask
[all...]
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java45 * The net mask.
47 private byte[] mask = new byte[4]; field in class:FramedIPNetmaskAttribute
52 * is the most significant byte. The last is the least significant byte. So for a mask of 255.255.255.0 we would
65 this.mask = new FramedIPNetmaskAttribute(super.getOctets()).getMask();
76 mask[0] = octets[2];
77 mask[1] = octets[3];
78 mask[2] = octets[4];
79 mask[3] = octets[5];
83 * Get the mask.
85 * @return the mask
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DEnumRight.java131 * Returns bit mask associated with the specified right.
132 * @param right The right enumeration to return the mask for.
133 * @return The bit mask associated with the right.
136 int mask=ACI_NULL;
139 mask=ACI_READ;
142 mask=ACI_WRITE;
145 mask=ACI_ADD;
148 mask=ACI_DELETE;
151 mask=ACI_SEARCH;
154 mask
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DEnumRight.java131 * Returns bit mask associated with the specified right.
132 * @param right The right enumeration to return the mask for.
133 * @return The bit mask associated with the right.
136 int mask=ACI_NULL;
139 mask=ACI_READ;
142 mask=ACI_WRITE;
145 mask=ACI_ADD;
148 mask=ACI_DELETE;
151 mask=ACI_SEARCH;
154 mask
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DEnumRight.java131 * Returns bit mask associated with the specified right.
132 * @param right The right enumeration to return the mask for.
133 * @return The bit mask associated with the right.
136 int mask=ACI_NULL;
139 mask=ACI_READ;
142 mask=ACI_WRITE;
145 mask=ACI_ADD;
148 mask=ACI_DELETE;
151 mask=ACI_SEARCH;
154 mask
[all...]
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DEnumRight.java155 * Returns bit mask associated with the specified right.
156 * @param right The right enumeration to return the mask for.
157 * @return The bit mask associated with the right.
160 int mask=ACI_NULL;
163 mask=ACI_READ;
166 mask=ACI_WRITE;
169 mask=ACI_ADD;
172 mask=ACI_DELETE;
175 mask=ACI_SEARCH;
178 mask
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DEnumRight.java155 * Returns bit mask associated with the specified right.
156 * @param right The right enumeration to return the mask for.
157 * @return The bit mask associated with the right.
160 int mask=ACI_NULL;
163 mask=ACI_READ;
166 mask=ACI_WRITE;
169 mask=ACI_ADD;
172 mask=ACI_DELETE;
175 mask=ACI_SEARCH;
178 mask
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DEnumRight.java155 * Returns bit mask associated with the specified right.
156 * @param right The right enumeration to return the mask for.
157 * @return The bit mask associated with the right.
160 int mask=ACI_NULL;
163 mask=ACI_READ;
166 mask=ACI_WRITE;
169 mask=ACI_ADD;
172 mask=ACI_DELETE;
175 mask=ACI_SEARCH;
178 mask
[all...]
H A DTargAttrFilterList.java51 * The mask corresponding to the operation of this list (add or del).
53 private int mask; field in class:TargAttrFilterList
92 * @param mask The mask representing the operation.
96 public TargAttrFilterList(int mask, argument
98 this.mask=mask;
104 * @param mask The mask representing the operation.
110 public static TargAttrFilterList decode(int mask, Strin argument
203 hasMask(int mask) argument
[all...]
/forgerock/opendj2/src/messages/src/org/opends/messages/
H A DSeverity.java98 MASK_VALUE_MAP.put(c.mask, c);
121 * Obtains the <code>Severity</code> associated with a given mask
123 * @param mask for which a <code>Severity</code> is obtained.
124 * @return Severity associated with <code>mask</code>
126 static public Severity parseMask(int mask) { argument
127 Severity sev = MASK_VALUE_MAP.get(mask);
130 "No Severity defined with int value " + mask);
160 private final int mask; field in class:Severity
165 * Returns the mask associated with this <code>Severity</code>.
166 * @return mask fo
190 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java37 * used as a mask for bitwise operations.
182 MASK_VALUE_MAP.put(c.mask, c);
197 * Obtains the <code>Severity</code> associated with a given mask
199 * @param mask for which a <code>Severity</code> is obtained.
200 * @return Severity associated with <code>mask</code>
202 static public Category parseMask(int mask) { argument
203 return MASK_VALUE_MAP.get(mask);
206 private final int mask; field in class:Category
209 * Gets the mask value associated with this category.
210 * @return int mask valu
[all...]
/forgerock/opendj-b2.6/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java38 * used as a mask for bitwise operations.
183 MASK_VALUE_MAP.put(c.mask, c);
198 * Obtains the <code>Severity</code> associated with a given mask
200 * @param mask for which a <code>Severity</code> is obtained.
201 * @return Severity associated with <code>mask</code>
203 static public Category parseMask(int mask) { argument
204 return MASK_VALUE_MAP.get(mask);
207 private final int mask; field in class:Category
210 * Gets the mask value associated with this category.
211 * @return int mask valu
[all...]
/forgerock/opendj2.6.2/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java38 * used as a mask for bitwise operations.
183 MASK_VALUE_MAP.put(c.mask, c);
198 * Obtains the <code>Severity</code> associated with a given mask
200 * @param mask for which a <code>Severity</code> is obtained.
201 * @return Severity associated with <code>mask</code>
203 static public Category parseMask(int mask) { argument
204 return MASK_VALUE_MAP.get(mask);
207 private final int mask; field in class:Category
210 * Gets the mask value associated with this category.
211 * @return int mask valu
[all...]
/forgerock/opendj2-hg/src/messages/src/org/opends/messages/
H A DSeverity.java98 MASK_VALUE_MAP.put(c.mask, c);
121 * Obtains the <code>Severity</code> associated with a given mask
123 * @param mask for which a <code>Severity</code> is obtained.
124 * @return Severity associated with <code>mask</code>
126 static public Severity parseMask(int mask) { argument
127 Severity sev = MASK_VALUE_MAP.get(mask);
130 "No Severity defined with int value " + mask);
160 private final int mask; field in class:Severity
165 * Returns the mask associated with this <code>Severity</code>.
166 * @return mask fo
190 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java37 * used as a mask for bitwise operations.
182 MASK_VALUE_MAP.put(c.mask, c);
197 * Obtains the <code>Severity</code> associated with a given mask
199 * @param mask for which a <code>Severity</code> is obtained.
200 * @return Severity associated with <code>mask</code>
202 static public Category parseMask(int mask) { argument
203 return MASK_VALUE_MAP.get(mask);
206 private final int mask; field in class:Category
209 * Gets the mask value associated with this category.
210 * @return int mask valu
[all...]
/forgerock/opendj2-jel-hg/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java38 * used as a mask for bitwise operations.
183 MASK_VALUE_MAP.put(c.mask, c);
198 * Obtains the <code>Severity</code> associated with a given mask
200 * @param mask for which a <code>Severity</code> is obtained.
201 * @return Severity associated with <code>mask</code>
203 static public Category parseMask(int mask) { argument
204 return MASK_VALUE_MAP.get(mask);
207 private final int mask; field in class:Category
210 * Gets the mask value associated with this category.
211 * @return int mask valu
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/messages/src/org/opends/messages/
H A DCategory.java37 * used as a mask for bitwise operations.
182 MASK_VALUE_MAP.put(c.mask, c);
197 * Obtains the <code>Severity</code> associated with a given mask
199 * @param mask for which a <code>Severity</code> is obtained.
200 * @return Severity associated with <code>mask</code>
202 public static Category parseMask(int mask) { argument
203 return MASK_VALUE_MAP.get(mask);
206 private final int mask; field in class:Category
209 * Gets the mask value associated with this category.
210 * @return int mask valu
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java92 public void testValidDecode(String mask) argument
94 AddressMask.decode(mask);
98 public void testInvalidDecode(String mask) argument
101 AddressMask.decode(mask);
106 "Invalid mask <" + mask + "> threw wrong exception type.");
110 "Invalid mask <" + mask + "> did not throw an exception.");
257 "Invalid mask <" + rules[i] +
338 public void testValid6Decode(String mask) argument
344 testInvalid6Decode(String mask) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java91 public void testValidDecode(String mask) argument
93 AddressMask.decode(mask);
97 public void testInvalidDecode(String mask) argument
100 AddressMask.decode(mask);
105 "Invalid mask <" + mask + "> threw wrong exception type.");
109 "Invalid mask <" + mask + "> did not throw an exception.");
256 "Invalid mask <" + rules[i] +
337 public void testValid6Decode(String mask) argument
343 testInvalid6Decode(String mask) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java92 public void testValidDecode(String mask) argument
94 AddressMask.decode(mask);
98 public void testInvalidDecode(String mask) argument
101 AddressMask.decode(mask);
106 "Invalid mask <" + mask + "> threw wrong exception type.");
110 "Invalid mask <" + mask + "> did not throw an exception.");
257 "Invalid mask <" + rules[i] +
338 public void testValid6Decode(String mask) argument
344 testInvalid6Decode(String mask) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java91 public void testValidDecode(String mask) argument
93 AddressMask.decode(mask);
97 public void testInvalidDecode(String mask) argument
100 AddressMask.decode(mask);
105 "Invalid mask <" + mask + "> threw wrong exception type.");
109 "Invalid mask <" + mask + "> did not throw an exception.");
256 "Invalid mask <" + rules[i] +
337 public void testValid6Decode(String mask) argument
343 testInvalid6Decode(String mask) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java92 public void testValidDecode(String mask) argument
94 AddressMask.decode(mask);
98 public void testInvalidDecode(String mask) argument
101 AddressMask.decode(mask);
106 "Invalid mask <" + mask + "> threw wrong exception type.");
110 "Invalid mask <" + mask + "> did not throw an exception.");
257 "Invalid mask <" + rules[i] +
338 public void testValid6Decode(String mask) argument
344 testInvalid6Decode(String mask) argument
[all...]

Completed in 153 milliseconds

123456