net.ymate.platform.plugin.AbstractPlugin Maven / Gradle / Ivy
/*
* Copyright 2007-2017 the original author or authors.
*
* 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 net.ymate.platform.plugin;
/**
* 插件启动器接口抽象实现,完成必要参数的赋值动作
*
* @author 刘镇 ([email protected]) on 2012-4-20 下午5:30:30
* @version 1.0
*/
public abstract class AbstractPlugin implements IPlugin {
protected IPluginContext __context;
protected boolean __inited;
protected boolean __started;
public void init(IPluginContext context) throws Exception {
this.__context = context;
this.__inited = true;
}
public IPluginContext getPluginContext() {
return __context;
}
public boolean isInited() {
return __inited;
}
public boolean isStarted() {
return __started;
}
public void startup() throws Exception {
this.__started = true;
}
public void shutdown() throws Exception {
this.__started = false;
}
public void destroy() throws Exception {
this.__inited = false;
this.__context = null;
}
}