Package io.undertow.attribute
Class DateTimeAttribute
- java.lang.Object
-
- io.undertow.attribute.DateTimeAttribute
-
- All Implemented Interfaces:
ExchangeAttribute
public class DateTimeAttribute extends java.lang.Object implements ExchangeAttribute
The current time- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DateTimeAttribute.Builder
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CUSTOM_TIME
static java.lang.String
DATE_TIME
static java.lang.String
DATE_TIME_SHORT
static ExchangeAttribute
INSTANCE
-
Constructor Summary
Constructors Constructor Description DateTimeAttribute(java.lang.String dateFormat)
DateTimeAttribute(java.lang.String dateFormat, java.lang.String timezone)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
readAttribute(HttpServerExchange exchange)
Resolve the attribute from the HTTP server exchange.java.lang.String
toString()
void
writeAttribute(HttpServerExchange exchange, java.lang.String newValue)
Sets a new value for the attribute.
-
-
-
Field Detail
-
DATE_TIME_SHORT
public static final java.lang.String DATE_TIME_SHORT
- See Also:
- Constant Field Values
-
DATE_TIME
public static final java.lang.String DATE_TIME
- See Also:
- Constant Field Values
-
CUSTOM_TIME
public static final java.lang.String CUSTOM_TIME
- See Also:
- Constant Field Values
-
INSTANCE
public static final ExchangeAttribute INSTANCE
-
-
Method Detail
-
readAttribute
public java.lang.String readAttribute(HttpServerExchange exchange)
Description copied from interface:ExchangeAttribute
Resolve the attribute from the HTTP server exchange. This may return null if the attribute is not present.- Specified by:
readAttribute
in interfaceExchangeAttribute
- Parameters:
exchange
- The exchange- Returns:
- The attribute
-
writeAttribute
public void writeAttribute(HttpServerExchange exchange, java.lang.String newValue) throws ReadOnlyAttributeException
Description copied from interface:ExchangeAttribute
Sets a new value for the attribute. Not all attributes are writable.- Specified by:
writeAttribute
in interfaceExchangeAttribute
- Parameters:
exchange
- The exchangenewValue
- The new value for the attribute- Throws:
ReadOnlyAttributeException
- when attribute cannot be written
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-