#ifndef ____entrypoints_h__ #define ____entrypoints_h__ namespace http { class __entrypoints : public HTTPPage { int page(HTTPParameters &p) override { p.data << "
" "

Entry Points

" "
" "
Entry Point URL:
" " " "
" "
" "
Entry Point Flow
" " " "
" "

Session Id: " << p.httpSession.getSessionId() << "" " " "
"; p.httpRequest.response.addHeader(coreutils::IMFHeader("Content-Type", "text/html")); return true; } }; } #endif