X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Fpages%2FPage.java;h=386a6d75fcc7d96cb6f4e25cd7afa992abf775bc;hb=e10fa0abc72abd9b4080ebd3c2986b101c7c35ea;hp=2e714b61fdd4306d316547a0690a29ee4e4431e0;hpb=391351cfb8554b94fd38b3b404f34f7e3916f8f5;p=gigi.git diff --git a/src/org/cacert/gigi/pages/Page.java b/src/org/cacert/gigi/pages/Page.java index 2e714b61..386a6d75 100644 --- a/src/org/cacert/gigi/pages/Page.java +++ b/src/org/cacert/gigi/pages/Page.java @@ -33,6 +33,10 @@ public abstract class Page { return defaultTemplate; } + public boolean beforeTemplate(HttpServletRequest req, + HttpServletResponse resp) throws IOException { + return false; + } public abstract void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException;