21 lines
411 B
Java
21 lines
411 B
Java
package com.upchina.rbac.query;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
public class LdapLoginQuery {
|
|
|
|
@ApiModelProperty(value = "LDAP Key", required = true)
|
|
@NotBlank
|
|
private String ldapKey;
|
|
|
|
public String getLdapKey() {
|
|
return ldapKey;
|
|
}
|
|
|
|
public void setLdapKey(String ldapKey) {
|
|
this.ldapKey = ldapKey;
|
|
}
|
|
}
|