/* * ALMA - Atacama Large Millimiter Array (c) European Southern Observatory, * 2002 Copyright by ESO (in the framework of the ALMA collaboration), All * rights reserved * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation; either version 2.1 of the License, or (at your * option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation, * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package alma.lifecycleTest.TestLifeCycleCompImpl; import alma.ACS.ComponentStates; import alma.acs.component.ComponentLifecycle; import alma.acs.container.ContainerServices; import alma.lifecycleTest.TestLifeCycleCompOperations; import java.util.logging.Logger; public class TestLifeCycleCompImpl implements ComponentLifecycle, TestLifeCycleCompOperations { private ContainerServices m_containerServices; private Logger m_logger; ///////////////////////////////////////////////////////////// // Implementation of ComponentLifecycle ///////////////////////////////////////////////////////////// public void initialize(ContainerServices containerServices) { m_containerServices = containerServices; m_logger = m_containerServices.getLogger(); } public void execute() { } public void cleanUp() { } public void aboutToAbort() { cleanUp(); } ///////////////////////////////////////////////////////////// // Implementation of ACSComponent ///////////////////////////////////////////////////////////// public ComponentStates componentState() { return m_containerServices.getComponentStateManager().getCurrentState(); } public String name() { return m_containerServices.getName(); } ///////////////////////////////////////////////////////////// // Implementation of Interfaces ///////////////////////////////////////////////////////////// public void dummyInterface(){ m_logger.info("dummyInterface called..."); } }