1 16 package org.apache.cocoon.components.repository.helpers; 17 18 import java.util.Set ; 19 20 23 public class Principal { 24 25 private String name; 26 private String group; 27 private Set roles; 28 29 36 public Principal(String name, String group, Set roles) { 37 this.name = name; 38 this.group = group; 39 this.roles = roles; 40 } 41 42 47 public String getName() { 48 return this.name; 49 } 50 51 56 public String getGroup() { 57 return this.group; 58 } 59 60 65 public Set getRoles() { 66 return this.roles; 67 } 68 69 } | Popular Tags |