Alachisoft.NCache.Common.DataStructures.DomainInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
package Alachisoft.NCache.Common.DataStructures;
import java.io.Serializable;
public class DomainInfo implements Serializable {
private String _domainName;
private java.util.ArrayList _users;
public DomainInfo() {
}
public final String getDomainName() {
return _domainName;
}
public final void setDomainName(String value) {
_domainName = value;
}
public final java.util.ArrayList getUsers() {
return _users;
}
public final void setUsers(java.util.ArrayList value) {
_users = value;
}
}