Skip to content

Commit

Permalink
Added mutable interface to PrismAccessDefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
tonydamage committed May 25, 2021
1 parent 4a3912a commit 2a71216
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -46,4 +46,14 @@ public interface PrismItemAccessDefinition {
* itself: the "shell" of the container.
*/
boolean canAdd();

interface Mutable extends PrismItemAccessDefinition {

void setCanRead(boolean val);

void setCanModify(boolean val);

void setCanAdd(boolean val);

}
}

0 comments on commit 2a71216

Please sign in to comment.