com.luna.ali.alipay.pay.close.PayCloseChain Maven / Gradle / Ivy
Show all versions of ali-spring-boot-starter Show documentation
/**
* Copyright 2019 the original author or authors.
*
* 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 com.luna.ali.alipay.pay.close;
import com.alipay.api.AlipayApiException;
import com.alipay.api.AlipayClient;
import com.alipay.api.domain.AlipayTradeCloseModel;
import com.alipay.api.request.AlipayTradeCloseRequest;
/**
* ClassName: PayCloseChain
* Description:
* date: 2019/12/25 16:30
*
* @author ThierrySquirrel
* @since JDK 1.8
*/
public class PayCloseChain {
private AlipayClient alipayClient;
private AlipayTradeCloseModel alipayTradeCloseModel;
public PayCloseChain() {}
public AlipayClient getAlipayClient() {
return alipayClient;
}
public void setAlipayClient(AlipayClient alipayClient) {
this.alipayClient = alipayClient;
}
public AlipayTradeCloseModel getAlipayTradeCloseModel() {
return alipayTradeCloseModel;
}
public void setAlipayTradeCloseModel(AlipayTradeCloseModel alipayTradeCloseModel) {
this.alipayTradeCloseModel = alipayTradeCloseModel;
}
public PayCloseChain(AlipayClient alipayClient, AlipayTradeCloseModel alipayTradeCloseModel) {
this.alipayClient = alipayClient;
this.alipayTradeCloseModel = alipayTradeCloseModel;
}
/**
* Build Closing Transaction
*
* 构建关闭交易
*
* @return String
* @throws AlipayApiException AlipayApiException
*/
public String close() throws AlipayApiException {
AlipayTradeCloseRequest closeRequest = new AlipayTradeCloseRequest();
closeRequest.setBizModel(alipayTradeCloseModel);
return alipayClient.execute(closeRequest).getBody();
}
/**
* Custom Build CloseRequest
*
* 自定义构建CloseRequest
*
* @param closeRequest closeRequest
* @return String
* @throws AlipayApiException AlipayApiException
*/
public String close(AlipayTradeCloseRequest closeRequest) throws AlipayApiException {
return alipayClient.execute(closeRequest).getBody();
}
}