Searched defs:firstURL (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionServerConfig.java357 private static boolean isUrlPrefix(URL firstURL, URL secondURL) { argument
358 return firstURL != null
359 && firstURL.getProtocol().equalsIgnoreCase(secondURL.getProtocol())
360 && firstURL.getHost().equalsIgnoreCase(secondURL.getHost())
361 && firstURL.getPort() == secondURL.getPort()
362 && secondURL.getPath().startsWith(firstURL.getPath());
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionServerConfig.java365 private static boolean isUrlPrefix(URL firstURL, URL secondURL) { argument
366 return firstURL != null
367 && firstURL.getProtocol().equalsIgnoreCase(secondURL.getProtocol())
368 && firstURL.getHost().equalsIgnoreCase(secondURL.getHost())
369 && firstURL.getPort() == secondURL.getPort()
370 && secondURL.getPath().startsWith(firstURL.getPath());

Completed in 21 milliseconds