com.alipay.api.ResponseParseItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
/**
* 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;
}
}