Fix the java code style issue.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / FtpAddr.java
index 598d6ed..f393972 100644 (file)
 package org.onap.aai.esr.entity.rest;
 
 public class FtpAddr {
-  
-  private String ftptype;
-  
-  private String ip;
-  
-  private String port;
-  
-  private String user;
-
-  private String password;
-  
-  private String remotepath;
-  
-  private Boolean passive;
-
-  public String getFtptype() {
-    return ftptype;
-  }
-
-  public void setFtptype(String ftptype) {
-    this.ftptype = ftptype;
-  }
-
-  public String getIp() {
-    return ip;
-  }
-
-  public void setIp(String ip) {
-    this.ip = ip;
-  }
-
-  public String getPort() {
-    return port;
-  }
-
-  public void setPort(String port) {
-    this.port = port;
-  }
-
-  public String getUser() {
-    return user;
-  }
-
-  public void setUser(String user) {
-    this.user = user;
-  }
-
-  public String getPassword() {
-    return password;
-  }
-
-  public void setPassword(String password) {
-    this.password = password;
-  }
-
-  public String getRemotepath() {
-    return remotepath;
-  }
-
-  public void setRemotepath(String remotepath) {
-    this.remotepath = remotepath;
-  }
-
-  public Boolean getPassive() {
-    return passive;
-  }
-
-  public void setPassive(Boolean passive) {
-    this.passive = passive;
-  }
+
+    private String ftptype;
+
+    private String ip;
+
+    private String port;
+
+    private String user;
+
+    private String password;
+
+    private String remotepath;
+
+    private Boolean passive;
+
+    public String getFtptype() {
+        return ftptype;
+    }
+
+    public void setFtptype(String ftptype) {
+        this.ftptype = ftptype;
+    }
+
+    public String getIp() {
+        return ip;
+    }
+
+    public void setIp(String ip) {
+        this.ip = ip;
+    }
+
+    public String getPort() {
+        return port;
+    }
+
+    public void setPort(String port) {
+        this.port = port;
+    }
+
+    public String getUser() {
+        return user;
+    }
+
+    public void setUser(String user) {
+        this.user = user;
+    }
+
+    public String getPassword() {
+        return password;
+    }
+
+    public void setPassword(String password) {
+        this.password = password;
+    }
+
+    public String getRemotepath() {
+        return remotepath;
+    }
+
+    public void setRemotepath(String remotepath) {
+        this.remotepath = remotepath;
+    }
+
+    public Boolean getPassive() {
+        return passive;
+    }
+
+    public void setPassive(Boolean passive) {
+        this.passive = passive;
+    }
 }