1 16 17 package org.apache.jetspeed.om.profile.psml; 18 19 import org.apache.jetspeed.om.profile.Role; 20 21 29 public class PsmlRole implements Role, java.io.Serializable  30 { 31 32 private String name = null; 33 34 public PsmlRole() 35 {} 36 37 38 public String getName() 39 { 40 return this.name; 41 } 42 43 46 public void setName( String name ) 47 { 48 this.name = name; 49 } 50 51 } | Popular Tags |