1 package org.apache.beehive.wsm.axis.security.model; 2 3 22 23 import org.apache.beehive.wsm.axis.security.Role; 24 25 public class MemoryRoleImpl implements Role { 26 27 private String name; 28 29 public MemoryRoleImpl () 30 { 31 } 32 33 public String getName() 34 { 35 return name; 36 } 37 38 public void setName( String name ) 39 { 40 this.name = name; 41 } 42 43 } 44 45 46 | Popular Tags |