1 16 package org.apache.cocoon.portal.pluto.om.common; 17 18 22 public class ResourceRef { 23 24 private String description = "my description"; 25 private String name = "name"; 26 private String type = "type"; 27 private String auth = "container"; 28 private String sharing = "shareable"; 29 30 33 public String getDescription() { 34 return description; 35 } 36 37 40 public String getName() { 41 return name; 42 } 43 44 49 public String getType() { 50 return type; 51 } 52 53 57 public String getAuth() { 58 return auth; 59 } 60 61 public String getSharing() { 62 return sharing; 63 } 64 65 68 public void setDescription(String string) { 69 description = string; 70 } 71 72 75 public void setName(String string) { 76 name = string; 77 } 78 79 public void setType(String string) { 80 type = string; 81 } 82 83 public void setAuth(String string) { 84 auth = string; 85 } 86 87 public void setSharing(String string) { 88 sharing = string; 89 } 90 } 91 | Popular Tags |