Fix sonar blocker in ChefAdpater
[appc.git] / appc-asdc-listener / appc-asdc-listener-bundle / src / main / java / org / openecomp / appc / sdc / artifacts / impl / ArtifactProcessorFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.sdc.artifacts.impl;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import org.openecomp.appc.adapter.message.EventSender;
30 import org.openecomp.appc.sdc.artifacts.ArtifactProcessor;
31 import org.openecomp.appc.sdc.artifacts.object.ArtifactType;
32 import org.openecomp.appc.sdc.listener.AsdcListener;
33 import org.openecomp.sdc.api.IDistributionClient;
34 import org.openecomp.sdc.api.notification.IArtifactInfo;
35 import org.openecomp.sdc.api.notification.INotificationData;
36 import org.openecomp.sdc.api.notification.IResourceInstance;
37
38 import java.net.URI;
39
40 /**
41  * Factory class for creating instance of Artifact Processor
42  */
43 public class ArtifactProcessorFactory {
44
45     private static final EELFLogger logger = EELFManager.getInstance().getLogger(ArtifactProcessorFactory.class);
46
47     private ArtifactProcessorFactory (){
48
49     }
50
51     /**
52      * Provides and instance of Artifact Processor
53      * @param client an instance of IDistributionClient
54      * @param eventSender an instance of EventSender
55      * @param notification an instance of INotificationData
56      * @param resource an instance of IResourceInstance
57      * @param artifact an instance of IArtifactInfo
58      * @param storeUri
59      * @return
60      */
61     public static ArtifactProcessor getArtifactProcessor(IDistributionClient client, EventSender eventSender,
62                                                          INotificationData notification, IResourceInstance resource,
63                                                          IArtifactInfo artifact, URI storeUri) {
64
65         logger.debug("Creating artifact processor for artifact type = " + artifact.getArtifactType());
66         ArtifactType artifactType = ArtifactType.getArtifactType(artifact.getArtifactType());
67         if(artifactType == null){
68             return null;
69         }
70         ArtifactProcessor artifactProcessor = null;
71         switch (artifactType){
72             case APPC_CONFIG :
73                 artifactProcessor = new ConfigArtifactProcessor(client, eventSender, notification, resource,
74                         artifact, storeUri);
75                 break;
76             case VF_LICENSE:
77                 artifactProcessor = new LicenseArtifactProcessor(client,eventSender,notification,resource,
78                         artifact,storeUri);
79                 break;
80             case TOSCA_CSAR:
81                 artifactProcessor = new ToscaCsarArtifactProcessor(client,eventSender,notification,resource,
82                         artifact,storeUri);
83             default:
84                 break;
85         }
86         return artifactProcessor;
87     }
88
89 }