aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java26
1 files changed, 11 insertions, 15 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java b/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java
index 86ae7510a6..c99c0ce039 100644
--- a/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java
+++ b/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/healthcheck/dao/ActionDao.java
@@ -7,9 +7,9 @@
* 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.
@@ -17,9 +17,9 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.sdc.healthcheck.dao;
+import java.util.List;
import org.openecomp.core.dao.BaseDao;
import org.openecomp.sdc.action.dao.types.ActionEntity;
import org.openecomp.sdc.action.errors.ActionException;
@@ -27,25 +27,21 @@ import org.openecomp.sdc.action.types.Action;
import org.openecomp.sdc.action.types.OpenEcompComponent;
import org.openecomp.sdc.versioning.dao.VersionableDao;
-import java.util.List;
-
public interface ActionDao extends VersionableDao, BaseDao<ActionEntity> {
- public Action createAction(Action actionDto) throws ActionException;
-
- public Action updateAction(Action actionDto) throws ActionException;
+ public Action createAction(Action actionDto) throws ActionException;
- public void deleteAction(String actionInvariantUuId) throws ActionException;
+ public Action updateAction(Action actionDto) throws ActionException;
- public List<Action> getFilteredActions(String filterType, String filterId) throws ActionException;
+ public void deleteAction(String actionInvariantUuId) throws ActionException;
- public Action getActionsByActionUuId(String uniqueId) throws ActionException;
+ public List<Action> getFilteredActions(String filterType, String filterId) throws ActionException;
- public List<OpenEcompComponent> getEcompComponents() throws ActionException;
+ public Action getActionsByActionUuId(String uniqueId) throws ActionException;
- public List<Action> getActionsByActionInvariantUuId(String actionInvariantUuId)
- throws ActionException;
+ public List<OpenEcompComponent> getEcompComponents() throws ActionException;
- public Action getLockedAction(String actionInvariantUuId, String user) throws ActionException;
+ public List<Action> getActionsByActionInvariantUuId(String actionInvariantUuId) throws ActionException;
+ public Action getLockedAction(String actionInvariantUuId, String user) throws ActionException;
}