1 16 17 package org.apache.jetspeed.om.profile.psml; 18 19 import org.apache.jetspeed.om.SecurityReference; 21 import org.apache.jetspeed.om.profile.*; 22 23 31 public class PsmlEntry extends PsmlIdentityElement implements Entry 32 { 33 34 private String parent = null; 35 36 37 private SecurityReference securityRef; 38 39 40 public String getParent() 41 { 42 return this.parent; 43 } 44 45 50 public void setParent( String parent ) 51 { 52 this.parent = parent; 53 } 54 55 58 public SecurityReference getSecurityRef() 59 { 60 return securityRef; 61 } 62 63 66 public void setSecurityRef(SecurityReference securityRef) 67 { 68 this.securityRef = securityRef; 69 } 70 71 91 92 95 public Object clone() 96 throws java.lang.CloneNotSupportedException 97 { 98 Object cloned = super.clone(); 99 100 ((PsmlEntry)cloned).securityRef = ((this.securityRef == null) ? null : (SecurityReference) this.securityRef.clone()); 102 103 return cloned; 104 105 } } 107 108 | Popular Tags |