1 16 17 package org.apache.jetspeed.services.forward.configuration.impl; 18 19 import org.apache.jetspeed.services.forward.configuration.Page; 20 21 27 public class PageImpl implements Page, java.io.Serializable 28 { 29 30 private String name; 31 private String user; 32 private String role; 33 private String group; 34 35 36 public String getName() 37 { 38 return this.name; 39 } 40 41 public void setName(String name) 42 { 43 this.name = name; 44 } 45 46 public String getUser() 47 { 48 return this.user; 49 } 50 51 public void setUser(String user) 52 { 53 this.user = user; 54 } 55 56 public String getRole() 57 { 58 return this.role; 59 } 60 61 public void setRole(String role) 62 { 63 this.role = role; 64 } 65 66 public String getGroup() 67 { 68 return this.group; 69 } 70 71 public void setGroup(String group) 72 { 73 this.group = group; 74 } 75 76 77 } 78 79 80 81 | Popular Tags |