me.wuwenbin.modules.mongodb.support.pojo.MongoAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-modules-mongodb Show documentation
Show all versions of template-modules-mongodb Show documentation
提供对mongo数据源的高级操作,针对多数据源mongo和集群mongo
package me.wuwenbin.modules.mongodb.support.pojo;
/**
* Created by wuwenbin on 2017/4/22.
*/
public class MongoAuth {
private String username;
private String password;
private String authDatabase;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getAuthDatabase() {
return authDatabase;
}
public void setAuthDatabase(String authDatabase) {
this.authDatabase = authDatabase;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy