blob: 666b6ec23b03ad11719f3784ebf0fb0b4c357faf [file] [log] [blame]
/*
* Copyright 2012 Paul Merlin.
*
* Licensed 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.zest.api.activation;
/**
* Adapter for Activator.
* <p>If you are thinking about Service activation, see {@link org.apache.zest.api.service.ServiceActivatorAdapter}.</p>
*
* @param <ActivateeType> Type of the activatee.
*/
public class ActivatorAdapter<ActivateeType>
implements Activator<ActivateeType>
{
/**
* Called before activatee activation.
* @param activating Activating activatee
*/
@Override
public void beforeActivation( ActivateeType activating )
throws Exception
{
}
/**
* Called after activatee activation.
* @param activated Activating activatee
*/
@Override
public void afterActivation( ActivateeType activated )
throws Exception
{
}
/**
* Called before activatee passivation.
* @param passivating Passivating activatee
*/
@Override
public void beforePassivation( ActivateeType passivating )
throws Exception
{
}
/**
* Called after activatee passivation.
* @param passivated Passivated activatee
*/
@Override
public void afterPassivation( ActivateeType passivated )
throws Exception
{
}
}