com.alipay.api.ResponseParseItem Maven / Gradle / Ivy
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy