本文整理汇总了Java中org.pentaho.di.core.annotations.LifecyclePlugin类的典型用法代码示例。如果您正苦于以下问题:Java LifecyclePlugin类的具体用法?Java LifecyclePlugin怎么用?Java LifecyclePlugin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LifecyclePlugin类属于org.pentaho.di.core.annotations包,在下文中一共展示了LifecyclePlugin类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: LifecyclePluginType
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
private LifecyclePluginType() {
super(LifecyclePlugin.class, "LIFECYCLE LISTENERS", "Lifecycle listener plugin type");
populateFolders("repositories");
}
示例2: extractID
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractID(Annotation annotation) {
return ((LifecyclePlugin) annotation).id();
}
示例3: extractName
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractName(Annotation annotation) {
return ((LifecyclePlugin) annotation).name();
}
示例4: LifecyclePluginType
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
private LifecyclePluginType() {
super( LifecyclePlugin.class, "LIFECYCLE LISTENERS", "Lifecycle listener plugin type" );
populateFolders( "repositories" );
}
示例5: extractID
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractID( Annotation annotation ) {
return ( (LifecyclePlugin) annotation ).id();
}
示例6: extractName
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractName( Annotation annotation ) {
return ( (LifecyclePlugin) annotation ).name();
}
示例7: extractClassLoaderGroup
import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractClassLoaderGroup( Annotation annotation ) {
return ( (LifecyclePlugin) annotation ).classLoaderGroup();
}