Searched refs:Advice (Results 1 - 25 of 32) sorted by relevance

12

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAdvice.java25 * $Id: Advice.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
37 * The <code>Advice</code> element contains additional information that the
39 * without affecting either the semantics or validity. Advice elements MAY
44 public class Advice extends AdviceBase { class in inherits:AdviceBase
47 * Constructs an Advice element from an existing XML block.
53 public Advice(Element element) throws SAMLException { method in class:Advice
65 public Advice(List assertionidreference, List assertion, method in class:Advice
H A DAssertion.java330 else if (childName.equals("Advice"))
331 _advice = new Advice((Element)child);
421 * the conditions when creating a new assertion , <code>Advice</code>
433 * @param advice <code>Advice</code> applicable for this
444 Date issueInstant, Conditions conditions, Advice advice,
453 * @return <code>Advice</code> object containing advice information of the
456 public Advice getAdvice() {
457 return (Advice)_advice;
462 return new Advice(adviceElement);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAdvice.java25 * $Id: Advice.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
37 * The <code>Advice</code> element contains additional information that the
39 * without affecting either the semantics or validity. Advice elements MAY
44 public class Advice extends AdviceBase { class in inherits:AdviceBase
47 * Constructs an Advice element from an existing XML block.
53 public Advice(Element element) throws SAMLException { method in class:Advice
65 public Advice(List assertionidreference, List assertion, method in class:Advice
H A DAssertion.java330 else if (childName.equals("Advice"))
331 _advice = new Advice((Element)child);
421 * the conditions when creating a new assertion , <code>Advice</code>
433 * @param advice <code>Advice</code> applicable for this
444 Date issueInstant, Conditions conditions, Advice advice,
453 * @return <code>Advice</code> object containing advice information of the
456 public Advice getAdvice() {
457 return (Advice)_advice;
462 return new Advice(adviceElement);
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAssociatedAdvice.java55 * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}Advice" maxOccurs="unbounded"/>
70 @XmlElement(name = "Advice", required = true)
71 protected List<Advice> advice;
91 * {@link Advice }
95 public List<Advice> getAdvice() {
97 advice = new ArrayList<Advice>();
H A DAdvice.java71 public class Advice implements XACMLRootElement { class in inherits:XACMLRootElement
H A DObjectFactory.java109 private final static QName _Advice_QNAME = new QName("urn:oasis:names:tc:xacml:3.0:core:schema:wd-17", "Advice");
420 * Create an instance of {@link Advice }
423 public Advice createAdvice() {
424 return new Advice();
965 * Create an instance of {@link JAXBElement }{@code <}{@link Advice }{@code >}}
968 @XmlElementDecl(namespace = "urn:oasis:names:tc:xacml:3.0:core:schema:wd-17", name = "Advice")
969 public JAXBElement<Advice> createAdvice(Advice value) {
970 return new JAXBElement<Advice>(_Advice_QNAME, Advice
[all...]
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAssociatedAdvice.java55 * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}Advice" maxOccurs="unbounded"/>
70 @XmlElement(name = "Advice", required = true)
71 protected List<Advice> advice;
91 * {@link Advice }
95 public List<Advice> getAdvice() {
97 advice = new ArrayList<Advice>();
H A DAdvice.java71 public class Advice implements XACMLRootElement { class in inherits:XACMLRootElement
H A DObjectFactory.java109 private final static QName _Advice_QNAME = new QName("urn:oasis:names:tc:xacml:3.0:core:schema:wd-17", "Advice");
420 * Create an instance of {@link Advice }
423 public Advice createAdvice() {
424 return new Advice();
965 * Create an instance of {@link JAXBElement }{@code <}{@link Advice }{@code >}}
968 @XmlElementDecl(namespace = "urn:oasis:names:tc:xacml:3.0:core:schema:wd-17", name = "Advice")
969 public JAXBElement<Advice> createAdvice(Advice value) {
970 return new JAXBElement<Advice>(_Advice_QNAME, Advice
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAdvice.java25 * $Id: Advice.java,v 1.2 2008/06/25 05:47:39 qcheng Exp $
34 * The <code>Advice</code> contains any additional information that the
37 * validity of the assertion. An <code>Advice</code> contains a mixture
43 public interface Advice { interface
H A DAssertion.java104 Advice getAdvice();
112 void setAdvice(Advice advice) throws SAML2Exception;
H A DAssertionFactory.java89 * Returns a new instance of <code>Advice</code>.
91 * @return a new instance of <code>Advice</code>
94 public Advice createAdvice() {
99 return (Advice) obj;
104 * Returns a new instance of <code>Advice</code>.
107 * @param elem a DOM Element representation of <code>Advice</code>
108 * @return a new instance of <code>Advice</code>
113 public Advice createAdvice(Element elem)
120 return (Advice) obj;
125 * Returns a new instance of <code>Advice</cod
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAdvice.java25 * $Id: Advice.java,v 1.2 2008/06/25 05:47:39 qcheng Exp $
34 * The <code>Advice</code> contains any additional information that the
37 * validity of the assertion. An <code>Advice</code> contains a mixture
43 public interface Advice { interface
H A DAssertion.java104 Advice getAdvice();
112 void setAdvice(Advice advice) throws SAML2Exception;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSDiscoveryBootStrap.java237 * @return <code>Advice</code> object that contains credentials
239 public Advice getCredentials() {
243 return new Advice(null, assertionList, null);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSDiscoveryBootStrap.java237 * @return <code>Advice</code> object that contains credentials
239 public Advice getCredentials() {
243 return new Advice(null, assertionList, null);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DDiscoveryBootstrap.java58 import com.sun.identity.saml2.assertion.Advice;
271 * @return Advice Credential advice
273 public Advice getCredentials() throws SAML2Exception {
274 Advice advice = null;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DDiscoveryBootstrap.java58 import com.sun.identity.saml2.assertion.Advice;
271 * @return Advice Credential advice
273 public Advice getCredentials() throws SAML2Exception {
274 Advice advice = null;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java59 import com.sun.identity.saml2.assertion.Advice;
76 private Advice advice;
98 public static String ASSERTION_ADVICE = "Advice";
313 // The next subelement may be <Advice>
443 public Advice getAdvice() {
454 public void setAdvice(Advice advice) throws SAML2Exception {
H A DAdviceImpl.java40 import com.sun.identity.saml2.assertion.Advice;
50 * The <code>Advice</code> contains any additional information that the
53 * validity of the assertion. An <code>Advice</code> contains a mixture
57 public class AdviceImpl implements Advice {
66 public static String ADVICE_ELEMENT = "Advice";
79 * This constructor is used to build <code>Advice</code> object from a
83 * a <code>Advice</code> object
101 * This constructor is used to build <code>Advice</code> object from a
105 * DOM tree for <code>Advice</code> object
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java61 import com.sun.identity.saml2.assertion.Advice;
78 private Advice advice;
100 public static String ASSERTION_ADVICE = "Advice";
315 // The next subelement may be <Advice>
445 public Advice getAdvice() {
456 public void setAdvice(Advice advice) throws SAML2Exception {
H A DAdviceImpl.java40 import com.sun.identity.saml2.assertion.Advice;
50 * The <code>Advice</code> contains any additional information that the
53 * validity of the assertion. An <code>Advice</code> contains a mixture
57 public class AdviceImpl implements Advice {
66 public static String ADVICE_ELEMENT = "Advice";
79 * This constructor is used to build <code>Advice</code> object from a
83 * a <code>Advice</code> object
101 * This constructor is used to build <code>Advice</code> object from a
105 * DOM tree for <code>Advice</code> object
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityAssertion.java36 import com.sun.identity.saml.assertion.Advice;
153 * the conditions when creating a new assertion, <code>Advice</code>
165 * @param advice <code>Advice</code> applicable for this
176 Date issueInstant, Conditions conditions, Advice advice,
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityAssertion.java36 import com.sun.identity.saml.assertion.Advice;
153 * the conditions when creating a new assertion, <code>Advice</code>
165 * @param advice <code>Advice</code> applicable for this
176 Date issueInstant, Conditions conditions, Advice advice,

Completed in 86 milliseconds

12