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

io.higgs.http.server.auth.FlashValue Maven / Gradle / Ivy

There is a newer version: 0.0.24
Show newest version
package io.higgs.http.server.auth;

import java.io.Serializable;

/**
 * @author Courtney Robinson 
 */
public class FlashValue implements Serializable {

    private final Object value;

    public FlashValue(Object value) {
        this.value = value;
    }

    public Object getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy