}
if (appInfo.getProjectName() != null) {
appType.addNewProject().setProjectName(appInfo.getProjectName());
}
if (appInfo.getRslparmName() != null && appInfo.getRslparmValue() != null && appInfo.getRslparmName() != "") {
RSLParmType rslParmType = appType.addNewRslparm();
rslParmType.setName(appInfo.getRslparmName());
rslParmType.setStringValue(appInfo.getRslparmValue());
}if (appInfo.getMinMemory() != null) {
appType.setMinMemory(appInfo.getMinMemory());
}
if (appInfo.getHostCount() != null) {
appType.setHostCount(appInfo.getHostCount());