All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blade.mvc.http.HttpSession Maven / Gradle / Ivy

package com.blade.mvc.http;

import lombok.Setter;

import java.util.HashMap;
import java.util.Map;

/**
 * HttpSession
 *
 * @author biezhi
 * 2017/5/31
 */
public class HttpSession implements Session {

    private Map attributes = new HashMap<>();

    @Setter
    private String id = null;

    @Setter
    private String ip = null;

    @Setter
    private long created = -1;

    @Setter
    private long expired = -1;

    @Override
    public String id() {
        return id;
    }

    @Override
    public void id(String id) {
        this.id = id;
    }

    @Override
    public String ip() {
        return this.ip;
    }

    @Override
    public void ip(String ip) {
        this.ip = ip;
    }

    @Override
    public  T attribute(String name) {
        Object object = this.attributes.get(name);
        return null != object ? (T) object : null;
    }

    @Override
    public void attribute(String name, Object value) {
        this.attributes.put(name, value);
    }

    @Override
    public Map attributes() {
        return attributes;
    }

    @Override
    public void removeAttribute(String name) {
        this.attributes.remove(name);
    }

    @Override
    public long created() {
        return this.created;
    }

    @Override
    public void created(long created) {
        this.created = created;
    }

    @Override
    public long expired() {
        return this.expired;
    }

    @Override
    public void expired(long expired) {
        this.expired = expired;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy