1 16 package com.psibt.framework.net; 17 18 import java.io.*; 19 import java.net.*; 20 21 27 public interface HTTPRequestHandler { 28 29 32 public String getTitle(); 33 34 37 public void setTitle(String title); 38 39 42 public String getDescription(); 43 44 47 public void setDescription(String description); 48 49 55 public String getHandledPath(); 56 57 63 public void setHandledPath(String path); 64 65 73 public boolean handleRequest(String request, Writer out); 74 } | Popular Tags |