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

default.view.system.info.html Maven / Gradle / Ivy



    
    
        @product - Info
        
    
    
        

Base

Node Name @ctx.getNodeName()
Remote IP @call.getRemoteIP().getHostAddress()
Trusted IP @call.isTrusted()
Language @call.getLang()

Headers

@for(String name : call.getRequest().headers().names()) { }
@name @for(String value : call.getRequest().headers().getAll(name)) {
@value
}
@if (!call.getCookies().isEmpty()) {

Cookies

@for(io.netty.handler.codec.http.cookie.Cookie cookie : call.getCookies()) { }
Name Value Secure HTTP only
@cookie.name() @cookie.value() @cookie.isSecure() @cookie.isHttpOnly()
} @if (!call.getSessionKeys().isEmpty()) {

Client Session

@for(String name : call.getSessionKeys()) { }
@name @call.getSessionValue(name)
}

Server Session

@if (call.getServerSession(false).isPresent()) { @for(String name : call.getServerSession().getKeys()) { } }
Session-ID @if (call.getServerSession(false).isPresent()) { @call.getServerSession().getId() } else { - }
Created At @NLS.toUserString(new java.util.Date(call.getServerSession().getCreationTime()))
Max Inactivity @NLS.convertDuration(call.getServerSession().getMaxInactiveInterval() * 1000)
@name @call.getServerSession().getValue(name)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy