Restapi-call-node: Fix setting truststore, should not set system properties
[ccsdk/sli/plugins.git] / restapi-call-node / provider / src / main / java / org / onap / ccsdk / sli / plugins / restapicall / Parameters.java
old mode 100644 (file)
new mode 100755 (executable)
index 8d1335c..9b542af
@@ -2,15 +2,15 @@
  * ============LICENSE_START=======================================================
  * openECOMP : SDN-C
  * ================================================================================
- * Copyright (C) 2017 ONAP Intellectual Property. All rights
- *                                             reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ *                     reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -26,6 +26,7 @@ import java.util.Set;
 public class Parameters {
     public String templateFileName;
     public String restapiUrl;
+    public String restapiUrlSuffix;
     public String restapiUser;
     public String restapiPassword;
     public Format format;
@@ -37,10 +38,19 @@ public class Parameters {
     public boolean convertResponse;
     public String keyStoreFileName;
     public String keyStorePassword;
-    public String trustStoreFileName;
-    public String trustStorePassword;
     public boolean ssl;
     public String customHttpHeaders;
     public String partner;
     public Boolean dumpHeaders;
+    public String requestBody;
+    public String oAuthConsumerKey;
+    public String oAuthConsumerSecret;
+    public String oAuthSignatureMethod;
+    public String oAuthVersion;
+    public AuthType authtype;
+    public Boolean returnRequestPayload;
+    public String accept;
+    public boolean multipartFormData;
+    public String multipartFile;
+    public String targetEntity;
 }