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 java.net.MalformedURLException;
29 import org.onap.appc.adapter.message.EventSender;
30 import org.onap.appc.exceptions.APPCException;
31 import org.onap.appc.sdc.artifacts.object.SDCArtifact;
32 import org.onap.appc.sdc.listener.ProviderOperations;
33 import org.onap.appc.sdc.listener.ProviderResponse;
34 import org.onap.appc.sdc.listener.Util;
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;
39 import com.att.eelf.configuration.EELFLogger;
40 import com.att.eelf.configuration.EELFManager;
43 * Artifact processor for config artifact type
45 public class ConfigArtifactProcessor extends AbstractArtifactProcessor {
47 private final EELFLogger logger = EELFManager.getInstance().getLogger(ConfigArtifactProcessor.class);
50 * 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,
60 IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
61 super(client, eventSender, notification, resource, artifact, storeUri);
65 public void processArtifact(SDCArtifact artifact) throws APPCException {
67 Util.toSdcStoreDocumentInput(notification, resource, super.artifact, artifact.getArtifactContent());
68 logger.debug("ConfigArtifactProcessor::processArtifact::postData=" + postData);
70 if (null != storeUri) {
71 logger.debug("ConfigArtifactProcessor::processArtifact::URI is" + storeUri.toString());
72 ProviderResponse result = ProviderOperations.post(storeUri.toURL(), postData, null);
73 if (result.getStatus() == 200) {
74 logger.debug("ConfigArtifactProcessor::processArtifact::post request success!!");
75 Util.parseResponse(result.getBody());
77 logger.debug("ConfigArtifactProcessor::processArtifact()::post request failed!! Returned :"
78 + result.getStatus() + "-Result body- " + result.getBody());
79 throw new APPCException(
80 "ConfigArtifactProcessor::processArtifact: Invalid status retrurned from post "
81 + result.getStatus());
84 logger.error("ConfigArtifactProcessor::processArtifact, storeURI is null");
86 } catch (MalformedURLException | APPCException e) {
87 logger.error("Error processing artifact : " + this.artifact.toString(), e);
88 throw new APPCException(e.getMessage(), e);