1 16 17 package org.apache.jetspeed.om.profile; 18 19 import org.apache.jetspeed.om.profile.Portlets; 20 import org.apache.jetspeed.om.profile.Entry; 21 22 import java.io.Serializable ; 23 31 public interface PSMLDocument extends Serializable , Cloneable 32 { 33 36 public String getName(); 37 38 43 public void setName(String name); 44 45 51 public Portlets getPortlets(); 52 53 58 public void setPortlets(Portlets portlets); 59 60 66 public Entry getEntry(String name); 67 68 74 public Entry getEntryById(String entryId); 75 76 82 public Portlets getPortlets(String name); 83 84 90 public Portlets getPortletsById(String portletId); 91 92 101 public Portlets getPortlets(int position); 102 103 110 public boolean removeEntryById(String entryId); 111 112 115 public Object clone() 116 throws java.lang.CloneNotSupportedException ; 117 118 } 119 120 | Popular Tags |