Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-sdnc-adapter / src / main / java / org / onap / so / adapters / sdnc / impl / RequestTunables.java
index 515f198..bfd2aea 100644 (file)
 
 package org.onap.so.adapters.sdnc.impl;
 
+public class RequestTunables {
 
 
-import org.onap.so.logger.MsoLogger;
-public class RequestTunables {
 
-       
-       
-       public static final String GENERATED_KEY = "Generated key: ";
-
-       //criteria
-       private String reqId = "";
-       private String msoAction = "";
-       private String operation = "";
-       private String action = "";
-
-       //tunables
-       private String reqMethod = "POST";
-       private String sdncUrl = null;
-       private String timeout = "60000";
-       private String headerName = "sdnc-request-header";
-       private String namespace = "";
-       private String asyncInd = "N"; //future use
-
-       private String sdncaNotificationUrl = null;
-
-       public RequestTunables(String reqId, String msoAction, String operation, String action) {
-               super();
-               if (reqId != null) {
+    public static final String GENERATED_KEY = "Generated key: ";
+
+    // criteria
+    private String reqId = "";
+    private String msoAction = "";
+    private String operation = "";
+    private String action = "";
+
+    // tunables
+    private String reqMethod = "POST";
+    private String sdncUrl = null;
+    private String timeout = "60000";
+    private String headerName = "sdnc-request-header";
+    private String namespace = "";
+    private String asyncInd = "N"; // future use
+
+    private String sdncaNotificationUrl = null;
+
+    public RequestTunables(String reqId, String msoAction, String operation, String action) {
+        super();
+        if (reqId != null) {
             this.reqId = reqId;
         }
-               if (msoAction != null) {
+        if (msoAction != null) {
             this.msoAction = msoAction;
         }
-               if (operation != null) {
+        if (operation != null) {
             this.operation = operation;
         }
-               if (action != null) {
+        if (action != null) {
             this.action = action;
         }
-       }
-       
-       public RequestTunables(RequestTunables original) {
-               this.reqId = original.reqId;
-               this.action = original.action;
-               this.msoAction = original.msoAction;
-               this.operation = original.operation;
-               this.reqMethod = original.reqMethod;
-               this.sdncUrl = original.sdncUrl;
-               this.timeout = original.timeout;
-               this.headerName = original.headerName;
-               this.namespace = original.namespace;
-               this.asyncInd = original.asyncInd;
-               this.sdncaNotificationUrl = original.sdncaNotificationUrl;              
-       }
-
-       public String getReqId() {
-               return reqId;
-       }
-       public void setReqId(String reqId) {
-               this.reqId = reqId;
-       }
-       public String getReqMethod() {
-               return reqMethod;
-       }
-       public void setReqMethod(String reqMethod) {
-               this.reqMethod = reqMethod;
-       }
-       public String getMsoAction() {
-               return msoAction;
-       }
-       public void setMsoAction(String msoAction) {
-               this.msoAction = msoAction;
-       }
-       public String getAction() {
-               return action;
-       }
-       public void setAction(String action) {
-               this.action = action;
-       }
-       public String getOperation() {
-               return operation;
-       }
-       public void setOperation(String operation) {
-               this.operation = operation;
-       }
-       public String getSdncUrl() {
-               return sdncUrl;
-       }
-       public void setSdncUrl(String sdncUrl) {
-               this.sdncUrl = sdncUrl;
-       }
-       public String getTimeout() {
-               return timeout;
-       }
-       public void setTimeout(String timeout) {
-               this.timeout = timeout;
-       }
-       public String getAsyncInd() {
-               return asyncInd;
-       }
-       public void setAsyncInd(String asyncInd) {
-               this.asyncInd = asyncInd;
-       }
-       public String getHeaderName() {
-               return headerName;
-       }
-       public void setHeaderName(String headerName) {
-               this.headerName = headerName;
-       }
-
-
-       public String getSdncaNotificationUrl() {
-               return sdncaNotificationUrl;
-       }
-
-       public void setSdncaNotificationUrl(String sdncaNotificationUrl) {
-               this.sdncaNotificationUrl = sdncaNotificationUrl;
-       }
-
-       public String getNamespace() {
-               return namespace;
-       }
-
-       public void setNamespace(String namespace) {
-               this.namespace = namespace;
-       }
-
-       @Override
-       public String toString() {
-               return "RequestTunables [reqId=" + reqId + ", msoAction=" + msoAction
-                               + ", operation=" + operation + ", action=" + action
-                               + ", reqMethod=" + reqMethod + ", sdncUrl=" + sdncUrl
-                               + ", timeout=" + timeout + ", headerName=" + headerName
-                               + ", sdncaNotificationUrl=" + sdncaNotificationUrl
-                               + ", namespace=" + namespace + "]";
-       }
-       
+    }
+
+    public RequestTunables(RequestTunables original) {
+        this.reqId = original.reqId;
+        this.action = original.action;
+        this.msoAction = original.msoAction;
+        this.operation = original.operation;
+        this.reqMethod = original.reqMethod;
+        this.sdncUrl = original.sdncUrl;
+        this.timeout = original.timeout;
+        this.headerName = original.headerName;
+        this.namespace = original.namespace;
+        this.asyncInd = original.asyncInd;
+        this.sdncaNotificationUrl = original.sdncaNotificationUrl;
+    }
+
+    public String getReqId() {
+        return reqId;
+    }
+
+    public void setReqId(String reqId) {
+        this.reqId = reqId;
+    }
+
+    public String getReqMethod() {
+        return reqMethod;
+    }
+
+    public void setReqMethod(String reqMethod) {
+        this.reqMethod = reqMethod;
+    }
+
+    public String getMsoAction() {
+        return msoAction;
+    }
+
+    public void setMsoAction(String msoAction) {
+        this.msoAction = msoAction;
+    }
+
+    public String getAction() {
+        return action;
+    }
+
+    public void setAction(String action) {
+        this.action = action;
+    }
+
+    public String getOperation() {
+        return operation;
+    }
+
+    public void setOperation(String operation) {
+        this.operation = operation;
+    }
+
+    public String getSdncUrl() {
+        return sdncUrl;
+    }
+
+    public void setSdncUrl(String sdncUrl) {
+        this.sdncUrl = sdncUrl;
+    }
+
+    public String getTimeout() {
+        return timeout;
+    }
+
+    public void setTimeout(String timeout) {
+        this.timeout = timeout;
+    }
+
+    public String getAsyncInd() {
+        return asyncInd;
+    }
+
+    public void setAsyncInd(String asyncInd) {
+        this.asyncInd = asyncInd;
+    }
+
+    public String getHeaderName() {
+        return headerName;
+    }
+
+    public void setHeaderName(String headerName) {
+        this.headerName = headerName;
+    }
+
+
+    public String getSdncaNotificationUrl() {
+        return sdncaNotificationUrl;
+    }
+
+    public void setSdncaNotificationUrl(String sdncaNotificationUrl) {
+        this.sdncaNotificationUrl = sdncaNotificationUrl;
+    }
+
+    public String getNamespace() {
+        return namespace;
+    }
+
+    public void setNamespace(String namespace) {
+        this.namespace = namespace;
+    }
+
+    @Override
+    public String toString() {
+        return "RequestTunables [reqId=" + reqId + ", msoAction=" + msoAction + ", operation=" + operation + ", action="
+                + action + ", reqMethod=" + reqMethod + ", sdncUrl=" + sdncUrl + ", timeout=" + timeout
+                + ", headerName=" + headerName + ", sdncaNotificationUrl=" + sdncaNotificationUrl + ", namespace="
+                + namespace + "]";
+    }
+
 }