public RequestSecurityTokenResponseCollection createRSTRCollectionForIssue(List rstrs) throws WSTrustException {
//RequestSecurityTokenResponseCollection rstrc = new RequestSecurityTokenResponseCollectionImpl();
RequestSecurityTokenResponseCollectionImpl rstrc = new RequestSecurityTokenResponseCollectionImpl();
for (int i = 0; i < rstrs.size(); i++) {
rstrc.addRequestSecurityTokenResponse((RequestSecurityTokenResponse)rstrs.get(i));
}
return rstrc;
}
/**