br.com.ingenieux.mojo.aws.util.ServiceEndpointFormatter Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2016 ingenieux Labs
*
* 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.
*/
package br.com.ingenieux.mojo.aws.util;
import com.amazonaws.services.ec2.AmazonEC2;
import com.amazonaws.services.elasticbeanstalk.AWSElasticBeanstalk;
import com.amazonaws.services.elasticloadbalancing.AmazonElasticLoadBalancing;
import com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.simpledb.AmazonSimpleDB;
public enum ServiceEndpointFormatter {
ELASTICBEANSTALK(AWSElasticBeanstalk.class, "elasticbeanstalk.%s.amazonaws.com"),
EC2(AmazonEC2.class, "ec2.%s.amazonaws.com"),
ELASTICMAPREDUCE(AmazonElasticMapReduce.class, "elasticmapreduce.%s.amazonaws.com"),
SIMPLEDB(AmazonSimpleDB.class, "sdb.%s.amazonaws.com"),
S3(AmazonS3.class, "s3-%s.amazonaws.com"),
ELB(AmazonElasticLoadBalancing.class, "elasticloadbalancing.%s.amazonaws.com");
final Class> serviceClass;
final String serviceMask;
ServiceEndpointFormatter(Class> serviceClass, String serviceMask) {
this.serviceClass = serviceClass;
this.serviceMask = serviceMask;
}
public boolean matches(Object obj) {
return serviceClass.isAssignableFrom(obj.getClass());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy