Example usage for com.amazonaws.services.elasticbeanstalk.model DeleteApplicationRequest setApplicationName

List of usage examples for com.amazonaws.services.elasticbeanstalk.model DeleteApplicationRequest setApplicationName

Introduction

In this page you can find the example usage for com.amazonaws.services.elasticbeanstalk.model DeleteApplicationRequest setApplicationName.

Prototype


public void setApplicationName(String applicationName) 

Source Link

Document

The name of the application to delete.

Usage

From source file:br.com.ingenieux.mojo.beanstalk.app.DeleteApplicationMojo.java

License:Apache License

@Override
protected Object executeInternal() throws MojoExecutionException, MojoFailureException {
    DeleteApplicationRequest req = new DeleteApplicationRequest();

    req.setApplicationName(applicationName);

    getService().deleteApplication(req);

    return null;/*from  w w w  . ja  v  a2 s  .  co m*/
}