Searched defs:isPassive (Results 1 - 19 of 19) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/
H A DECPRequest.java127 * Returns the value of the <code>isPassive</code> attribute.
129 * @return value of <code>isPassive</code> attribute.
131 public Boolean isPassive(); method in interface:ECPRequest
136 * @param isPassive value of <code>IsPassive</code> attribute.
139 public void setIsPassive(Boolean isPassive) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/
H A DECPRequest.java127 * Returns the value of the <code>isPassive</code> attribute.
129 * @return value of <code>isPassive</code> attribute.
131 public Boolean isPassive(); method in interface:ECPRequest
136 * @param isPassive value of <code>IsPassive</code> attribute.
139 public void setIsPassive(Boolean isPassive) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java57 private Boolean isPassive; field in class:ECPRequestImpl
221 * Returns the value of the <code>isPassive</code> attribute.
223 * @return value of <code>isPassive</code> attribute.
225 public Boolean isPassive() { method in class:ECPRequestImpl
226 return isPassive;
232 * @param isPassive value of <code>IsPassive</code> attribute.
235 public void setIsPassive(Boolean isPassive) throws SAML2Exception { argument
240 this.isPassive = isPassive;
304 if (isPassive !
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java153 * Returns the value of the <code>isPassive</code> attribute.
155 * @return value of <code>isPassive</code> attribute, or null if the attribute is not present.
157 public Boolean isPassive(); method in interface:AuthnRequest
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthnRequestEnvelope.java58 private boolean isPassive = false; field in class:FSAuthnRequestEnvelope
76 * @param isPassive true if identity provider must not interact
84 FSIDPList idpList, boolean isPassive ) {
90 this.isPassive = isPassive;
148 boolean isPassive = false;
151 isPassive = true;
300 if (isPassive) {
H A DFSAuthnRequest.java68 private boolean isPassive = false; field in class:FSAuthnRequest
100 * @param isPassive attribute for IDP to be passive or active.
114 boolean isPassive,
147 this.isPassive = isPassive;
242 isPassive = true;
244 isPassive = false;
567 if (isPassive) {
733 * Returns the value of the <code>isPassive</code> attribute.
735 * @return value of <code>isPassive</cod
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
746 setIsPassive(boolean isPassive) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthnRequestEnvelope.java58 private boolean isPassive = false; field in class:FSAuthnRequestEnvelope
76 * @param isPassive true if identity provider must not interact
84 FSIDPList idpList, boolean isPassive ) {
90 this.isPassive = isPassive;
148 boolean isPassive = false;
151 isPassive = true;
300 if (isPassive) {
H A DFSAuthnRequest.java71 private boolean isPassive = false; field in class:FSAuthnRequest
103 * @param isPassive attribute for IDP to be passive or active.
117 boolean isPassive,
150 this.isPassive = isPassive;
245 isPassive = true;
247 isPassive = false;
570 if (isPassive) {
736 * Returns the value of the <code>isPassive</code> attribute.
738 * @return value of <code>isPassive</cod
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
749 setIsPassive(boolean isPassive) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java57 private Boolean isPassive; field in class:ECPRequestImpl
221 * Returns the value of the <code>isPassive</code> attribute.
223 * @return value of <code>isPassive</code> attribute.
225 public Boolean isPassive() { method in class:ECPRequestImpl
226 return isPassive;
232 * @param isPassive value of <code>IsPassive</code> attribute.
235 public void setIsPassive(Boolean isPassive) throws SAML2Exception { argument
240 this.isPassive = isPassive;
304 if (isPassive !
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnRequest.java158 * Returns the value of the <code>isPassive</code> attribute.
160 * @return value of <code>isPassive</code> attribute, or null if the attribute is not present.
162 public Boolean isPassive(); method in interface:AuthnRequest
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java71 private Boolean isPassive; field in class:AuthnRequestImpl
272 * Returns the value of the <code>isPassive</code> attribute.
274 * @return value of <code>isPassive</code> attribute.
276 public Boolean isPassive() { method in class:AuthnRequestImpl
277 return isPassive;
291 isPassive = value;
520 if (isPassive != null) {
525 .append(isPassive.toString())
727 isPassive = SAML2SDKUtils.booleanValueOf(isPassiveAttr);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSLoginHelper.java78 private boolean isPassive; field in class:FSLoginHelper
114 FSUtils.debug.message("FSLoginHepler::isPassive query param"
164 isPassive = IDFFMetaUtils.getBooleanAttributeValueFromConfig(
208 FSUtils.debug.message("FSLoginHelper()::isPassive: "
209 + isPassive );
310 boolean isPassive = false;
356 isPassive);
597 isPassive,
784 boolean isPassive = false;
827 isPassive);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSLoginHelper.java78 private boolean isPassive; field in class:FSLoginHelper
114 FSUtils.debug.message("FSLoginHepler::isPassive query param"
164 isPassive = IDFFMetaUtils.getBooleanAttributeValueFromConfig(
208 FSUtils.debug.message("FSLoginHelper()::isPassive: "
209 + isPassive );
310 boolean isPassive = false;
356 isPassive);
597 isPassive,
784 boolean isPassive = false;
827 isPassive);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnRequestImpl.java71 private Boolean isPassive; field in class:AuthnRequestImpl
272 * Returns the value of the <code>isPassive</code> attribute.
274 * @return value of <code>isPassive</code> attribute.
276 public Boolean isPassive() { method in class:AuthnRequestImpl
277 return isPassive;
291 isPassive = value;
520 if (isPassive != null) {
525 .append(isPassive.toString())
727 isPassive = SAML2SDKUtils.booleanValueOf(isPassiveAttr);
/forgerock/opendj2/ext/ant/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 432 milliseconds