This commit is contained in:
jackdaw@loafle.com 2017-04-14 10:40:01 +09:00
parent 6857411be9
commit 284989f8cd

View File

@ -4,4 +4,22 @@ package com.loafle.overflow.crawler.config;
* Created by root on 17. 4. 13.
*/
public class Auth {
private String user;
private String pw;
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getPw() {
return pw;
}
public void setPw(String pw) {
this.pw = pw;
}
}