598d6edad01341f1311c967f866700b84b62ca59
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / FtpAddr.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18 public class FtpAddr {
19   
20   private String ftptype;
21   
22   private String ip;
23   
24   private String port;
25   
26   private String user;
27
28   private String password;
29   
30   private String remotepath;
31   
32   private Boolean passive;
33
34   public String getFtptype() {
35     return ftptype;
36   }
37
38   public void setFtptype(String ftptype) {
39     this.ftptype = ftptype;
40   }
41
42   public String getIp() {
43     return ip;
44   }
45
46   public void setIp(String ip) {
47     this.ip = ip;
48   }
49
50   public String getPort() {
51     return port;
52   }
53
54   public void setPort(String port) {
55     this.port = port;
56   }
57
58   public String getUser() {
59     return user;
60   }
61
62   public void setUser(String user) {
63     this.user = user;
64   }
65
66   public String getPassword() {
67     return password;
68   }
69
70   public void setPassword(String password) {
71     this.password = password;
72   }
73
74   public String getRemotepath() {
75     return remotepath;
76   }
77
78   public void setRemotepath(String remotepath) {
79     this.remotepath = remotepath;
80   }
81
82   public Boolean getPassive() {
83     return passive;
84   }
85
86   public void setPassive(Boolean passive) {
87     this.passive = passive;
88   }
89 }