if ((vogroup == null) || (vomsAttributes == null)) {
return false;
}
for (Iterator i = vogroup.iterator(); i.hasNext(); ) {
String fqan_str = (String)i.next();
FQAN fqan = new FQAN(fqan_str);
for (Iterator j = vomsAttributes.iterator(); j.hasNext(); ) {
VOMSAttribute attr = (VOMSAttribute)j.next();
if (containsGroup(fqan, attr)) {
return true;
}