Skip to Content.
Sympa Menu

mace-opensaml-users - Possible bug in AuthzDecisionStatementImpl

Subject: OpenSAML user discussion

List archive

Possible bug in AuthzDecisionStatementImpl


Chronological Thread 
  • From: Fátima Milla Olaya <>
  • To:
  • Subject: Possible bug in AuthzDecisionStatementImpl
  • Date: Mon, 22 Oct 2007 15:21:20 +0200

Hi, I am new in opensaml but in the schema of the AuthzDecisionStatement the element Evidence maybe doesn't exist (minOccurs="0") so in the method getOrderedChildren of AuthzDecisionStatementImpl should there be an ·if· for verifying its existence?
public List<XMLObject> getOrderedChildren() {
ArrayList<XMLObject> children = new ArrayList<XMLObject>();

children.addAll(actions);
* if(evidence!=null)*
children.add(evidence);
return Collections.unmodifiableList(children);
}
}



Archive powered by MHonArc 2.6.16.

Top of Page