Interface MutableVirtualHost
-
- All Superinterfaces:
VirtualHost
public interface MutableVirtualHost extends VirtualHost
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPortMount(MutablePortMount portMount)
Add theportMount
to thisMutableVirtualHost
void
addVirtualHost(MutableVirtualHost virtualHost)
Adds thevirtualHost
as child to thisMutableVirtualHost
-
Methods inherited from interface org.hippoecm.hst.configuration.hosting.VirtualHost
getAllowedOrigins, getBaseURL, getCdnHost, getChildHost, getChildHosts, getContextPath, getDefaultResourceBundleIds, getHomePage, getHostGroupName, getHostName, getHstLinkUrlPrefix, getLocale, getName, getPageNotFound, getPortMount, getResponseHeaders, getScheme, getSchemeNotMatchingResponseCode, getVirtualHosts, isCacheable, isContextPathInUrl, isCustomHttpsSupported, isPortInUrl, isSchemeAgnostic, isVersionInPreviewHeader
-
-
-
-
Method Detail
-
addVirtualHost
void addVirtualHost(MutableVirtualHost virtualHost) throws IllegalArgumentException
Adds thevirtualHost
as child to thisMutableVirtualHost
- Parameters:
virtualHost
- theMutableVirtualHost
to add- Throws:
IllegalArgumentException
- if thevirtualHost
could not be added
-
addPortMount
void addPortMount(MutablePortMount portMount) throws IllegalArgumentException
Add theportMount
to thisMutableVirtualHost
- Parameters:
portMount
- theMutablePortMount
to add- Throws:
IllegalArgumentException
- if theportMount
could not be added
-
-