
com.github.fartherp.shiro.SessionInMemory Maven / Gradle / Ivy
/*
* Copyright (c) 2019. CK. All rights reserved.
*/
package com.github.fartherp.shiro;
import org.apache.shiro.session.Session;
import java.util.Date;
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2019/1/1
*/
public class SessionInMemory {
private Session session;
private Date createTime;
public Session getSession() {
return session;
}
public void setSession(Session session) {
this.session = session;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy