Package com.hetty.object

Examples of com.hetty.object.ServiceVersion


      if(StringUtil.isEmpty(user) || StringUtil.isEmpty(service)){
        throw new HettyException("In config file's security-settings,user or service cannot't be empty!");
      }
      String version = element.attributeValue("version");
 
      ServiceVersion serviceVersion = new ServiceVersion();
      serviceVersion.setUser(user);
      serviceVersion.setService(service);
      serviceVersion.setVersion(version);
      versionList.add(serviceVersion);
    }
    return versionList;
  }
View Full Code Here

TOP

Related Classes of com.hetty.object.ServiceVersion

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.