All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.AlipayClient Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/**
 * Alipay.com Inc.
 * Copyright (c) 2004-2012 All Rights Reserved.
 */
package com.alipay.api;

import java.util.Map;

/**
 *
 * @author runzhi
 */
public interface AlipayClient {

     T execute(
            AlipayRequest request) throws AlipayApiException;

     T execute(
            AlipayRequest request,
            String authToken) throws AlipayApiException;

     T execute(
            AlipayRequest request,
            String accessToken,
            String appAuthToken) throws AlipayApiException;

     T pageExecute(
            AlipayRequest request) throws AlipayApiException;

     T sdkExecute(
            AlipayRequest request) throws AlipayApiException;

     T pageExecute(
            AlipayRequest request,
            String method) throws AlipayApiException;

    > TR parseAppSyncResult(
            Map result,
            Class requsetClazz) throws AlipayApiException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy