Lines Matching defs:statements

80     private List<Object> statements = new ArrayList();
322 // The next subelements are all statements
347 statements.add(XMLUtils.print((Element)child));
523 * Returns the statements of the assertion
525 * @return the statements of the assertion
529 return statements;
533 * Returns the Authn statements of the assertion
535 * @return the Authn statements of the assertion
553 * Returns the attribute statements of the assertion
555 * @return the attribute statements of the assertion
563 * Sets the statements of the assertion
565 * @param statements the statements of the assertion
569 public void setStatements(List<Object> statements) throws SAML2Exception {
574 this.statements = statements;
580 * @param statements the <code>AuthnStatements</code> of the assertion
584 public void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception {
589 authnStatements = statements;
595 * @param statements the <code>AuthzDecisionStatements</code> of
600 public void setAuthzDecisionStatements(List<AuthzDecisionStatement> statements)
606 authzDecisionStatements = statements;
610 * Sets the attribute statements of the assertion
612 * @param statements the attribute statements of the assertion
616 public void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception {
621 attributeStatements = statements;
831 if (statements != null) {
832 length = statements.size();
834 String str = (String)statements.get(i);
914 if (statements != null) {
915 statements = Collections.unmodifiableList(statements);