aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java')
-rw-r--r--catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java
index de115b5099..19cc14ed0d 100644
--- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/version/OnChangeVersionCommand.java
@@ -17,23 +17,21 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.sdc.be.components.impl.version;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.model.Component;
-
@FunctionalInterface
public interface OnChangeVersionCommand {
-
+
/**
* A side effect operation to execute when a component instance version was changed from {@code prevVersion} to {@code newVersion}
- * @param container the container which contains the instance which is version was changed
+ *
+ * @param container the container which contains the instance which is version was changed
* @param prevVersion the previous version of the component instance.
- * @param newVersion the new version of the component instance.
+ * @param newVersion the new version of the component instance.
* @return the status of the operation
*/
ActionStatus onChangeVersion(Component container);
-
}