org.frameworkset.web.token.TokenMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-ticket Show documentation
Show all versions of bboss-ticket Show documentation
support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/
The newest version!
/**
*
*/
package org.frameworkset.web.token;
/**
* @author yinbp
*
* @Date:2016-11-13 22:18:11
*/
public class TokenMessage {
private String data;
private String timestamp;
private String nonce;
private String signature;
/**
*
*/
public TokenMessage() {
// TODO Auto-generated constructor stub
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getNonce() {
return nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
}
public String getSignature() {
return signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy