ReadOnlyRole.java
516 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.cq.projects.impl.team;
import com.adobe.cq.projects.impl.team.GenericRole;
import com.adobe.cq.projects.impl.team.RoleClass;
public class ReadOnlyRole
extends GenericRole {
public ReadOnlyRole(String id, String displayName, RoleClass roleClass) {
super(id, displayName, roleClass, null);
}
@Override
public void setDefaultMembers(String[] defaultMembers) {
throw new RuntimeException("This role cannot be modified");
}
}