@Autowired EjbApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.ejb.location}") File location, @Value("${applications.ejb.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.ejb.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired WebServlet2Application(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.webServlet2.location}") File location, @Value("${applications.webServlet2.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.webServlet2.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired RatpackApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.ratpack.location}") File location, @Value("${applications.ratpack.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.ratpack.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired SpringBootCliApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.springBootCli.location}") File location, @Value("${applications.springBootCli.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.springBootCli.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
protected AbstractApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, File location, String memory, String name, AsyncRestOperations restOperations) { this.buildpack = buildpack; this.cloudFoundryOperations = cloudFoundryOperations; this.host = getHost(cloudFoundryOperations, name); this.location = location; this.memory = memory; this.name = name; this.restOperations = restOperations; }
@Autowired GroovyApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.groovy.location}") File location, @Value("${applications.groovy.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.groovy.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired JavaMainApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.javaMain.location}") File location, @Value("${applications.javaMain.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.javaMain.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired DistZipApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.distZip.location}") File location, @Value("${applications.distZip.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.distZip.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired SpringBootCliJarApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.springBootCliJar.location}") File location, @Value("${applications.springBootCliJar.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.springBootCliJar.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
@Autowired WebApplication(String buildpack, CloudFoundryOperations cloudFoundryOperations, @Value("${applications.web.location}") File location, @Value("${applications.web.memory:#{null}}") String memory, NameFactory nameFactory, @Value("${applications.web.prefix}") String prefix, AsyncRestOperations restOperations) { super(buildpack, cloudFoundryOperations, location, memory, nameFactory.getName(prefix), restOperations); }
public GorouterClient(AsyncRestOperations template, HttpEntity<byte[]> entity) { this.template = template; this.entity = entity; }