Searched refs:providerName (Results 1 - 25 of 35) sorted by relevance

12

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DIWebServiceResponseProcessor.java38 public String process(String providerName, String responseContent); argument
H A DWebServiceDefaultResponseProcessor.java65 public String process(String providerName, String respContent) { argument
76 params.put("providername", providerName);
81 + providerName
H A DWSSUsernameTokenResponseProcessor.java49 public String process(String providerName, String respContent) { argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DIDPEntry.java55 private String providerName = null; field in class:IDPEntry
68 * @param providerName the Identity Provider name.
71 public IDPEntry(String providerID,String providerName,String location) { argument
73 this.providerName = providerName;
105 return providerName;
111 * @param providerName the Identity Provider Name.
114 public void setProviderName(String providerName) { argument
115 this.providerName = providerName;
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DIDPEntry.java55 private String providerName = null; field in class:IDPEntry
68 * @param providerName the Identity Provider name.
71 public IDPEntry(String providerID,String providerName,String location) { argument
73 this.providerName = providerName;
105 return providerName;
111 * @param providerName the Identity Provider Name.
114 public void setProviderName(String providerName) { argument
115 this.providerName = providerName;
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyStoreBuilder.java121 * @param providerName the name of the provider to use.
125 public KeyStoreBuilder withProvider(final String providerName) { argument
126 Provider provider = Security.getProvider(providerName);
128 throw new IllegalArgumentException("No such provider: " + providerName);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/
H A DResponseProviderOpViewBeanBase.java60 public static final String PG_SESSION_PROVIDER_NAME = "providerName";
190 String providerName = (String)getPageSessionAttribute(
196 propertySheetModel.setValue(RESPONSEPROVIDER_NAME, providerName);
222 String providerName = getResponseProviderName();
224 if (providerName != null) {
245 String providerName = (String)propertySheetModel.getValue(
247 providerName = providerName.trim();
248 if (providerName.length() == 0) {
251 providerName
[all...]
H A DResponseProviderEditViewBean.java178 String providerName = (String)getPageSessionAttribute(
185 providerName);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/
H A DResponseProviderOpViewBeanBase.java60 public static final String PG_SESSION_PROVIDER_NAME = "providerName";
190 String providerName = (String)getPageSessionAttribute(
196 propertySheetModel.setValue(RESPONSEPROVIDER_NAME, providerName);
222 String providerName = getResponseProviderName();
224 if (providerName != null) {
245 String providerName = (String)propertySheetModel.getValue(
247 providerName = providerName.trim();
248 if (providerName.length() == 0) {
251 providerName
[all...]
H A DResponseProviderEditViewBean.java178 String providerName = (String)getPageSessionAttribute(
185 providerName);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyStoreBuilder.java125 * @param providerName the name of the provider to use.
129 public KeyStoreBuilder withProvider(final String providerName) { argument
130 Provider provider = Security.getProvider(providerName);
132 throw new IllegalArgumentException("No such provider: " + providerName);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/
H A DECPRequest.java120 * @param providerName value of the <code>ProviderName</code> attribute.
124 public void setProviderName(String providerName) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/
H A DECPRequest.java120 * @param providerName value of the <code>ProviderName</code> attribute.
124 public void setProviderName(String providerName) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java56 private String providerName; field in class:ECPRequestImpl
202 return providerName;
208 * @param providerName value of the <code>ProviderName</code> attribute.
212 public void setProviderName(String providerName) throws SAML2Exception { argument
217 this.providerName = providerName;
295 if (providerName != null) {
300 .append(providerName)
385 providerName = XMLUtils.getNodeAttributeValue(element,
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthnRequestEnvelope.java57 private String providerName = null; field in class:FSAuthnRequestEnvelope
72 * @param providerName name of the provider
82 String providerName,
87 this.providerName = providerName;
144 providerName = XMLUtils.getElementValue((Element) child);
267 if (providerName != null && providerName.length() != 0){
273 .append(providerName)
80 FSAuthnRequestEnvelope(FSAuthnRequest authnRequest, String providerID, String providerName, String assertionConsumerServiceURL, FSIDPList idpList, boolean isPassive ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthnRequestEnvelope.java57 private String providerName = null; field in class:FSAuthnRequestEnvelope
72 * @param providerName name of the provider
82 String providerName,
87 this.providerName = providerName;
144 providerName = XMLUtils.getElementValue((Element) child);
267 if (providerName != null && providerName.length() != 0){
273 .append(providerName)
80 FSAuthnRequestEnvelope(FSAuthnRequest authnRequest, String providerID, String providerName, String assertionConsumerServiceURL, FSIDPList idpList, boolean isPassive ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java56 private String providerName; field in class:ECPRequestImpl
202 return providerName;
208 * @param providerName value of the <code>ProviderName</code> attribute.
212 public void setProviderName(String providerName) throws SAML2Exception { argument
217 this.providerName = providerName;
295 if (providerName != null) {
300 .append(providerName)
385 providerName = XMLUtils.getNodeAttributeValue(element,
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DConfigureSocialAuthN.java87 String providerName = getValidatedField(type, params, attrs, P_PROVIDER_NAME, "missing-provider-name");
90 String authNamePrefix = providerName.replaceAll("\\W", "");
103 createOrModifySocialService(realm, authChainName, providerName, imageUrl);
106 return MessageFormat.format(messageTemplate, providerName, authModuleName, authChainName, SERVICE_NAME);
319 * @param providerName
323 private void createOrModifySocialService(String realm, String chainName, String providerName, String icon) argument
331 String prefix = "[" + providerName + "]=";
332 attrs.put(SERVICE_DISPLAY_NAME, asSet(prefix + providerName));
335 attrs.put(SERVICE_ENABLED, asSet(providerName));
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DConfigureSocialAuthN.java87 String providerName = getValidatedField(type, params, attrs, P_PROVIDER_NAME, "missing-provider-name");
90 String authNamePrefix = providerName.replaceAll("\\W", "");
103 createOrModifySocialService(realm, authChainName, providerName, imageUrl);
106 return MessageFormat.format(messageTemplate, providerName, authModuleName, authChainName, SERVICE_NAME);
319 * @param providerName
323 private void createOrModifySocialService(String realm, String chainName, String providerName, String icon) argument
331 String prefix = "[" + providerName + "]=";
332 attrs.put(SERVICE_DISPLAY_NAME, asSet(prefix + providerName));
335 attrs.put(SERVICE_ENABLED, asSet(providerName));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java255 * @param providerName value of the <code>ProviderName</code> attribute.
259 public void setProviderName(String providerName) throws SAML2Exception; argument
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/debug/
H A DDebug.java262 String providerName = SystemPropertiesManager.get(DebugConstants.CONFIG_DEBUG_PROVIDER);
266 if (providerName != null && providerName.trim().length() > 0) {
268 provider = (IDebugProvider) Class.forName(providerName).newInstance();
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/debug/
H A DDebug.java262 String providerName = SystemPropertiesManager.get(DebugConstants.CONFIG_DEBUG_PROVIDER);
266 if (providerName != null && providerName.trim().length() > 0) {
268 provider = (IDebugProvider) Class.forName(providerName).newInstance();
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java260 * @param providerName value of the <code>ProviderName</code> attribute.
264 public void setProviderName(String providerName) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java69 private String providerName; field in class:AuthnRequestImpl
415 * @param providerName value of the <code>ProviderName</code> attribute.
419 public void setProviderName(String providerName) throws SAML2Exception { argument
424 this.providerName = providerName ;
434 return providerName;
568 if ((providerName != null) &&
569 (providerName.length() > 0)) {
574 .append(providerName)
749 providerName
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java69 private String providerName; field in class:AuthnRequestImpl
415 * @param providerName value of the <code>ProviderName</code> attribute.
419 public void setProviderName(String providerName) throws SAML2Exception { argument
424 this.providerName = providerName ;
434 return providerName;
568 if ((providerName != null) &&
569 (providerName.length() > 0)) {
574 .append(providerName)
749 providerName
[all...]

Completed in 42 milliseconds

12