Package edu.indiana.extreme.gfac.beanutils

Examples of edu.indiana.extreme.gfac.beanutils.HostUtils


    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);   
View Full Code Here


   * Constructs a HostBean.
   *
   */
  public HostBean() throws Exception{
    super();
    infoUtils = new HostUtils();
    gridFtpEndpointItems = new ArrayList<SelectItem>();
    serviceTypeItems = new ArrayList<SelectItem>();
    serviceType = new ArrayList<String>();
    gateKeeperendPointReferenceItems = new ArrayList<SelectItem>();
    //    gateKeeperendPointReference = new ArrayList<String>(); 
View Full Code Here

      logger.severe(errormessage);
    }
  }
  public HostBean(ApplicationGlobalContext globalContext) throws Exception{
    super(globalContext);
    infoUtils = new HostUtils();
  }
View Full Code Here

   *
   */
  public ApplicationBean() throws Exception{
    super();
    infoUtils = new ApplicationUtils();
    hostUtils = new HostUtils();
    projectNameItems = new ArrayList<SelectItem>();
    if(super.getContext() != null){
    populateProjectNameItems();
    }else{
      super.checkLogin();
View Full Code Here

   * @param globalContext
   */
  public ApplicationBean(ApplicationGlobalContext globalContext) throws Exception{
    super.setContext(globalContext);
    infoUtils = new ApplicationUtils();
    hostUtils = new HostUtils();

  }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.gfac.beanutils.HostUtils

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.