Remove methods already defined by Container
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 24 Aug 2010 08:00:55 +0000 (08:00 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 24 Aug 2010 08:00:55 +0000 (08:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@988422 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/Host.java

index 8e3bd00..0f4242a 100644 (file)
@@ -148,24 +148,6 @@ public interface Host extends Container {
     public void setDeployOnStartup(boolean deployOnStartup);
 
 
-    /**
-     * Return the canonical, fully qualified, name of the virtual host
-     * this Container represents.
-     */
-    public String getName();
-
-
-    /**
-     * Set the canonical, fully qualified, name of the virtual host
-     * this Container represents.
-     *
-     * @param name Virtual host name
-     *
-     * @exception IllegalArgumentException if name is null
-     */
-    public void setName(String name);
-
-
     // --------------------------------------------------------- Public Methods