Searched refs:URI (Results 76 - 100 of 257) sorted by relevance

1234567891011

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/common/
H A DXACMLSDKUtils.java42 import java.net.URI;
123 public static Attribute createAttribute(List values, URI attributeId,
124 URI dataType, String issuer) throws XACMLException
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/resources/
H A DResourceSetDescription.java21 import java.net.URI;
153 public URI getUri() {
180 public URI getIconUri() {
/forgerock/openam-v13/openam-oauth2-common/openid-connect-restlet/src/main/java/org/forgerock/openidconnect/restlet/
H A DEndSession.java46 import java.net.URI;
128 URI requestedUri = URI.create(redirectUri);
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DBundleHandler.java25 import java.net.URI;
89 return Paths.get(new URI(bundle.getLocation()).getPath());
108 * @param newBundlePath URI to the new @{Bundle}
136 return Paths.get(new URI(path.toUri().toString().concat(archiveExtension)));
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/restlet/
H A DEndSession.java46 import java.net.URI;
128 URI requestedUri = URI.create(redirectUri);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/oauth2/
H A DResourceSetDescription.java23 import java.net.URI;
156 public URI getUri() {
183 public URI getIconUri() {
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/services/baseurl/
H A DBaseURLProvider.java20 import java.net.URI;
101 Realm dnsRealm = Realm.of(URI.create(request.getRequestURI()).getHost());
120 Realm dnsRealm = Realm.of(URI.create(context.asContext(HttpContext.class).getPath()).getHost());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/common/
H A DXACMLSDKUtils.java42 import java.net.URI;
123 public static Attribute createAttribute(List values, URI attributeId,
124 URI dataType, String issuer) throws XACMLException
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/resources/
H A DResourceSetDescriptionValidator.java71 if (!description.get(OAuth2Constants.ResourceSets.URI).isNull()) {
73 description.get(OAuth2Constants.ResourceSets.URI).asURI();
76 + "URI.");
109 + "valid URI.");
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/resources/
H A DResourceSetDescriptionValidator.java72 if (!description.get(OAuth2Constants.ResourceSets.URI).isNull()) {
74 description.get(OAuth2Constants.ResourceSets.URI).as(uri());
77 + "URI.");
110 + "valid URI.");
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorAppRegistrationURIBuilder.java22 import java.net.URI;
49 * @param id The AMIdentity to be referred to in the URI. Must not be null.
71 * Obtain a URI for registering an OATH device with an OATH authentication module.
75 * @return The URI.
87 * Obtain a URI for registering an OATH device with an OATH authentication module.
92 * @return The URI.
113 appRegistrationUri = new URI("otpauth",
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/
H A DConsumerRequest.java35 import java.net.URI;
89 * <LI>icon - the service consumer's URI for its icon (MUST be unique).</LI>
90 * <LI>service - the service consumer's URI for its service</LI>
102 * The location URI is set to the newly created OAuth consumer key.
191 URI loc = URI.create(baseUri + PathDefs.CONSUMERS_PATH +
200 return Response.created(URI.create(cons.getConsKey())).entity(resp)
/forgerock/openidm-v4/openidm-provisioner-openicf/src/test/java/org/forgerock/openidm/provisioner/openicf/impl/
H A DConnectorInfoProviderServiceTest.java26 import java.net.URI;
154 URI xsdIcfFilePath = xmlRoot.toURI().resolve("resource-schema-1.xsd");
157 URI xsdFilePath = xmlRoot.toURI().resolve("ef2bc95b-76e0-48e2-86d6-4d4f44d4e4a4.xsd");
160 URI xmlFilePath = xmlRoot.toURI().resolve("data.xml");
/forgerock/openam-v13/openam-oauth2/src/test/java/org/forgerock/openam/oauth2/
H A DOpenAMResourceOwnerSessionValidatorTest.java27 import java.net.URI;
220 URI loginUri = null;
246 URI loginUri = null;
265 URI loginUri = null;
286 URI loginUri = null;
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthProblemException.java27 import java.net.URI;
118 "The provided access grant is invalid, expired, or revoked (e.g. invalid assertion, expired authorization token, bad end-user password credentials, or mismatching authorization code and redirection URI).",
123 "The redirection URI provided does not match a pre-registered value.", "", 400),
163 private URI redirectTargetPattern;
181 this.redirectTargetPattern = null != redirect ? URI.create(redirect) : null;
226 public OAuthProblemException redirectUri(URI redirectTargetPattern) {
275 public URI getRedirectUri() {
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaSettingsImpl.java22 import java.net.URI;
174 public Set<URI> getSupportedUmaProfiles() throws ServerException {
175 Set<URI> supportedProfiles = new HashSet<URI>();
177 supportedProfiles.add(URI.create(profile));
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthProblemException.java19 import java.net.URI;
110 "The provided access grant is invalid, expired, or revoked (e.g. invalid assertion, expired authorization token, bad end-user password credentials, or mismatching authorization code and redirection URI).",
115 "The redirection URI provided does not match a pre-registered value.", "", 400),
155 private URI redirectTargetPattern;
173 this.redirectTargetPattern = null != redirect ? URI.create(redirect) : null;
218 public OAuthProblemException redirectUri(URI redirectTargetPattern) {
267 public URI getRedirectUri() {
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/
H A DResourceOwnerSessionValidatorTest.java27 import java.net.URI;
221 URI loginUri = null;
247 URI loginUri = null;
266 URI loginUri = null;
287 URI loginUri = null;
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/rest/
H A DRealmRoutingFactoryTest.java25 import java.net.URI;
75 Request request = new Request().setUri(URI.create("http://HOSTNAME"));
96 Request request = new Request().setUri(URI.create("http://HOSTNAME/realms/root/RESOURCE"));
114 Request request = new Request().setUri(URI.create("http://HOSTNAME/realms/root/realms/subrealm/realms/otherrealm/RESOURCE"));
135 Request request = new Request().setUri(URI.create("http://HOSTNAME/realms/root/realms/invalidrealm/RESOURCE"));
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaSettingsImpl.java22 import java.net.URI;
174 public Set<URI> getSupportedUmaProfiles() throws ServerException {
175 Set<URI> supportedProfiles = new HashSet<URI>();
177 supportedProfiles.add(URI.create(profile));
/forgerock/opendj2/src/build-tools/org/opends/build/tools/
H A DProcessFilesForPackages.java30 import java.net.URI;
199 new File(new URI("file:///"
/forgerock/opendj2-hg/src/build-tools/org/opends/build/tools/
H A DProcessFilesForPackages.java30 import java.net.URI;
199 new File(new URI("file:///"
/forgerock/openam-v13/openam-http/src/test/java/org/forgerock/openam/http/
H A DHttpRouterProviderTest.java27 import java.net.URI;
104 Request request = new Request().setUri(URI.create(requestUri));
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/test/java/org/forgerock/oauth2/restlet/resources/
H A DResourceSetDescriptionValidatorTest.java108 resourceSetDescription.put(OAuth2Constants.ResourceSets.URI, "NOT_A^^^_URI");
176 resourceSetDescription.put(OAuth2Constants.ResourceSets.URI, "/URI");
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/impl/
H A DOperationHelperImpl.java43 import java.net.URI;
148 public URI resolveQualifiedId(Uid uid) {

Completed in 804 milliseconds

1234567891011