return ServiceConstants.SELF;
}
public List<SelectItem> hostList() throws Exception{
try {
HostUtils hostUtils = new HostUtils();
hostOptions = new ArrayList<SelectItem>();
String[] hostList = hostUtils.getObjectList(super.getContext().getRegService());
SelectItem option = new SelectItem("","Select Host");
hostOptions.add(option);
for (String host : hostList) {
option = new SelectItem(host, host);
hostOptions.add(option);