1 25 26 package org.objectweb.easybeans.deployment.xml.struct; 27 28 33 public class LifeCycleCallback { 34 35 38 public static final String POST_CONSTRUCT = "post-construct"; 39 40 43 public static final String PRE_DESTROY = "pre-destroy"; 44 45 48 private String className = null; 49 50 53 private String method = null; 54 55 59 public String getClassName() { 60 return className; 61 } 62 63 67 public void setClassName(final String className) { 68 this.className = className; 69 } 70 71 75 public String getMethod() { 76 return method; 77 } 78 79 83 public void setMethod(final String method) { 84 this.method = method; 85 } 86 87 } 88 | Popular Tags |