Package com.zone.weixin4j.request
Class WeixinRequest
- java.lang.Object
-
- com.zone.weixin4j.request.WeixinRequest
-
public class WeixinRequest extends Object
微信请求- Since:
- JDK 1.6
- Author:
- jinyu(foxinmy@gmail.com)
-
-
Constructor Summary
Constructors Constructor Description WeixinRequest(String uri, EncryptType encryptType, String echoStr, String timeStamp, String nonce, String signature, String msgSignature, String originalContent, String encryptContent, AesToken aesToken)
WeixinRequest(String uri, EncryptType encryptType, String echoStr, String timeStamp, String nonce, String signature, String msgSignature, String originalContent, String encryptContent, AesToken aesToken, javax.servlet.http.HttpServletRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AesToken
getAesToken()
String
getEchoStr()
String
getEncryptContent()
EncryptType
getEncryptType()
javax.servlet.http.HttpServletRequest
getHttpServletRequest()
String
getMsgSignature()
String
getNonce()
String
getOriginalContent()
String
getSignature()
String
getTimeStamp()
String
getUri()
WeixinRequest
setHttpServletRequest(javax.servlet.http.HttpServletRequest httpServletRequest)
String
toString()
-
-
-
Method Detail
-
getUri
public String getUri()
-
getEchoStr
public String getEchoStr()
-
getTimeStamp
public String getTimeStamp()
-
getNonce
public String getNonce()
-
getSignature
public String getSignature()
-
getMsgSignature
public String getMsgSignature()
-
getEncryptType
public EncryptType getEncryptType()
-
getOriginalContent
public String getOriginalContent()
-
getEncryptContent
public String getEncryptContent()
-
getAesToken
public AesToken getAesToken()
-
getHttpServletRequest
public javax.servlet.http.HttpServletRequest getHttpServletRequest()
-
setHttpServletRequest
public WeixinRequest setHttpServletRequest(javax.servlet.http.HttpServletRequest httpServletRequest)
-
-