All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ymate.platform.plugin.IPluginConfig Maven / Gradle / Ivy

/*
 * Copyright 2007-2107 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;


/**
 * 

* IPluginConfig *

*

* 插件初始化配置接口; *

* * @author 刘镇([email protected]) * @version 0.0.0 * * * * * * * * * * * *
版本号动作修改人修改时间
0.0.0创建类刘镇2012-11-30下午6:35:14
*/ public interface IPluginConfig { /** * @return 返回插件工厂接口实现类对象 */ public IPluginFactory getPluginFactoryClassImpl(); /** * @return 返回插件主配置文件分析器接口实现类对象 */ public IPluginParser getPluginParserClassImpl(); /** * @return 返回插件附加配置分析器接口实现类对象 */ public IPluginExtraParser getPluginExtraParserClassImpl(); /** * @return 是否加载当前CLASSPATH内的所有包含插件主配置文件的Jar包 */ public boolean isIncludeClassPath(); /** * @return 是否允许插件自动启动 */ public boolean isAllowAutomatic(); /** * @return 返回插件存放路径 */ public String getPluginHomePath(); /** * @return 返回插件主配置文件名称,若不提供则默认采用:ymate_plugin.xml */ public String getPluginManifestFile(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy