/*******************************************************************************
* Copyright 2007 Amazon Technologies, Inc.
* 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://aws.amazon.com/apache2.0
* This file 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.
* *****************************************************************************
* __ _ _ ___
* ( )( \/\/ )/ __)
* /__\ \ / \__ \
* (_)(_) \/\/ (___/
*
* Amazon A2S Java Library
* API Version: 2007-10-29
* Generated: Thu Jan 10 05:27:32 PST 2008
*
*/
package com.amazonaws.a2s;
public enum AmazonA2SLocale {
US(new AmazonA2SConfig().withInputEncoding("ISO8859_1").withServiceURL("http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService")),
UK(new AmazonA2SConfig().withInputEncoding("ISO8859_1").withServiceURL("http://ecs.amazonaws.co.uk/onca/xml?Service=AWSECommerceService")),
DE(new AmazonA2SConfig().withInputEncoding("ISO8859_1").withServiceURL("http://ecs.amazonaws.de/onca/xml?Service=AWSECommerceService")),
FR(new AmazonA2SConfig().withInputEncoding("ISO8859_1").withServiceURL("http://ecs.amazonaws.fr/onca/xml?Service=AWSECommerceService")),
JP(new AmazonA2SConfig().withInputEncoding("UTF8").withServiceURL("http://ecs.amazonaws.jp/onca/xml?Service=AWSECommerceService")),
CA(new AmazonA2SConfig().withInputEncoding("ISO8859_1").withServiceURL("http://ecs.amazonaws.ca/onca/xml?Service=AWSECommerceService"));
private AmazonA2SConfig config;
private AmazonA2SLocale(AmazonA2SConfig config) {
this.config = config;
}
public AmazonA2SConfig getConfig() {
return config;
}
}
|