Package br.com.ingenieux.mojo.beanstalk.bundle

Source Code of br.com.ingenieux.mojo.beanstalk.bundle.DeleteMultipartsMojo

package br.com.ingenieux.mojo.beanstalk.bundle;

/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.util.Date;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.jfrog.maven.annomojo.annotations.MojoGoal;
import org.jfrog.maven.annomojo.annotations.MojoParameter;
import org.jfrog.maven.annomojo.annotations.MojoSince;

import br.com.ingenieux.mojo.aws.util.BeanstalkerS3Client;
import br.com.ingenieux.mojo.beanstalk.AbstractBeanstalkMojo;

import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;

/**
* Uploads a packed war file to Amazon S3 for further Deployment.
*/
@MojoGoal("delete-multiparts")
@MojoSince("0.2.7")
public class DeleteMultipartsMojo extends AbstractBeanstalkMojo {
  /**
   * S3 Bucket
   *
   */
  @MojoParameter(expression = "${beanstalk.s3Bucket}", defaultValue = "${project.artifactId}", required = true)
  String s3Bucket;

  /**
   * S3 Service Region.
   *
   * <p>
   * See <a href=
   * "http://docs.amazonwebservices.com/general/latest/gr/rande.html#s3_region"
   * >this list</a> for reference.
   * </p>
   */
  @MojoParameter(expression = "${beanstalk.s3Region}")
  String s3Region;
 
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException, AmazonServiceException,
      AmazonClientException, InterruptedException {
    BeanstalkerS3Client client = new BeanstalkerS3Client(getAWSCredentials(),
        getClientConfiguration());
   
    client.deleteMultiparts(s3Bucket, new Date());
   
    return null;
  }
}
TOP

Related Classes of br.com.ingenieux.mojo.beanstalk.bundle.DeleteMultipartsMojo

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.