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

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

There is a newer version: 2.0.0
Show newest version
package com.alipay.api;

import java.util.Map;

/**
 * 请求接口。
 * 
 * @author carver.gu
 * @since 1.0, Sep 12, 2009
 */
public interface AlipayRequest {

    String getApiMethodName();

    Map getTextParams();

    String getApiVersion();

    void setApiVersion(
            String apiVersion);

    String getTerminalType();

    void setTerminalType(
            String terminalType);

    String getTerminalInfo();

    void setTerminalInfo(
            String terminalInfo);

    String getProdCode();

    void setProdCode(
            String prodCode);

    String getNotifyUrl();

    void setNotifyUrl(
            String notifyUrl);

    String getReturnUrl();

    void setReturnUrl(
            String returnUrl);

    Class getResponseClass();

    boolean isNeedEncrypt();

    void setNeedEncrypt(
            boolean needEncrypt);

    AlipayObject getBizModel();

    void setBizModel(
            AlipayObject bizModel);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy