001: /**
002: * EasyBeans
003: * Copyright (C) 2006 Bull S.A.S.
004: * Contact: easybeans@ow2.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: LifeCycleCallback.java 2054 2007-11-20 14:43:55Z benoitf $
023: * --------------------------------------------------------------------------
024: */package org.ow2.easybeans.deployment.xml.struct.common;
025:
026: /**
027: * This class defines the implementation of an element of callback type (post
028: * construct, pre destroy, etc).
029: * @author Florent Benoit
030: */
031: public class LifeCycleCallback {
032:
033: /**
034: * Name of this element.
035: */
036: public static final String POST_ACTIVATE = "post-activate";
037:
038: /**
039: * Name of this element.
040: */
041: public static final String POST_CONSTRUCT = "post-construct";
042:
043: /**
044: * Name of this element.
045: */
046: public static final String PRE_DESTROY = "pre-destroy";
047:
048: /**
049: * Name of this element.
050: */
051: public static final String PRE_PASSIVATE = "pre-passivate";
052:
053: /**
054: * Element <lifecycle-callback-class>.
055: */
056: private String lifecycleCallbackClass = null;
057:
058: /**
059: * Element <lifecycle-callback-method>.
060: */
061: private String lifecycleCallbackMethod = null;
062:
063: /**
064: * Constructor.
065: */
066: public LifeCycleCallback() {
067:
068: }
069:
070: /**
071: * Sets the name of the class.
072: * @param lifecycleCallbackClass the name of the class
073: */
074: public void setLifecycleCallbackClass(
075: final String lifecycleCallbackClass) {
076: this .lifecycleCallbackClass = lifecycleCallbackClass;
077: }
078:
079: /**
080: * @return the class value.
081: */
082: public String getLifecycleCallbackClass() {
083: return lifecycleCallbackClass;
084: }
085:
086: /**
087: * Sets the name of the method.
088: * @param lifecycleCallbackMethod the name of the method
089: */
090: public void setMethodName(final String lifecycleCallbackMethod) {
091: this .lifecycleCallbackMethod = lifecycleCallbackMethod;
092: }
093:
094: /**
095: * @return the method name.
096: */
097: public String getLifecycleCallbackMethod() {
098: return lifecycleCallbackMethod;
099: }
100:
101: }
|