Lines Matching defs:statements

82     private List<Object> statements = new ArrayList();
324 // The next subelements are all statements
349 statements.add(XMLUtils.print((Element)child));
525 * Returns the statements of the assertion
527 * @return the statements of the assertion
531 return statements;
535 * Returns the Authn statements of the assertion
537 * @return the Authn statements of the assertion
555 * Returns the attribute statements of the assertion
557 * @return the attribute statements of the assertion
565 * Sets the statements of the assertion
567 * @param statements the statements of the assertion
571 public void setStatements(List<Object> statements) throws SAML2Exception {
576 this.statements = statements;
582 * @param statements the <code>AuthnStatements</code> of the assertion
586 public void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception {
591 authnStatements = statements;
597 * @param statements the <code>AuthzDecisionStatements</code> of
602 public void setAuthzDecisionStatements(List<AuthzDecisionStatement> statements)
608 authzDecisionStatements = statements;
612 * Sets the attribute statements of the assertion
614 * @param statements the attribute statements of the assertion
618 public void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception {
623 attributeStatements = statements;
833 if (statements != null) {
834 length = statements.size();
836 String str = (String)statements.get(i);
916 if (statements != null) {
917 statements = Collections.unmodifiableList(statements);