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

com.alipay.api.ResponseParseItem 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-2016 All Rights Reserved.
 */
package com.alipay.api;

import java.io.Serializable;

/**
 * @author jiehua
 * @version $Id: EncryptResponseItem.java, v 0.1 2016-3-28 下午4:34:57 jiehua Exp $
 */
public class ResponseParseItem implements Serializable {

    /**  */
    private static final long serialVersionUID = -27707404159419651L;

    /**
     * 加密节点开始
     */
    private int startIndex = -1;

    /**
     * 加密节点结束
     */
    private int endIndex = -1;

    /**
     * 加密内容
     */
    private String encryptContent = null;

    /**
     * @param startIndex
     * @param endIndex
     * @param encryptContent
     */
    public ResponseParseItem(int startIndex, int endIndex, String encryptContent) {
        super();
        this.startIndex = startIndex;
        this.endIndex = endIndex;
        this.encryptContent = encryptContent;
    }

    /**
     * Getter method for property startIndex.
     *
     * @return property value of startIndex
     */
    public int getStartIndex() {
        return startIndex;
    }

    /**
     * Getter method for property endIndex.
     *
     * @return property value of endIndex
     */
    public int getEndIndex() {
        return endIndex;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy