io.higgs.http.server.auth.FlashValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
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