1 22 23 package hero.util; 24 25 import java.io.Serializable ; 26 import java.util.*; 27 28 public final class ProjectRoles implements Serializable , java.lang.Cloneable { 29 30 32 35 private Collection roles; 36 37 39 43 public Collection getRole() { 44 return (roles); 45 } 46 47 51 public void setRole(Collection roles) { 52 this.roles = roles; 53 } 54 55 public ProjectRoles(){} 56 57 public Object clone() throws java.lang.CloneNotSupportedException { 58 return super.clone(); 59 } 60 61 } 62 | Popular Tags |