Searched defs:respondWiths (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java55 protected List respondWiths = Collections.EMPTY_LIST; field in class:AbstractRequest
100 return respondWiths;
116 if ((respondWiths == null) ||
117 (respondWiths == Collections.EMPTY_LIST)) {
118 respondWiths = new ArrayList();
120 respondWiths.add(respondWith);
H A DRequest.java171 * @param respondWiths A List of Strings representing
187 public Request(List respondWiths, argument
192 if ((respondWiths != null) &&
193 (respondWiths != Collections.EMPTY_LIST)) {
194 for (int i = 0, length = respondWiths.size(); i < length; i++) {
195 temp = respondWiths.get(i);
204 if ((this.respondWiths == null) ||
205 (this.respondWiths.size() == 0)) {
206 this.respondWiths = new ArrayList();
208 (this.respondWiths)
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java55 protected List respondWiths = Collections.EMPTY_LIST; field in class:AbstractRequest
100 return respondWiths;
116 if ((respondWiths == null) ||
117 (respondWiths == Collections.EMPTY_LIST)) {
118 respondWiths = new ArrayList();
120 respondWiths.add(respondWith);
H A DRequest.java174 * @param respondWiths A List of Strings representing
190 public Request(List respondWiths, argument
195 if ((respondWiths != null) &&
196 (respondWiths != Collections.EMPTY_LIST)) {
197 for (int i = 0, length = respondWiths.size(); i < length; i++) {
198 temp = respondWiths.get(i);
207 if ((this.respondWiths == null) ||
208 (this.respondWiths.size() == 0)) {
209 this.respondWiths = new ArrayList();
211 (this.respondWiths)
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSNameRegistrationRequest.java144 * @param respondWiths the value of <code>RespondWiths</code> attribute.
157 List respondWiths,
166 if ((respondWiths != null) &&
167 (respondWiths != Collections.EMPTY_LIST)) {
168 length = respondWiths.size();
170 Object temp = respondWiths.get(i);
179 this.respondWiths = respondWiths;
253 if (respondWiths == Collections.EMPTY_LIST) {
254 respondWiths
155 FSNameRegistrationRequest( String requestId, List respondWiths, String providerId, SPProvidedNameIdentifier spProvidedNameIdentifier, IDPProvidedNameIdentifier idpProvidedNameIdentifier, OldProvidedNameIdentifier oldProvidedNameIdentifier, String relayState) argument
[all...]
H A DFSAuthnRequest.java97 * @param respondWiths List of respond withs attributes.
111 List respondWiths,
124 if((respondWiths != null) && (respondWiths != Collections.EMPTY_LIST)) {
125 int length = respondWiths.size();
127 Object temp = respondWiths.get(i);
134 this.respondWiths = respondWiths;
207 if (respondWiths == Collections.EMPTY_LIST) {
208 respondWiths
110 FSAuthnRequest(String requestId, List respondWiths, String providerID, boolean forceAuthn, boolean isPassive, boolean fed, String nameIDPolicy, String protocolProf, RequestAuthnContext authnCxt, String relaySt, String authContextCompType) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSNameRegistrationRequest.java147 * @param respondWiths the value of <code>RespondWiths</code> attribute.
160 List respondWiths,
169 if ((respondWiths != null) &&
170 (respondWiths != Collections.EMPTY_LIST)) {
171 length = respondWiths.size();
173 Object temp = respondWiths.get(i);
182 this.respondWiths = respondWiths;
256 if (respondWiths == Collections.EMPTY_LIST) {
257 respondWiths
158 FSNameRegistrationRequest( String requestId, List respondWiths, String providerId, SPProvidedNameIdentifier spProvidedNameIdentifier, IDPProvidedNameIdentifier idpProvidedNameIdentifier, OldProvidedNameIdentifier oldProvidedNameIdentifier, String relayState) argument
[all...]
H A DFSAuthnRequest.java100 * @param respondWiths List of respond withs attributes.
114 List respondWiths,
127 if((respondWiths != null) && (respondWiths != Collections.EMPTY_LIST)) {
128 int length = respondWiths.size();
130 Object temp = respondWiths.get(i);
137 this.respondWiths = respondWiths;
210 if (respondWiths == Collections.EMPTY_LIST) {
211 respondWiths
113 FSAuthnRequest(String requestId, List respondWiths, String providerID, boolean forceAuthn, boolean isPassive, boolean fed, String nameIDPolicy, String protocolProf, RequestAuthnContext authnCxt, String relaySt, String authContextCompType) argument
[all...]

Completed in 34 milliseconds