package com.icontrols.oauth.model; import java.util.Date; public class JWTInfo { private String cmpIp; private String homeId; // private Date exp; // private Date iat; public JWTInfo() { super(); } // public JWTInfo(String cmpIp, String homeId, Date exp, Date iat) { // super(); // this.cmpIp = cmpIp; // this.homeId = homeId; //// this.exp = exp; //// this.iat = iat; // } public JWTInfo(String cmpIp, String homeId) { super(); this.cmpIp = cmpIp; this.homeId = homeId; } public String getCmpIp() { return cmpIp; } public void setCmpIp(String cmpIp) { this.cmpIp = cmpIp; } public String getHomeId() { return homeId; } public void setHomeId(String homeId) { this.homeId = homeId; } @Override public String toString() { return "JWTInfo [cmpIp=" + cmpIp + ", homeId=" + homeId + "]"; } // public Date getExp() { // return exp; // } // // public void setExp(Date exp) { // this.exp = exp; // } // // public Date getIat() { // return iat; // } // // public void setIat(Date iat) { // this.iat = iat; // } // // @Override // public String toString() { // return "JWTInfo [cmpIp=" + cmpIp + ", homeId=" + homeId + ", exp=" + exp + ", iat=" + iat + "]"; // } }