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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

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

import java.io.Serializable;

/**
 * 签名类型
 *
 * @author junying.wei
 * @version $Id: SignItem.java, v 0.1 2019-7-16 下午4:35:37 jiehua Exp $
 */
public class CertItem implements Serializable {

    /**  */
    private static final long serialVersionUID = 6531196726066096786L;

    /**
     * 签名源串
     */
    private String signSourceDate;

    /**
     * 签名
     */
    private String sign;

    /**
     * 证书序列号
     */
    private String cert;

    /**
     * Getter method for property signSourceDate.
     *
     * @return property value of signSourceDate
     */
    public String getSignSourceDate() {
        return signSourceDate;
    }

    /**
     * Setter method for property signSourceDate.
     *
     * @param signSourceDate value to be assigned to property signSourceDate
     */
    public void setSignSourceDate(String signSourceDate) {
        this.signSourceDate = signSourceDate;
    }

    /**
     * Getter method for property sign.
     *
     * @return property value of sign
     */
    public String getSign() {
        return sign;
    }

    /**
     * Setter method for property sign.
     *
     * @param sign value to be assigned to property sign
     */
    public void setSign(String sign) {
        this.sign = sign;
    }

    /**
     * Getter method for property sign.
     *
     * @return property value of sign
     */
    public String getCert() {
        return cert;
    }

    /**
     * Setter method for property sign.
     *
     * @param cert value to be assigned to property cert
     */
    public void setCert(String cert) {
        this.cert = cert;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy