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

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

There is a newer version: 22.2.3
Show newest version
@extends(view.wondergem.template.html, title: ("System Info"))
@section(breadcrumbs) {
  • System 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)
    } @if (call.getServerSession(false).isPresent()) {

    Server Session

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

    Implicit Template Arguments

    @for(java.util.Map.Entry entry : renderArgs.entrySet()) { }
    Name Type
    @entry.getKey() @if (entry.getValue() != null) { @entry.getValue().getClass() }
    }




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy