Searched refs:URI (Results 51 - 75 of 257) sorted by relevance

1234567891011

/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DUtils.java18 import java.net.URI;
39 * Returns the identity attribute value as a {@code Set<URI>}.
44 * @return The attribute value as a {@code Set<URI>}.
46 static Set<URI> getAttributeValuesAsUris(AMIdentity identity, String attributeName, Debug logger) {
48 Set<URI> urisSet = new HashSet<>();
51 urisSet.add(URI.create(uri));
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaProviderSettings.java20 import java.net.URI;
H A DUmaWellKnownConfigurationEndpoint.java24 import java.net.URI;
97 Set<URI> supportedUmaProfiles = providerSettings.getSupportedUmaProfiles();
101 URI dynamicClientEndpoint = umaUris.getDynamicClientEndpoint();
105 URI requestingPartyClaimsEndpoint = umaUris.getRequestingPartyClaimsEndpoint();
/forgerock/openidm-v4/openidm-provisioner-openicf/src/test/java/org/forgerock/openidm/provisioner/openicf/connector/
H A DTestConfiguration.java35 import java.net.URI;
68 private URI uriValue = null;
69 private URI[] uriArrayValue = null;
81 uriValue = new URI("https://wikis.forgerock.org/confluence/display/openidm/Home");
82 uriArrayValue = new URI[]{new URI("https://wikis.forgerock.org/confluence/display/openidm/Home"),
83 new URI("https://wikis.forgerock.org/confluence/display/openam/Home")};
410 public URI[] getUriArrayValue() {
414 public void setUriArrayValue(URI[] uriArrayValue) {
420 public URI getUriValu
[all...]
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DRedirectUriResolver.java25 import java.net.URI;
33 * Resolves the URI to be redirected to after the authorization
54 * Resolves the redirect URI
57 * @return The the redirection end point URI string
69 Set<URI> redirectUris = clientRegistration.getRedirectUris();
72 throw new InvalidRequestException("Failed to resolve the redirect URI, no URI's registered");
81 throw new InvalidRequestException("Failed to resolve the redirect URI");
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DAttributeImpl.java39 import java.net.URI;
69 URI id = null;
70 URI type = null;
138 id = new URI(attrs.getNamedItem(XACMLConstants.ATTRIBUTE_ID)
151 type = new URI(attrs.getNamedItem(XACMLConstants.DATATYPE)
228 * @return the <code>URI</code> representing the data type.
230 public URI getAttributeId() {
236 * @param attributeId <code>URI</code> representing the attribite id.
239 public void setAttributeId(URI attributeId) throws XACMLException {
258 * @return the <code>URI</cod
[all...]
H A DSubjectImpl.java40 import java.net.URI;
67 private URI subjectCategory;
157 subjectCategory = new URI (child.getNodeValue());
225 * @return <code>URI</code> representing the
228 public URI getSubjectCategory() {
231 subjectCategory = new URI(XACMLConstants.ACCESS_SUBJECT);
241 * @param subjectCategory <code>URI</code>
248 public void setSubjectCategory(URI subjectCategory) throws
260 subjectCategory = new URI(SUBJECT_CATEGORY_DEFAULT);
264 XACMLSDKUtils.createAttribute(values, new URI(
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DAttributeImpl.java39 import java.net.URI;
69 URI id = null;
70 URI type = null;
138 id = new URI(attrs.getNamedItem(XACMLConstants.ATTRIBUTE_ID)
151 type = new URI(attrs.getNamedItem(XACMLConstants.DATATYPE)
228 * @return the <code>URI</code> representing the data type.
230 public URI getAttributeId() {
236 * @param attributeId <code>URI</code> representing the attribite id.
239 public void setAttributeId(URI attributeId) throws XACMLException {
258 * @return the <code>URI</cod
[all...]
H A DSubjectImpl.java40 import java.net.URI;
67 private URI subjectCategory;
157 subjectCategory = new URI (child.getNodeValue());
225 * @return <code>URI</code> representing the
228 public URI getSubjectCategory() {
231 subjectCategory = new URI(XACMLConstants.ACCESS_SUBJECT);
241 * @param subjectCategory <code>URI</code>
248 public void setSubjectCategory(URI subjectCategory) throws
260 subjectCategory = new URI(SUBJECT_CATEGORY_DEFAULT);
264 XACMLSDKUtils.createAttribute(values, new URI(
[all...]
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/
H A DAuthorizationFactory.java33 import java.net.URI;
69 * @param cbk OAuth Callback URI
82 // throw new WebApplicationException(new Throwable("No callback URI."));
118 URI respURI = new URI(resp);
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DOpenIDConnectProviderDiscovery.java26 import java.net.URI;
80 final URI object = new URI(resource);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/security/whitelist/
H A DRedirectUrlValidator.java23 import java.net.URI;
84 final URI uri = new URI(url);
95 DEBUG.message("The goto URL " + url + " is not a valid URI", urise);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/base/
H A DUriParser.java21 import java.net.URI;
36 /** The protocol of the URI */
40 public static final String TYPE = "authority"; // URI refers to this as the authority.
41 /** The URI API Version */
44 /** The IDP that issued the URI */
58 * Call through to {@link UriParser#map(URI)}
66 return postProcess(map(new URI(uriScheme)));
68 throw new URIMappingException("Failed to parse URI", e);
74 * Parse the URI into a more useful Map format with known keys.
76 * Makes use of the Java provided {@link URI} t
[all...]
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DOpenIDConnectProviderDiscovery.java26 import java.net.URI;
80 final URI object = new URI(resource);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/security/whitelist/
H A DRedirectUrlValidator.java24 import java.net.URI;
90 final URI uri = new URI(url);
100 DEBUG.message("RedirectUrlValidator.isRedirectUrlValid: The goto URL {} is not a valid URI", url, urise);
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/xacml/plugins/
H A DFMSubjectMapperTest.java45 import java.net.URI;
75 new URI("urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"));
82 new URI("urn:oasis:names:tc:xacml:1.0:subject:subject-id"));
89 new URI("urn:sun:names:xacml:2.0:data-type:opensso-session-id"));
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/scriptedazure/tools/scripts/
H A DSyncScript.groovy53 client.getRetrieveRequestFactory().getEntitySetRequest(URI.create("https://graph.windows.net/goldengate.onmicrosoft.com/groups?deltaLink="));
66 client.getRetrieveRequestFactory().getEntityRequest(URI.create("https://graph.windows.net/goldengate.onmicrosoft.com/groups?deltaLink="));
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/xacml/plugins/
H A DFMSubjectMapperTest.java45 import java.net.URI;
75 new URI("urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"));
82 new URI("urn:oasis:names:tc:xacml:1.0:subject:subject-id"));
89 new URI("urn:sun:names:xacml:2.0:data-type:opensso-session-id"));
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/xacml/plugins/
H A DFMActionMapper.java41 import java.net.URI;
91 URI tmpURI = attr.getAttributeId();
H A DFMResourceMapper.java41 import java.net.URI;
112 URI tmpURI = attr.getAttributeId();
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/xacml/plugins/
H A DFMActionMapper.java41 import java.net.URI;
91 URI tmpURI = attr.getAttributeId();
H A DFMResourceMapper.java41 import java.net.URI;
112 URI tmpURI = attr.getAttributeId();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationImpl.java37 import java.net.URI;
75 private URI obligationId = null; //required
139 obligationId = new URI(attrs.getNamedItem(XACMLConstants.OBLIGATION_ID)
196 * @return the <code>URI</code> representing ObligationId of this
199 public URI getObligationId() {
205 * @param obligationId <code>URI</code> representing the ObligationId.
208 public void setObligationId(URI obligationId)
/forgerock/openam-v13/openam-oauth2-common/openid-connect-restlet/src/test/java/org/forgerock/openidconnect/restlet/
H A DEndSessionTest.java38 import java.net.URI;
83 when(client.getPostLogoutRedirectUris()).thenReturn(Collections.singleton(new URI(registeredUri)));
99 when(client.getPostLogoutRedirectUris()).thenReturn(Collections.singleton(new URI(registeredUri)));
121 when(client.getPostLogoutRedirectUris()).thenReturn(Collections.singleton(new URI(registeredUri)));
143 when(client.getPostLogoutRedirectUris()).thenReturn(Collections.singleton(new URI(registeredUri)));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationImpl.java37 import java.net.URI;
75 private URI obligationId = null; //required
139 obligationId = new URI(attrs.getNamedItem(XACMLConstants.OBLIGATION_ID)
196 * @return the <code>URI</code> representing ObligationId of this
199 public URI getObligationId() {
205 * @param obligationId <code>URI</code> representing the ObligationId.
208 public void setObligationId(URI obligationId)

Completed in 74 milliseconds

1234567891011