Searched refs:END_IP (Results 1 - 22 of 22) sorted by relevance

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DConditionConstants.java376 * should also be defined for {@code END_IP}.</p>
403 * that conforms to the pattern described here. If a value is defined for {@code END_IP}, a value should also be
425 public static final String END_IP = "endIp"; field in class:ConditionConstants
H A DIPv6Condition.java61 @JsonProperty(END_IP) String endIp,
H A DIPvXCondition.java41 import static org.forgerock.openam.entitlement.conditions.environment.ConditionConstants.END_IP;
136 String ipEnd = jo.has(END_IP) ? jo.getString(END_IP) : null;
184 debugWarning("Validation: {0} is before {1}", END_IP, START_IP);
191 debugWarning("Validation: Should define value for {1}, as value is defined for {0}", START_IP, END_IP);
192 throw new EntitlementException(PAIR_PROPERTY_NOT_DEFINED, new String[]{START_IP, END_IP});
195 debugWarning("Validation: Should define value for {1}, as value is defined for {0}", END_IP, START_IP);
196 throw new EntitlementException(PAIR_PROPERTY_NOT_DEFINED, new String[]{END_IP, START_IP});
267 new String[]{IP_RANGE, DNS_NAME, START_IP, END_IP});
400 * @see ConditionConstants#END_IP
[all...]
H A DIPv4Condition.java63 @JsonProperty(END_IP) String endIp,
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DConditionConstants.java376 * should also be defined for {@code END_IP}.</p>
403 * that conforms to the pattern described here. If a value is defined for {@code END_IP}, a value should also be
425 public static final String END_IP = "endIp"; field in class:ConditionConstants
H A DIPv6Condition.java61 @JsonProperty(END_IP) String endIp,
H A DIPvXCondition.java41 import static org.forgerock.openam.entitlement.conditions.environment.ConditionConstants.END_IP;
136 String ipEnd = jo.has(END_IP) ? jo.getString(END_IP) : null;
184 debugWarning("Validation: {0} is before {1}", END_IP, START_IP);
191 debugWarning("Validation: Should define value for {1}, as value is defined for {0}", START_IP, END_IP);
192 throw new EntitlementException(PAIR_PROPERTY_NOT_DEFINED, new String[]{START_IP, END_IP});
195 debugWarning("Validation: Should define value for {1}, as value is defined for {0}", END_IP, START_IP);
196 throw new EntitlementException(PAIR_PROPERTY_NOT_DEFINED, new String[]{END_IP, START_IP});
267 new String[]{IP_RANGE, DNS_NAME, START_IP, END_IP});
400 * @see ConditionConstants#END_IP
[all...]
H A DIPv4Condition.java63 @JsonProperty(END_IP) String endIp,
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java80 propertyNames.add(END_IP);
145 * START_IP, END_IP, IP_RANGE and DNS_NAME.
157 * @see #END_IP
213 * @see #END_IP
287 * @see #END_IP
314 && !START_IP.equals(key) && !END_IP.equals(key) && !IP_VERSION.equals(key) ) {
335 // validate START_IP and END_IP
337 Set endIpSet = (Set) properties.get(END_IP);
340 String args[] = { START_IP, END_IP};
384 * validates if the value of property END_IP
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java80 propertyNames.add(END_IP);
145 * START_IP, END_IP, IP_RANGE and DNS_NAME.
157 * @see #END_IP
213 * @see #END_IP
287 * @see #END_IP
314 && !START_IP.equals(key) && !END_IP.equals(key) && !IP_VERSION.equals(key) ) {
335 // validate START_IP and END_IP
337 Set endIpSet = (Set) properties.get(END_IP);
340 String args[] = { START_IP, END_IP};
384 * validates if the value of property END_IP
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4Condition.java101 propertyNames.add(END_IP);
166 * START_IP, END_IP, IP_RANGE and DNS_NAME.
178 * @see #END_IP
234 * @see #END_IP
307 * @see #END_IP
334 && !START_IP.equals(key) && !END_IP.equals(key) && !IP_VERSION.equals(key) ) {
355 // validate START_IP and END_IP
357 Set endIpSet = (Set) properties.get(END_IP);
360 String args[] = { START_IP, END_IP};
405 * validates if the value of property END_IP
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4Condition.java101 propertyNames.add(END_IP);
166 * START_IP, END_IP, IP_RANGE and DNS_NAME.
178 * @see #END_IP
234 * @see #END_IP
307 * @see #END_IP
334 && !START_IP.equals(key) && !END_IP.equals(key) && !IP_VERSION.equals(key) ) {
355 // validate START_IP and END_IP
357 Set endIpSet = (Set) properties.get(END_IP);
360 String args[] = { START_IP, END_IP};
405 * validates if the value of property END_IP
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DCondition.java269 * defined for START_IP, a value should also be defined for END_IP.
298 * defined for END_IP, a value should also be defined for START_IP.
320 public static final String END_IP = "EndIp"; field in interface:Condition
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DCondition.java269 * defined for START_IP, a value should also be defined for END_IP.
298 * defined for END_IP, a value should also be defined for START_IP.
320 public static final String END_IP = "EndIp"; field in interface:Condition
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DAndConditionEvalTest.java59 private static final String END_IP = "200.200.200.200"; field in class:AndConditionEvalTest
80 ipc.setStartIpAndEndIp(START_IP, END_IP);
172 if (!adv.equals(REQUEST_IP + "=" + START_IP + "-" + END_IP)
H A DOrConditionEvalTest.java59 private static final String END_IP = "200.200.200.200"; field in class:OrConditionEvalTest
80 ipc.setStartIpAndEndIp(START_IP, END_IP);
172 if (!adv.equals(REQUEST_IP + "=" + START_IP + "-" + END_IP)
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DAndConditionEvalTest.java55 private static final String END_IP = "200.200.200.200"; field in class:AndConditionEvalTest
75 ipc.setStartIpAndEndIp(START_IP, END_IP);
167 if (!adv.equals(REQUEST_IP + "=" + START_IP + "-" + END_IP)
H A DOrConditionEvalTest.java55 private static final String END_IP = "200.200.200.200"; field in class:OrConditionEvalTest
75 ipc.setStartIpAndEndIp(START_IP, END_IP);
167 if (!adv.equals(REQUEST_IP + "=" + START_IP + "-" + END_IP)
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DIPCondition.java81 propertyNames.add(END_IP);
154 * START_IP, END_IP, IP_RANGE and DNS_NAME.
166 * @see #END_IP
238 * @see #END_IP
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DIPCondition.java81 propertyNames.add(END_IP);
154 * START_IP, END_IP, IP_RANGE and DNS_NAME.
166 * @see #END_IP
238 * @see #END_IP
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DPolicyConditionUpgradeMap.java298 String endIp = getValue(properties.get(Condition.END_IP));
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DPolicyConditionUpgradeMap.java299 String endIp = getValue(properties.get(Condition.END_IP));

Completed in 242 milliseconds