Java 类org.springframework.web.client.AsyncRestOperations 实例源码

项目:java-buildpack-system-test    文件:EjbApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:WebServlet2Application.java   
@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);
}
项目:java-buildpack-system-test    文件:RatpackApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:SpringBootCliApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:AbstractApplication.java   
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;
}
项目:java-buildpack-system-test    文件:GroovyApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:JavaMainApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:DistZipApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:SpringBootCliJarApplication.java   
@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);
}
项目:java-buildpack-system-test    文件:WebApplication.java   
@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);
}
项目:router-metrics-provider    文件:GorouterClient.java   
public GorouterClient(AsyncRestOperations template, HttpEntity<byte[]> entity) {
    this.template = template;
    this.entity = entity;
}