View Javadoc

1   package org.ehoffman.testing.module.webapp;
2   
3   import java.net.URL;
4   
5   public interface Application {
6   
7     public URL getDefaultRootUrl();
8   
9     public URL getSecureRootUrl();
10  
11    public String getName();
12  
13  }