com.barchart.http.request.RequestAttribute Maven / Gradle / Ivy
/**
* Copyright (C) 2011-2013 Barchart, Inc.
*
* All rights reserved. Licensed under the OSI BSD License.
*
* http://www.opensource.org/licenses/bsd-license.php
*/
package com.barchart.http.request;
/**
* An arbitrarily-valued attribute for storing in a ServerRequest object.
*/
public class RequestAttribute {
private T value = null;
public void set(final T value_) {
value = value_;
}
public T get() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy