You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2020/12/11 10:40:11 UTC

[incubator-hop] branch master updated: HOP-2285 Remove unused annotation EnginePlugin

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new df7502e  HOP-2285 Remove unused annotation EnginePlugin
     new 5ba3724  Merge pull request #455 from nadment/HOP-2285
df7502e is described below

commit df7502ee2b7d5f3ceb2d37ba2db246ddf795faa8
Author: nadment <na...@gmail.com>
AuthorDate: Thu Dec 10 23:53:21 2020 +0100

    HOP-2285 Remove unused annotation EnginePlugin
---
 .../apache/hop/core/annotations/EnginePlugin.java  | 61 ----------------------
 1 file changed, 61 deletions(-)

diff --git a/engine/src/main/java/org/apache/hop/core/annotations/EnginePlugin.java b/engine/src/main/java/org/apache/hop/core/annotations/EnginePlugin.java
deleted file mode 100644
index ee4f08d..0000000
--- a/engine/src/main/java/org/apache/hop/core/annotations/EnginePlugin.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*! ******************************************************************************
- *
- * Hop : The Hop Orchestration Platform
- *
- * Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
- *
- *******************************************************************************
- *
- * 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.hop.core.annotations;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Created by nbaker on 1/4/17.
- */
-
-@Documented
-@Retention( RetentionPolicy.RUNTIME )
-@Target( ElementType.TYPE )
-public @interface EnginePlugin {
-  /**
-   * @return The ID of the password encoder plugin. You can specify more than one ID in a comma separated format: id1,id2,id3 for
-   * deprecation purposes.
-   */
-  String id();
-
-  String name();
-
-  String description() default "";
-
-  /**
-   * @return True if a separate class loader is needed every time this class is instantiated
-   */
-  boolean isSeparateClassLoaderNeeded() default false;
-
-  String documentationUrl() default "";
-
-  String casesUrl() default "";
-
-  String forumUrl() default "";
-
-  String classLoaderGroup() default "";
-}