rest api call node target entity
[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..8950df4
@@ -2,8 +2,8 @@
  * ============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.
@@ -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;
@@ -43,4 +44,15 @@ public class Parameters {
     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;
 }