Searched refs:scoping (Results 1 - 18 of 18) sorted by relevance

/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DAuthnRequest.cs138 Scoping scoping = GetScoping(serviceProvider);
180 if (scoping != null)
182 rawXml.Append(scoping.GenerateXmlString());
368 Scoping scoping = null;
372 scoping = new Scoping();
376 scoping.ProxyCount = serviceProvider.IDPProxyCount;
381 scoping.SetIDPEntry(idpEntries);
385 return scoping;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java66 private Scoping scoping; field in class:AuthnRequestImpl
226 * @param scoping the new <code>Scoping</code> Object.
230 public void setScoping(Scoping scoping) throws SAML2Exception { argument
235 this.scoping = scoping;
245 return scoping;
613 if (scoping != null) {
615 .append(scoping.toXMLString(includeNSPrefix,declareNS));
645 if ((scoping != null) && (scoping
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java66 private Scoping scoping; field in class:AuthnRequestImpl
226 * @param scoping the new <code>Scoping</code> Object.
230 public void setScoping(Scoping scoping) throws SAML2Exception { argument
235 this.scoping = scoping;
245 return scoping;
613 if (scoping != null) {
615 .append(scoping.toXMLString(includeNSPrefix,declareNS));
645 if ((scoping != null) && (scoping
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DAuthnRequest.cs137 Scoping scoping = GetScoping(serviceProvider);
179 if (scoping != null)
181 rawXml.Append(scoping.GenerateXmlString());
314 Scoping scoping = null;
318 scoping = new Scoping();
321 scoping.SetIDPEntry(idpEntry);
324 return scoping;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSScoping.java48 * This class <code>FSScoping</code> creates scoping element for the
266 FSScoping scoping = new FSScoping();
267 scoping.setProxyCount(proxyCount);
271 return scoping;
282 scoping.setIDPList(idpsList);
284 return scoping;
H A DFSAuthnRequest.java84 protected FSScoping scoping = null; field in class:FSAuthnRequest
296 scoping = new FSScoping((Element)child);
623 if (scoping != null) {
624 xml.append(scoping.toXMLString(true, false));
994 * @param scoping the <code>FSScoping</code> object.
997 public void setScoping(FSScoping scoping) { argument
998 this.scoping = scoping;
1008 return scoping;
1315 if (scoping !
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSScoping.java48 * This class <code>FSScoping</code> creates scoping element for the
266 FSScoping scoping = new FSScoping();
267 scoping.setProxyCount(proxyCount);
271 return scoping;
282 scoping.setIDPList(idpsList);
284 return scoping;
H A DFSAuthnRequest.java87 protected FSScoping scoping = null; field in class:FSAuthnRequest
299 scoping = new FSScoping((Element)child);
626 if (scoping != null) {
627 xml.append(scoping.toXMLString(true, false));
997 * @param scoping the <code>FSScoping</code> object.
1000 public void setScoping(FSScoping scoping) { argument
1001 this.scoping = scoping;
1011 return scoping;
1318 if (scoping !
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java122 * @param scoping the new <code>Scoping</code> Object.
126 public void setScoping(Scoping scoping) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java127 * @param scoping the new <code>Scoping</code> Object.
131 public void setScoping(Scoping scoping) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPProxyUtil.java384 Scoping scoping = origRequest.getScoping();
385 if (scoping != null) {
388 Integer proxyCountInt = scoping.getProxyCount();
391 proxyCount = scoping.getProxyCount().intValue();
394 newScoping.setIDPList(scoping.getIDPList());
397 newScoping.setRequesterIDs(scoping.getRequesterIDs());
406 scoping = ProtocolFactory.getInstance().createScoping();
412 scoping.setProxyCount(0);
416 scoping.setProxyCount(proxyCount - 1);
421 addRequesterIDToScope(scoping, origReques
448 addRequesterIDToScope(Scoping scoping, String requesterId) argument
[all...]
H A DSPSSOFederate.java905 Scoping scoping =
910 scoping.setProxyCount(new Integer(proxyCountParam));
926 scoping.setIDPList(idpList);
928 authnReq.setScoping(scoping);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPProxyUtil.java373 Scoping scoping = origRequest.getScoping();
374 if (scoping != null) {
377 Integer proxyCountInt = scoping.getProxyCount();
380 proxyCount = scoping.getProxyCount().intValue();
383 newScoping.setIDPList(scoping.getIDPList());
390 scoping = ProtocolFactory.getInstance().createScoping();
396 scoping.setProxyCount(0);
400 scoping.setProxyCount(proxyCount - 1);
416 scoping.setIDPList(idpList);
417 newRequest.setScoping(scoping);
[all...]
H A DSPSSOFederate.java889 Scoping scoping =
894 scoping.setProxyCount(new Integer(proxyCountParam));
910 scoping.setIDPList(idpList);
912 authnReq.setScoping(scoping);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSSSOAndFedHandler.java1564 FSScoping scoping = authnRequest.getScoping();
1565 if (scoping != null && scoping.getProxyCount() == 0) {
1625 FSScoping scoping = origRequest.getScoping();
1626 if (scoping != null) {
1627 int proxyCount = scoping.getProxyCount();
1631 newScoping.setIDPList(scoping.getIDPList());
H A DFSIntersiteTransferService.java439 FSScoping scoping = new FSScoping();
440 scoping.setProxyCount(Integer.parseInt(
455 scoping.setIDPList(idpList);
457 authnRequest.setScoping(scoping);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSSSOAndFedHandler.java1564 FSScoping scoping = authnRequest.getScoping();
1565 if (scoping != null && scoping.getProxyCount() == 0) {
1625 FSScoping scoping = origRequest.getScoping();
1626 if (scoping != null) {
1627 int proxyCount = scoping.getProxyCount();
1631 newScoping.setIDPList(scoping.getIDPList());
H A DFSIntersiteTransferService.java439 FSScoping scoping = new FSScoping();
440 scoping.setProxyCount(Integer.parseInt(
455 scoping.setIDPList(idpList);
457 authnRequest.setScoping(scoping);

Completed in 81 milliseconds