// make sure this user is an owner, and therefore has permission
// to set the server state of this component. Note we don't
// check the user if their ID is null (that means it is the system
// doing the setting) or if there are no owners.
ClientIdentityManager cim = AppContext.getManager(ClientIdentityManager.class);
WonderlandIdentity id = cim.getClientID();
if (id != null && owners != null && !owners.isEmpty()) {
// make a request to set the permissions if this is an owner
Resource ownerRsrc = new OwnerResource(cellRef.get().getCellID().toString(),
owners);
ActionMap am = new ActionMap(ownerRsrc, new OwnerAction());