1 16 17 package org.apache.jetspeed.om; 18 19 import org.apache.jetspeed.om.SecurityReference; 21 22 28 public class BaseSecurityReference implements SecurityReference 29 { 30 31 32 private String parent; 33 34 35 public BaseSecurityReference() 36 { 37 } 38 39 42 public String getParent() 43 { 44 return parent; 45 } 46 47 50 public void setParent(String parent) 51 { 52 this.parent = parent; 53 } 54 55 58 public Object clone() 59 throws java.lang.CloneNotSupportedException  60 { 61 BaseSecurityReference cloned = new BaseSecurityReference(); 62 cloned.parent = this.parent; 63 64 return cloned; 65 66 } } 68 | Popular Tags |