First part of onap rename
[appc.git] / appc-sdc-listener / appc-sdc-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.onap.appc.sdc.artifacts.impl;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import org.onap.appc.adapter.message.EventSender;
30 import org.onap.appc.sdc.artifacts.ArtifactProcessor;
31 import org.onap.appc.sdc.artifacts.object.ArtifactType;
32 import org.openecomp.sdc.api.IDistributionClient;
33 import org.openecomp.sdc.api.notification.IArtifactInfo;
34 import org.openecomp.sdc.api.notification.INotificationData;
35 import org.openecomp.sdc.api.notification.IResourceInstance;
36
37 import java.net.URI;
38
39 /**
40  * Factory class for creating instance of Artifact Processor
41  */
42 public class ArtifactProcessorFactory {
43
44     private static final EELFLogger logger = EELFManager.getInstance().getLogger(ArtifactProcessorFactory.class);
45
46     public ArtifactProcessorFactory (){
47
48     }
49
50     /**
51      * Provides and instance of Artifact Processor
52      * @param client an instance of IDistributionClient
53      * @param eventSender an instance of EventSender
54      * @param notification an instance of INotificationData
55      * @param resource an instance of IResourceInstance
56      * @param artifact an instance of IArtifactInfo
57      * @param storeUri
58      * @return
59      */
60     public ArtifactProcessor getArtifactProcessor(IDistributionClient client, EventSender eventSender,
61                                                          INotificationData notification, IResourceInstance resource,
62                                                          IArtifactInfo artifact, URI storeUri) {
63
64         logger.debug("Creating artifact processor for artifact type = " + artifact.getArtifactType());
65         ArtifactType artifactType = ArtifactType.getArtifactType(artifact.getArtifactType());
66         if(artifactType == null){
67             return null;
68         }
69         ArtifactProcessor artifactProcessor = null;
70         switch (artifactType){
71             case APPC_CONFIG :
72                 artifactProcessor = new ConfigArtifactProcessor(client, eventSender, notification, resource,
73                         artifact, storeUri);
74                 break;
75             case VF_LICENSE:
76                 artifactProcessor = new LicenseArtifactProcessor(client,eventSender,notification,resource,
77                         artifact,storeUri);
78                 break;
79             default:
80                 break;
81         }
82         return artifactProcessor;
83     }
84
85 }