2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.appc.sdc.artifacts.impl;
 
  27 import org.onap.appc.adapter.message.EventSender;
 
  28 import org.onap.appc.sdc.listener.ProviderOperations;
 
  29 import org.onap.appc.sdc.listener.ProviderResponse;
 
  30 import org.onap.appc.sdc.listener.Util;
 
  31 import org.onap.appc.exceptions.APPCException;
 
  32 import com.att.eelf.configuration.EELFLogger;
 
  33 import com.att.eelf.configuration.EELFManager;
 
  34 import org.onap.appc.sdc.artifacts.object.SDCArtifact;
 
  35 import org.openecomp.sdc.api.IDistributionClient;
 
  36 import org.openecomp.sdc.api.notification.IArtifactInfo;
 
  37 import org.openecomp.sdc.api.notification.INotificationData;
 
  38 import org.openecomp.sdc.api.notification.IResourceInstance;
 
  40 import java.net.MalformedURLException;
 
  44  * Artifact processor for config artifact type
 
  46 public class ConfigArtifactProcessor extends AbstractArtifactProcessor {
 
  48     private final EELFLogger logger = EELFManager.getInstance().getLogger(ConfigArtifactProcessor.class);
 
  51      * returns an instance of ConfigArtifactProcessor
 
  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 an instance of URI
 
  59     public ConfigArtifactProcessor(IDistributionClient client, EventSender eventSender, INotificationData notification, IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
 
  60         super(client,eventSender,notification,resource,artifact,storeUri);
 
  64     public void processArtifact(SDCArtifact artifact) throws APPCException {
 
  65         String postData = Util.toSdcStoreDocumentInput(notification, resource, super.artifact, artifact.getArtifactContent());
 
  67             ProviderResponse result = ProviderOperations.post(storeUri.toURL(), postData, null);
 
  68             if (result.getStatus() == 200) {
 
  69                 Util.parseResponse(result.getBody());
 
  71         } catch (MalformedURLException | APPCException e) {
 
  72             logger.error("Error processing artifact : " + this.artifact.toString(),e);
 
  73             throw new APPCException(e.getMessage(),e);