
org.apache.geronimo.kernel.proxy.GeronimoManagedBean Maven / Gradle / Ivy
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.geronimo.kernel.proxy;
import org.apache.geronimo.kernel.management.State;
/**
* Interface provided by proxies generated by the Geronimo proxy managers.
* This lets a client call any of these methods on a proxy representing
* any Geronimo GBean. However, this should not be used on any arbitrary
* GBean reference, as it might not be a proxy generated by Geronimo (for
* example, if you're running the GBean in Spring).
*
* Note that this includes the content of the JSR-77 StateManageable type,
* as well as getObjectName from the JSR-77 J2EEManagedObject type.
* However, it is not explicitly related to JSR-77 as that is not required
* in order to use the Geronimo kernel.
*
* @version $Rev: 476049 $ $Date: 2006-11-17 12:35:17 +0800 (Fri, 17 Nov 2006) $
*/
public interface GeronimoManagedBean {
/**
* Gets the unique name of this object. The object name must comply with the ObjectName specification
* in the JMX specification and the restrictions in the J2EEManagementInterface.
*
* @return the unique name of this object within the server
*/
String getObjectName();
/**
* Gets the state of this component as an int.
* The int return is required by the JSR77 specification.
*
* @return the current state of this component
* @see #getStateInstance to obtain the State instance
*/
int getState();
/**
* Gets the state of this component as a State instance.
*
* @return the current state of this component
*/
State getStateInstance();
/**
* Gets the start time of this component
*
* @return time in milliseonds since epoch that this component was started.
*/
long getStartTime();
/**
* Transitions the component to the starting state. This method has access to the
* container.
*
* Normally a component uses this to cache data from other components. The other components will
* have been created at this stage, but not necessairly started and may not be ready to have methods
* invoked on them.
*
* @throws Exception if a problem occurs during the transition
* @throws IllegalStateException if this interceptor is not in the stopped or failed state
*/
void start() throws Exception, IllegalStateException;
/**
* Transitions the component to the starting state. This method has access to the
* container.
*
* If this Component is a Container, then startRecursive is called on all child Components
* that are in the STOPPED or FAILED state.
* Normally a component uses this to cache data from other components. The other components will
* have been created at this stage, but not necessairly started and may not be ready to have methods
* invoked on them.
*
* @throws Exception if a problem occurs during the transition
* @throws IllegalStateException if this interceptor is not in the STOPPED or FAILED state
*/
void startRecursive() throws Exception, IllegalStateException;
/**
* Transitions the component to the stopping state. This method has access to the
* container.
*
* If this is Component is a Container, then all its child components must be in the
* STOPPED or FAILED State.
*
* Normally a component uses this to drop references to data cached in the start method.
* The other components will not necessairly have been stopped at this stage and may not be ready
* to have methods invoked on them.
*
* @throws Exception if a problem occurs during the transition
* @throws IllegalStateException if this interceptor is not in the STOPPED or FAILED state
*/
void stop() throws Exception, IllegalStateException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy