Examples of CreateApplicationRequest


Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

   *            default-value="${project.name}"
   */
  String applicationDescription;

  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = service.createApplication(request);

    return result;
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

   *            default-value="${project.name}"
   */
  String applicationDescription;

  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = service.createApplication(request);

    return result;
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

   *            default-value="${project.name}"
   */
  String applicationDescription;

  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = service.createApplication(request);

    return result;
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

  @MojoParameter(expression="${beanstalk.applicationDescription}", defaultValue="${project.name}", description="Application Description")
  String applicationDescription;

  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = getService().createApplication(request);

    return result;
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

*
* @goal create-application
*/
public class CreateApplicationMojo extends AbstractBeanstalkMojo {
  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = service.createApplication(request);

    return result;
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateApplicationRequest

   **/
  @Parameter(property = "beanstalk.applicationDescription", defaultValue = "${project.name}")
  String applicationDescription;

  protected Object executeInternal() throws MojoExecutionException {
    CreateApplicationRequest request = new CreateApplicationRequest(
        this.applicationName);

    request.setDescription(applicationDescription);

    CreateApplicationResult result = getService().createApplication(request);

    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.