1 7 package com.inversoft.verge.mvc.controller; 8 9 10 import java.net.URISyntaxException ; 11 12 import javax.servlet.http.HttpServletRequest ; 13 14 15 30 public interface Result { 31 32 37 public String getURL(); 38 39 44 public boolean isForward(); 45 46 51 public String getCategory(); 52 53 58 public String getGeneratedURL(HttpServletRequest request) 59 throws URISyntaxException ; 60 } | Popular Tags |