1 16 17 package org.apache.jetspeed.om.registry; 18 19 import org.apache.jetspeed.om.SecurityReference; 21 22 30 public interface RegistryEntry 31 { 32 36 public long getId(); 37 38 42 public String getName(); 43 44 48 public void setName(String name); 49 50 53 public String getTitle(); 54 55 59 public void setTitle(String title); 60 61 64 public String getDescription(); 65 66 70 public void setDescription(String description); 71 72 75 public Security getSecurity(); 76 77 81 public void setSecurity(Security security); 82 83 86 public MetaInfo getMetaInfo(); 87 88 92 public void setMetaInfo(MetaInfo metainfo); 93 94 95 99 public boolean isHidden(); 100 101 105 public void setHidden(boolean hidden); 106 107 110 public SecurityReference getSecurityRef(); 111 112 115 public void setSecurityRef(SecurityReference securityRef); 116 117 } 118 | Popular Tags |