Searched refs:url (Results 1 - 25 of 1333) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/entitlement/util/
H A DRelaxedURLTest.java32 RelaxedURL url = new RelaxedURL("http://www.test.com:123/hello?world=456");
33 assertEquals("http", url.getProtocol());
34 assertEquals("www.test.com", url.getHostname());
35 assertEquals("123", url.getPort());
36 assertEquals("/hello", url.getPath());
37 assertEquals("world=456", url.getQuery());
38 assertEquals("http://www.test.com:123/hello?world=456", url.toString());
40 url = new RelaxedURL("http://www.test.com/");
41 assertEquals("http", url.getProtocol());
42 assertEquals("www.test.com", url
[all...]
/forgerock/openam/openam-core/src/test/java/com/sun/identity/entitlement/util/
H A DRelaxedURLTest.java32 RelaxedURL url = new RelaxedURL("http://www.test.com:123/hello?world=456");
33 assertEquals("http", url.getProtocol());
34 assertEquals("www.test.com", url.getHostname());
35 assertEquals("123", url.getPort());
36 assertEquals("/hello", url.getPath());
37 assertEquals("world=456", url.getQuery());
38 assertEquals("http://www.test.com:123/hello?world=456", url.toString());
40 url = new RelaxedURL("http://www.test.com/");
41 assertEquals("http", url.getProtocol());
42 assertEquals("www.test.com", url
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/config/routes/
H A DCommonIDMRoutesConfig.js25 url: "change_password/",
30 url: "authenticationUnavailable/"
/forgerock/openam-v13/openam-ldap-utils/src/test/java/org/forgerock/openam/ldap/
H A DLDAPURLParsingTest.java25 LDAPURL url = LDAPURL.valueOf("localhost:1389");
26 assertThat(url.getPort()).isEqualTo(1389);
27 assertThat(url.getHost()).isEqualTo("localhost");
28 assertThat(url.isSSL()).isNull();
32 LDAPURL url = LDAPURL.valueOf("localhost");
33 assertThat(url.getPort()).isEqualTo(389);
34 assertThat(url.getHost()).isEqualTo("localhost");
38 LDAPURL url = LDAPURL.valueOf("localhost:abc");
39 assertThat(url.getPort()).isEqualTo(389);
40 assertThat(url
[all...]
/forgerock/openam/openam-ldap-utils/src/test/java/org/forgerock/openam/ldap/
H A DLDAPURLParsingTest.java25 LDAPURL url = LDAPURL.valueOf("localhost:1389");
26 assertThat(url.getPort()).isEqualTo(1389);
27 assertThat(url.getHost()).isEqualTo("localhost");
28 assertThat(url.isSSL()).isNull();
32 LDAPURL url = LDAPURL.valueOf("localhost");
33 assertThat(url.getPort()).isEqualTo(389);
34 assertThat(url.getHost()).isEqualTo("localhost");
38 LDAPURL url = LDAPURL.valueOf("localhost:abc");
39 assertThat(url.getPort()).isEqualTo(389);
40 assertThat(url
[all...]
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java44 private LDAPURL url; field in class:UserDNTypeURL
51 * @param url The URL itself from the ACI "userdn" string expression.
53 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
54 this.url=url;
70 return this.url;
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java45 private LDAPURL url; field in class:UserDNTypeURL
52 * @param url The URL itself from the ACI "userdn" string expression.
54 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
55 this.url=url;
71 return this.url;
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java45 private LDAPURL url; field in class:UserDNTypeURL
52 * @param url The URL itself from the ACI "userdn" string expression.
54 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
55 this.url=url;
71 return this.url;
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java44 private LDAPURL url; field in class:UserDNTypeURL
51 * @param url The URL itself from the ACI "userdn" string expression.
53 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
54 this.url=url;
70 return this.url;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java45 private LDAPURL url; field in class:UserDNTypeURL
52 * @param url The URL itself from the ACI "userdn" string expression.
54 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
55 this.url=url;
71 return this.url;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DUserDNTypeURL.java41 private LDAPURL url; field in class:UserDNTypeURL
48 * @param url The URL itself from the ACI "userdn" string expression.
50 UserDNTypeURL(EnumUserDNType dnType, LDAPURL url) { argument
51 this.url=url;
67 return this.url;
/forgerock/openam-v13/openam-server-only/src/main/resources/
H A Dcore.conf29 naming.url=HTTP://CORE:PORT/CommRequestServlet
30 notification.url=HTTP://CORE:PORT/CommNotificationServlet
31 sessionService.url=HTTP://CORE:PORT/sessionServiceURL
32 sessionNotification.url=HTTP://CORE:PORT/SessionNotificationHandler
/forgerock/openam/openam-server-only/src/main/resources/
H A Dcore.conf29 naming.url=HTTP://CORE:PORT/CommRequestServlet
30 notification.url=HTTP://CORE:PORT/CommNotificationServlet
31 sessionService.url=HTTP://CORE:PORT/sessionServiceURL
32 sessionNotification.url=HTTP://CORE:PORT/SessionNotificationHandler
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/url/
H A Dpackage-info.java22 * the AuthTargetMapping for the rest-sts instance, and returns the url defining the authN target for the specific token
25 package org.forgerock.openam.sts.token.validator.url
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/config/routes/
H A DAMRoutesConfig.js21 url: /continuePasswordReset(\/[^\&]*)(\&.+)?/,
29 url: /continueRegister(\/[^\&]*)(\&.+)?/,
38 url: "confirmLogin/",
44 url: "dashboard/",
51 url: "oauth2/tokens",
56 url: /loggedOut([^\&]+)?(&.+)?/,
63 url: /failedLogin([^\&]+)?(&.+)?/,
70 url: /sessionExpired([^\&]+)?(&.+)?/,
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/url/
H A Dpackage-info.java22 * the AuthTargetMapping for the rest-sts instance, and returns the url defining the authN target for the specific token
25 package org.forgerock.openam.sts.token.validator.url
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/config/routes/
H A DAMRoutesConfig.js21 url: /continuePasswordReset(\/[^&]*)(&.+)?/,
29 url: /continueRegister(\/[^&]*)(&.+)?/,
38 url: "confirmLogin/",
44 url: "dashboard/",
51 url: "oauth2/tokens",
56 url: /loggedOut([^&]+)?(&.+)?/,
63 url: /failedLogin([^&]+)?(&.+)?/,
70 url: /sessionExpired([^&]+)?(&.+)?/,
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/config/routes/
H A DAdminRoutesConfig.js26 url: "dashboard/"
31 url: "selfservice/userregistration/"
36 url: "selfservice/passwordreset/"
41 url: "selfservice/forgotUsername/"
46 url: "connectors/"
52 url: /^connectors\/edit\/(.+?)\/(.*)$/,
58 url: "connectors/add/"
63 url: "managed/"
68 url: /^managed\/edit\/(.+)\/$/,
74 url
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserException.java41 private String url; field in class:WebBrowserException
45 * @param url the url that we were trying to display.
49 public WebBrowserException(String url, Message msg, Throwable rootCause) argument
52 this.url = url;
56 * Returns the url that we were trying to display when the exception occurred.
57 * @return the url that we were trying to display when the exception occurred.
61 return this.url;
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserException.java42 private String url; field in class:WebBrowserException
46 * @param url the url that we were trying to display.
50 public WebBrowserException(String url, Message msg, Throwable rootCause) argument
53 this.url = url;
57 * Returns the url that we were trying to display when the exception occurred.
58 * @return the url that we were trying to display when the exception occurred.
62 return this.url;
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserException.java42 private String url; field in class:WebBrowserException
46 * @param url the url that we were trying to display.
50 public WebBrowserException(String url, Message msg, Throwable rootCause) argument
53 this.url = url;
57 * Returns the url that we were trying to display when the exception occurred.
58 * @return the url that we were trying to display when the exception occurred.
62 return this.url;
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserException.java41 private String url; field in class:WebBrowserException
45 * @param url the url that we were trying to display.
49 public WebBrowserException(String url, Message msg, Throwable rootCause) argument
52 this.url = url;
56 * Returns the url that we were trying to display when the exception occurred.
57 * @return the url that we were trying to display when the exception occurred.
61 return this.url;
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserException.java42 private String url; field in class:WebBrowserException
46 * @param url the url that we were trying to display.
50 public WebBrowserException(String url, Message msg, Throwable rootCause) argument
53 this.url = url;
57 * Returns the url that we were trying to display when the exception occurred.
58 * @return the url that we were trying to display when the exception occurred.
62 return this.url;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/
H A DWebBrowserException.java42 private String url; field in class:WebBrowserException
46 * @param url the url that we were trying to display.
50 public WebBrowserException(String url, LocalizableMessage msg, Throwable rootCause) argument
53 this.url = url;
57 * Returns the url that we were trying to display when the exception occurred.
58 * @return the url that we were trying to display when the exception occurred.
62 return this.url;
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/
H A DNormalizedURL.java46 URL url = null;
49 url = new URL(strURL);
54 String protocol = url.getProtocol();
55 String host = url.getHost();
56 String path = url.getPath();
57 int port = url.getPort();

Completed in 207 milliseconds

1234567891011>>