Package com.carrotgarden.maven.aws.ecc

Source Code of com.carrotgarden.maven.aws.ecc.CarrotAwsElasComp

/**
* Copyright (C) 2010-2012 Andrei Pozolotin <Andrei.Pozolotin@gmail.com>
*
* All rights reserved. Licensed under the OSI BSD License.
*
* http://www.opensource.org/licenses/bsd-license.php
*/
package com.carrotgarden.maven.aws.ecc;

import org.apache.maven.settings.Server;
import org.slf4j.Logger;

import com.amazonaws.auth.AWSCredentials;
import com.carrotgarden.maven.aws.CarrotAws;
import com.carrotgarden.maven.aws.util.AWSCredentialsImpl;

/**
*
*/
public abstract class CarrotAwsElasComp extends CarrotAws {

  /**
   * AWS ElasticCompute
   *
   * <a href=
   * "http://docs.amazonwebservices.com/AWSSecurityCredentials/1.0/AboutAWSCredentials.html"
   * >amazon security credentials</a>
   *
   * stored in
   *
   * <a href=
   * "http://www.sonatype.com/books/mvnref-book/reference/appendix-settings-sect-details.html"
   * >maven settings.xml</a>
   *
   * under server id entry; username="Access Key ID",
   * password="Secret Access Key";
   *
   * @required
   * @parameter default-value="com.example.aws.compute"
   */
  protected String computeServerId;

  /**
   * AWS ElasticCompute operation timeout; seconds
   *
   * @required
   * @parameter default-value="600"
   */
  protected Long computeTimeout;

  /**
   * AWS ElasticCompute
   *
   * <a href=
   * "http://docs.amazonwebservices.com/general/latest/gr/rande.html#ec2_region"
   * >optional api end point url</a>
   *
   * which controls amazon region selection;
   *
   * when omitted, will be constructed from {@link #amazonRegion}
   *
   * @parameter
   */
  protected String computeEndpoint;

  protected String getComputeEndpoint() {
    if (computeEndpoint == null) {
      return "https://ec2." + amazonRegion + ".amazonaws.com";
    } else {
      return computeEndpoint;
    }
  }

  protected ElasticCompute getElasticCompute() throws Exception {

    final Server server = settings.getServer(computeServerId);

    if (server == null) {
      throw new IllegalArgumentException(
          "server definition is missing for serverId="
              + computeServerId);
    }

    final AWSCredentials credentials = new AWSCredentialsImpl(server);

    final Logger logger = getLogger(ElasticCompute.class);

    final ElasticCompute compute = new ElasticCompute(logger,
        computeTimeout, credentials, getComputeEndpoint());

    return compute;

  }

}
TOP

Related Classes of com.carrotgarden.maven.aws.ecc.CarrotAwsElasComp

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.