Searched refs:IDPEntry (Results 1 - 24 of 24) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DScoping.cs49 this.IDPEntry = new ArrayList();
60 /// Gets the IDPEntry.
62 public ArrayList IDPEntry { get; private set; } property in class:Sun.Identity.Saml2.Scoping
70 /// the ProxyCount and IDPEntry information
82 if (this.IDPEntry != null && this.IDPEntry.Count > 0)
85 foreach (string value in this.IDPEntry)
87 rawXml.Append("<samlp:IDPEntry xmlns:samlp=\"urn:oasis:names:tc:SAML:2.0:protocol\" ProviderID=\"");
100 /// Sets the IDPEntry list.
102 /// <param name="list">The list to become the IDPEntry
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DScoping.cs49 this.IDPEntry = new ArrayList();
60 /// Gets the IDPEntry.
62 public ArrayList IDPEntry { get; private set; } property in class:Sun.Identity.Saml2.Scoping
70 /// the ProxyCount and IDPEntry information
82 if (this.IDPEntry != null && this.IDPEntry.Count > 0)
85 foreach (string value in this.IDPEntry)
87 rawXml.Append("<samlp:IDPEntry xmlns:samlp=\"urn:oasis:names:tc:SAML:2.0:protocol\" ProviderID=\"");
100 /// Sets the IDPEntry list.
102 /// <param name="list">The list to become the IDPEntry
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DIDPEntry.java25 * $Id: IDPEntry.java,v 1.2 2008/06/25 05:47:56 qcheng Exp $
42 public interface IDPEntry { interface
H A DProtocolFactory.java410 * Returns the <code>IDPEntry</code> Object.
412 * @return instance of <code>IDPEntry<code> object.
413 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
415 public IDPEntry createIDPEntry() throws SAML2Exception {
421 return (IDPEntry) obj;
426 * Returns the <code>IDPEntry</code> Object.
428 * @param value Document Element of <code>IDPEntry<code> object.
429 * @return instance of <code>IDPEntry<code> object.
430 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
432 public IDPEntry createIDPEntr
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DIDPEntries.java159 IDPEntry entry = (IDPEntry)i.next();
192 if (childName.equals("IDPEntry")) {
197 idpEntryList.add(new IDPEntry((Element)child));
H A DIDPEntry.java25 * $Id: IDPEntry.java,v 1.2 2008/06/25 05:46:47 qcheng Exp $
50 public class IDPEntry { class
61 public IDPEntry() { method in class:IDPEntry
65 * Constructor creates <code>IDPEntry</code> object.
71 public IDPEntry(String providerID,String providerName,String location) { method in class:IDPEntry
197 xml.append("<").append(prefix).append("IDPEntry").append(uri).
220 xml.append("</").append(prefix).append("IDPEntry").append(">\n");
226 * Constructor creates <code>IDPEntry</code> Object from
229 * @param root Document Element of <code>IDPEntry<code> object.
230 * @throws FSMsgException if <code>IDPEntry<cod
233 public IDPEntry(Element root) throws FSMsgException { method in class:IDPEntry
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DIDPEntries.java159 IDPEntry entry = (IDPEntry)i.next();
192 if (childName.equals("IDPEntry")) {
197 idpEntryList.add(new IDPEntry((Element)child));
H A DIDPEntry.java25 * $Id: IDPEntry.java,v 1.2 2008/06/25 05:46:47 qcheng Exp $
50 public class IDPEntry { class
61 public IDPEntry() { method in class:IDPEntry
65 * Constructor creates <code>IDPEntry</code> object.
71 public IDPEntry(String providerID,String providerName,String location) { method in class:IDPEntry
197 xml.append("<").append(prefix).append("IDPEntry").append(uri).
220 xml.append("</").append(prefix).append("IDPEntry").append(">\n");
226 * Constructor creates <code>IDPEntry</code> Object from
229 * @param root Document Element of <code>IDPEntry<code> object.
230 * @throws FSMsgException if <code>IDPEntry<cod
233 public IDPEntry(Element root) throws FSMsgException { method in class:IDPEntry
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DIDPEntry.java25 * $Id: IDPEntry.java,v 1.2 2008/06/25 05:47:56 qcheng Exp $
46 public interface IDPEntry { interface
H A DProtocolFactory.java410 * Returns the <code>IDPEntry</code> Object.
412 * @return instance of <code>IDPEntry<code> object.
413 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
415 public IDPEntry createIDPEntry() throws SAML2Exception {
421 return (IDPEntry) obj;
426 * Returns the <code>IDPEntry</code> Object.
428 * @param value Document Element of <code>IDPEntry<code> object.
429 * @return instance of <code>IDPEntry<code> object.
430 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
432 public IDPEntry createIDPEntr
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DIDPListImpl.java37 import com.sun.identity.saml2.protocol.IDPEntry;
99 * Returns the list of <code>IDPEntry</code> Objects.
101 * @return the list of <code>IDPEntry</code> objects.
109 * Sets the list of <code>IDPEntry</code> Objects.
111 * @param idpEntryList list of <code>IDPEntry</code> objects.
194 IDPEntry idpEntry = (IDPEntry)i.next();
223 IDPEntry idpEntry = (IDPEntry) i.next();
251 // Get the IDPEntry Elemen
[all...]
H A DIDPEntryImpl.java36 import com.sun.identity.saml2.protocol.IDPEntry;
45 public class IDPEntryImpl implements IDPEntry {
56 * Constructor to create <code>IDPEntry</code> Object.
63 * Constructor to create <code>IDPEntry</code> Object.
65 * @param element Document Element of <code>IDPEntry<code> object.
66 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
74 * Constructor to create <code>IDPEntry</code> Object.
76 * @param xmlString XML Representation of the <code>IDPEntry<code> object.
77 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSScoping.java35 import com.sun.identity.federation.message.common.IDPEntry;
225 IDPEntry entry = (IDPEntry)iter.next();
277 IDPEntry entry = new IDPEntry(providerID, null, null);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSScoping.java35 import com.sun.identity.federation.message.common.IDPEntry;
225 IDPEntry entry = (IDPEntry)iter.next();
277 IDPEntry entry = new IDPEntry(providerID, null, null);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DIDPListImpl.java37 import com.sun.identity.saml2.protocol.IDPEntry;
99 * Returns the list of <code>IDPEntry</code> Objects.
101 * @return the list of <code>IDPEntry</code> objects.
109 * Sets the list of <code>IDPEntry</code> Objects.
111 * @param idpEntryList list of <code>IDPEntry</code> objects.
194 IDPEntry idpEntry = (IDPEntry)i.next();
223 IDPEntry idpEntry = (IDPEntry) i.next();
251 // Get the IDPEntry Elemen
[all...]
H A DIDPEntryImpl.java36 import com.sun.identity.saml2.protocol.IDPEntry;
45 public class IDPEntryImpl implements IDPEntry {
56 * Constructor to create <code>IDPEntry</code> Object.
63 * Constructor to create <code>IDPEntry</code> Object.
65 * @param element Document Element of <code>IDPEntry<code> object.
66 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
74 * Constructor to create <code>IDPEntry</code> Object.
76 * @param xmlString XML Representation of the <code>IDPEntry<code> object.
77 * @throws SAML2Exception if <code>IDPEntry<code> cannot be created.
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPProxyUtil.java60 import com.sun.identity.saml2.protocol.IDPEntry;
406 List<IDPEntry> list = new ArrayList<IDPEntry>();
408 IDPEntry entry = ProtocolFactory.getInstance().
H A DSPSSOFederate.java67 import com.sun.identity.saml2.protocol.IDPEntry;
581 IDPEntry idpEntry = ProtocolFactory.getInstance()
902 IDPEntry entry = ProtocolFactory.getInstance().
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPProxyUtil.java67 import com.sun.identity.saml2.protocol.IDPEntry;
426 List<IDPEntry> list = new ArrayList<IDPEntry>();
428 IDPEntry entry = ProtocolFactory.getInstance().
H A DSPSSOFederate.java69 import com.sun.identity.saml2.protocol.IDPEntry;
594 IDPEntry idpEntry = ProtocolFactory.getInstance()
918 IDPEntry entry = ProtocolFactory.getInstance().
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSLoginHelper.java42 import com.sun.identity.federation.message.common.IDPEntry;
333 new IDPEntry(idpID, idpID, idpLocation));
805 idpEntryList.add(new IDPEntry(idpID, idpID, idpLocation));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSIntersiteTransferService.java40 import com.sun.identity.federation.message.common.IDPEntry;
449 IDPEntry entry =
450 new IDPEntry((String)iter.next(),null, null);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSLoginHelper.java42 import com.sun.identity.federation.message.common.IDPEntry;
333 new IDPEntry(idpID, idpID, idpLocation));
805 idpEntryList.add(new IDPEntry(idpID, idpID, idpLocation));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSIntersiteTransferService.java40 import com.sun.identity.federation.message.common.IDPEntry;
449 IDPEntry entry =
450 new IDPEntry((String)iter.next(),null, null);

Completed in 60 milliseconds