Searched defs:startIp (Results 1 - 12 of 12) sorted by relevance

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DIPv4Condition.java62 public IPv4Condition(@JsonProperty(START_IP) String startIp, argument
68 startIp, endIp, ipRange, dnsName);
H A DIPv6Condition.java60 public IPv6Condition(@JsonProperty(START_IP) String startIp, argument
66 startIp, endIp, ipRange, dnsName);
H A DIPvXCondition.java68 private T startIp; field in class:IPvXCondition
77 this.startIp = initialStartIp;
88 String startIp, String endIp, List<String> ipRange, List<String> dnsName)
93 if (startIp != null || endIp != null) {
94 setStartIpAndEndIp(startIp, endIp);
176 public void setStartIpAndEndIp(String startIp, String endIp) throws EntitlementException { argument
178 T startIpValue = startIp == null ? initialStartIp : stringToIp(startIp);
183 if (startIp.compareTo(endIp) > 0) {
200 this.startIpString = startIp;
87 IPvXCondition(Debug debug, T initialStartIp, T initialEndIp, IPVersion version, String startIp, String endIp, List<String> ipRange, List<String> dnsName) argument
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DIPv4Condition.java62 public IPv4Condition(@JsonProperty(START_IP) String startIp, argument
68 startIp, endIp, ipRange, dnsName);
H A DIPv6Condition.java60 public IPv6Condition(@JsonProperty(START_IP) String startIp, argument
66 startIp, endIp, ipRange, dnsName);
H A DIPvXCondition.java68 private T startIp; field in class:IPvXCondition
77 this.startIp = initialStartIp;
88 String startIp, String endIp, List<String> ipRange, List<String> dnsName)
93 if (startIp != null || endIp != null) {
94 setStartIpAndEndIp(startIp, endIp);
176 public void setStartIpAndEndIp(String startIp, String endIp) throws EntitlementException { argument
178 T startIpValue = startIp == null ? initialStartIp : stringToIp(startIp);
200 this.startIpString = startIp;
201 this.startIp
87 IPvXCondition(Debug debug, T initialStartIp, T initialEndIp, IPVersion version, String startIp, String endIp, List<String> ipRange, List<String> dnsName) argument
[all...]
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DXACMLExportTest.java76 private static final String startIp = "100.100.100.100"; field in class:XACMLExportTest
122 String startIp = "100.100.100.100";
125 ipc.setStartIpAndEndIp(startIp, endIp);
H A DPrivilegeManagerTest.java69 private static final String startIp = "100.100.100.100"; field in class:PrivilegeManagerTest
190 ipc.setStartIpAndEndIp(startIp, endIp);
285 if (!ipc1.getStartIp().equals(startIp)) {
288 + "READ startIp "
289 + " does not equal set startIp");
331 if (!ipc1.getStartIp().equals(startIp)) {
334 + "READ startIp "
335 + " does not equal set startIp");
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DXACMLExportTest.java72 private static final String startIp = "100.100.100.100"; field in class:XACMLExportTest
117 String startIp = "100.100.100.100";
120 ipc.setStartIpAndEndIp(startIp, endIp);
H A DPrivilegeManagerTest.java69 private static final String startIp = "100.100.100.100"; field in class:PrivilegeManagerTest
189 ipc.setStartIpAndEndIp(startIp, endIp);
284 if (!ipc1.getStartIp().equals(startIp)) {
287 + "READ startIp "
288 + " does not equal set startIp");
330 if (!ipc1.getStartIp().equals(startIp)) {
333 + "READ startIp "
334 + " does not equal set startIp");
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4Condition.java93 private long startIp = Long.MAX_VALUE; field in class:IPv4Condition
392 String startIp = st.nextToken();
393 String endIp = startIp;
397 ipList.add(new Long(stringToIp(startIp)));
412 if ( startIp == Long.MAX_VALUE ) {
431 if (endIp < startIp) {
454 startIp = stringToIp(startIpString);
542 long startIp = ((Long)ipValues.next()).longValue();
545 if ( (requestIp >= startIp) && ( requestIp <= endIp) ) {
551 if ( (requestIp >= startIp)
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4Condition.java93 private long startIp = Long.MAX_VALUE; field in class:IPv4Condition
392 String startIp = st.nextToken();
393 String endIp = startIp;
397 ipList.add(new Long(stringToIp(startIp)));
412 if ( startIp == Long.MAX_VALUE ) {
431 if (endIp < startIp) {
454 startIp = stringToIp(startIpString);
542 long startIp = ((Long)ipValues.next()).longValue();
545 if ( (requestIp >= startIp) && ( requestIp <= endIp) ) {
551 if ( (requestIp >= startIp)
[all...]

Completed in 44 milliseconds