private static ApplicationInfo getApplicationInfo() {
   ApplicationInfo info = new ApplicationInfo();
   info.setAppDirName("TestProject");
   info.setCode("TestProject");
   info.setId("TestProject");
   info.setCustomerIds(Collections.singletonList("photon"));
   info.setEmailSupported(false);
   info.setPhoneEnabled(false);
   info.setTabletEnabled(false);
   info.setDescription("Simple java web service Project");
   info.setHelpText("Help");
   info.setName("TestProject");
   TechnologyInfo techInfo = new TechnologyInfo();
   techInfo.setId("tech-php");
   info.setTechInfo(techInfo);
   info.setPilot(false);
   info.setUsed(false);
   info.setDisplayName("TestProject");
   info.setSelectedJSLibs(Collections.singletonList("99aa3901-a088-4142-8158-000f1e80f1bf"));
   info.setVersion("1.0");
   return info;
 }