/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/**
* Facade object which masks the internal <code>VirtualServer</code>
* object from the web application.
*
* @author Amy Roh
*/
// ----------------------------------------------------------- Constructors
if (webListeners != null) {
}
}
// ----------------------------------------------------- Instance Variables
/**
* Wrapped web module.
*/
// ----------------------------------------------------- embedded methods
/**
* Sets the docroot of this <tt>VirtualServer</tt>.
*
* @param docRoot the docroot of this <tt>VirtualServer</tt>.
*/
}
}
/**
* Gets the docroot of this <tt>VirtualServer</tt>.
*/
return docRoot;
}
/**
* Return the virtual server identifier.
*/
return id;
}
/**
* Set the virtual server identifier string.
*
* @param id New identifier for this virtual server
*/
}
}
/**
* Sets the collection of <tt>WebListener</tt> instances from which
* this <tt>VirtualServer</tt> receives requests.
*
* @param webListeners the collection of <tt>WebListener</tt> instances from which
* this <tt>VirtualServer</tt> receives requests.
*/
if (webListeners != null) {
}
}
/**
* Gets the collection of <tt>WebListener</tt> instances from which
* this <tt>VirtualServer</tt> receives requests.
*
* @return the collection of <tt>WebListener</tt> instances from which
* this <tt>VirtualServer</tt> receives requests.
*/
return webListeners;
}
/**
* Registers the given <tt>Context</tt> with this <tt>VirtualServer</tt>
* at the given context root.
*
* <p>If this <tt>VirtualServer</tt> has already been started, the
* given <tt>context</tt> will be started as well.
*/
throws ConfigException, GlassFishException {
} else {
}
}
/**
* Stops the given <tt>context</tt> and removes it from this
* <tt>VirtualServer</tt>.
*/
throws GlassFishException {
} else {
}
}
/**
* Finds the <tt>Context</tt> registered at the given context root.
*/
} else {
return null;
}
}
/**
* Gets the collection of <tt>Context</tt> instances registered with
* this <tt>VirtualServer</tt>.
*/
return vs.getContexts();
} else {
return null;
}
}
/**
* Reconfigures this <tt>VirtualServer</tt> with the given
* configuration.
*
* <p>In order for the given configuration to take effect, this
* <tt>VirtualServer</tt> may be stopped and restarted.
*/
throws ConfigException {
}
}
/**
* Gets the current configuration of this <tt>VirtualServer</tt>.
*/
return config;
}
}
return vs;
}
}