com.northernwall.hadrian.handlers.vip.dao.GetVipDetailRowData Maven / Gradle / Ivy
package com.northernwall.hadrian.handlers.vip.dao;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class GetVipDetailRowData {
/**
* Name of the host in the pool
*/
public String hostName;
/**
* Map of DC to cell level details
*/
public Map details = new ConcurrentHashMap<>();
/**
* Short text describing any issues with this host in the pool
*/
public String warning = "-";
/**
* Host level comment
*/
public String comment;
public boolean blackListed = false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy