Catalog alignment
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / utils / ExceptionUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22 package org.openecomp.sdc.be.components.impl.utils;
23
24 import org.openecomp.sdc.be.components.impl.exceptions.ByActionStatusComponentException;
25 import org.openecomp.sdc.be.components.impl.exceptions.ByResponseFormatComponentException;
26 import org.openecomp.sdc.be.dao.api.ActionStatus;
27 import org.openecomp.sdc.be.dao.janusgraph.JanusGraphOperationStatus;
28 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
29 import org.openecomp.sdc.be.model.operations.StorageException;
30 import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;
31 import org.openecomp.sdc.exception.ResponseFormat;
32 import org.springframework.stereotype.Component;
33
34 @Component
35 public class ExceptionUtils {
36
37     private final JanusGraphDao janusGraphDao;
38
39     public ExceptionUtils(JanusGraphDao janusGraphDao) {
40         this.janusGraphDao = janusGraphDao;
41     }
42
43     public <T> T rollBackAndThrow(ActionStatus actionStatus, String ... params) {
44          janusGraphDao.rollback();
45          throw new ByActionStatusComponentException(actionStatus, params);
46      }
47
48     public <T> T rollBackAndThrow(ResponseFormat responseFormat) {
49         janusGraphDao.rollback();
50         throw new ByResponseFormatComponentException(responseFormat);
51     }
52
53     public <T> T rollBackAndThrow(StorageOperationStatus status, String ... params) {
54         janusGraphDao.rollback();
55         throw new StorageException(status, params);
56     }
57
58     public <T> T rollBackAndThrow(JanusGraphOperationStatus status, String ... params) {
59         janusGraphDao.rollback();
60         throw new StorageException(status, params);
61     }
62
63
64
65
66 }