//[-u user_list]
@OptionAnnotation(value = "-u", extra = OptionAnnotation.MAX_ARG_VALUE)
public void setUserList(final OptionInfo oi) throws JGDIException {
for (String user : oi.getArgs()) {
if (user.startsWith("!")) {
ARA xacl = new ARAImpl(user.substring(1));
ar.addXacl(xacl);
} else {
ARA acl = new ARAImpl(user);
ar.addAcl(acl);
}
}
oi.optionDone();
}