Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / orchestration / AAICollectionResources.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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  */
20
21 package org.onap.so.client.orchestration;
22
23 import org.onap.so.bpmn.common.InjectionHelper;
24 import org.onap.so.bpmn.servicedecomposition.bbobjects.Collection;
25 import org.onap.so.client.aai.AAIObjectType;
26 import org.onap.so.client.aai.entities.uri.AAIResourceUri;
27 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
28 import org.onap.so.client.aai.mapper.AAIObjectMapper;
29 import org.onap.so.db.catalog.beans.OrchestrationStatus;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Component;
32
33 @Component
34 public class AAICollectionResources {
35     @Autowired
36     private InjectionHelper injectionHelper;
37
38     @Autowired
39     private AAIObjectMapper aaiObjectMapper;
40
41     public void createCollection(Collection collection) {
42         AAIResourceUri networkCollectionURI =
43                 AAIUriFactory.createResourceUri(AAIObjectType.COLLECTION, collection.getId());
44         collection.setOrchestrationStatus(OrchestrationStatus.INVENTORIED);
45         org.onap.aai.domain.yang.Collection aaiCollection = aaiObjectMapper.mapCollection(collection);
46         injectionHelper.getAaiClient().create(networkCollectionURI, aaiCollection);
47     }
48
49     public void updateCollection(Collection collection) {
50         AAIResourceUri networkCollectionURI =
51                 AAIUriFactory.createResourceUri(AAIObjectType.COLLECTION, collection.getId());
52         org.onap.aai.domain.yang.Collection aaiCollection = aaiObjectMapper.mapCollection(collection);
53         injectionHelper.getAaiClient().update(networkCollectionURI, aaiCollection);
54     }
55
56     public void deleteCollection(Collection collection) {
57         AAIResourceUri instanceGroupUri = AAIUriFactory.createResourceUri(AAIObjectType.COLLECTION, collection.getId());
58         injectionHelper.getAaiClient().delete(instanceGroupUri);
59     }
60 }