Alachisoft.NCache.Common.Monitoring.ClienfInfo 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.Monitoring;
public class ClienfInfo {
private String _clientID;
private String _address;
public ClienfInfo() {
}
public ClienfInfo(String clientId, String address) {
_clientID = clientId;
_address = address;
}
public final String getID() {
return _clientID;
}
public final String getAddress() {
return _address;
}
}