com.amazonservices.mws.sellers.MarketplaceWebServiceSellersClient Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright 2009-2014 Amazon Services. All Rights Reserved.
* 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.
*******************************************************************************
* Marketplace Web Service Sellers
* API Version: 2011-07-01
* Library Version: 2014-09-30
* Generated: Mon Sep 15 19:38:38 GMT 2014
*/
package com.amazonservices.mws.sellers;
import com.amazonservices.mws.client.*;
import com.amazonservices.mws.sellers.model.*;
public class MarketplaceWebServiceSellersClient implements MarketplaceWebServiceSellers {
private static final String libraryName = "MarketplaceWebServiceSellers";
private static final String libraryVersion = "2014-09-30";
protected String servicePath;
protected final MwsConnection connection;
public MarketplaceWebServiceSellersClient(
String accessKey,
String secretKey,
String applicationName,
String applicationVersion,
MarketplaceWebServiceSellersConfig config) {
connection = config.copyConnection();
connection.setAwsAccessKeyId(accessKey);
connection.setAwsSecretKeyId(secretKey);
connection.setApplicationName(applicationName);
connection.setApplicationVersion(applicationVersion);
connection.setLibraryVersion(libraryVersion);
servicePath = config.getServicePath();
}
public MarketplaceWebServiceSellersClient(
String accessKey,
String secretKey,
MarketplaceWebServiceSellersConfig config) {
this(accessKey, secretKey, libraryName, libraryVersion, config);
}
public MarketplaceWebServiceSellersClient(
String accessKey,
String secretKey,
String applicationName,
String applicationVersion) {
this(accessKey, secretKey, applicationName,
applicationVersion, new MarketplaceWebServiceSellersConfig());
}
public GetServiceStatusResponse getServiceStatus(GetServiceStatusRequest request) {
return connection.call(
new RequestType("GetServiceStatus", GetServiceStatusResponse.class, servicePath),
request);
}
public ListMarketplaceParticipationsResponse listMarketplaceParticipations(ListMarketplaceParticipationsRequest request) {
return connection.call(
new RequestType("ListMarketplaceParticipations", ListMarketplaceParticipationsResponse.class, servicePath),
request);
}
public ListMarketplaceParticipationsByNextTokenResponse listMarketplaceParticipationsByNextToken(ListMarketplaceParticipationsByNextTokenRequest request) {
return connection.call(
new RequestType("ListMarketplaceParticipationsByNextToken", ListMarketplaceParticipationsByNextTokenResponse.class, servicePath),
request);
}
public static String quoteAppName(String s) {
return MwsUtl.escapeAppName(s);
}
public static String quoteAppVersion(String s) {
return MwsUtl.escapeAppVersion(s);
}
public static String quoteAttributeName(String s) {
return MwsUtl.escapeAttributeName(s);
}
public static String quoteAttributeValue(String s) {
return MwsUtl.escapeAttributeValue(s);
}
protected static class RequestType implements MwsRequestType {
private final String operationName;
private final Class extends MWSResponse> responseClass;
private final String servicePath;
public RequestType(String operationName, Class extends MWSResponse> responseClass, String servicePath) {
this.operationName = operationName;
this.responseClass = responseClass;
this.servicePath = servicePath;
}
@Override
public String getServicePath() {
return this.servicePath;
}
@Override
public String getOperationName() {
return this.operationName;
}
@Override
public Class extends MwsObject> getResponseClass() {
return this.responseClass;
}
@Override
public MwsException wrapException(Throwable cause) {
return new MarketplaceWebServiceSellersException(cause);
}
@Override
public void setRHMD(MwsObject response, MwsResponseHeaderMetadata rhmd) {
((MWSResponse)response).setResponseHeaderMetadata(new ResponseHeaderMetadata(rhmd));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy