public interface BasePortalURL
BasePortalURL defines the interface for manipulating Base URLs in a portal. Base URLs contain the isSecure flag, server name, server port, and server scheme. This abstraction was necessary for wiring the entire portal's base URL via another mechanism than retrieving from the servlet request.
Modifier and Type | Method and Description |
---|---|
String |
getServerName() |
int |
getServerPort() |
String |
getServerScheme() |
boolean |
isSecure() |
void |
setSecure(boolean secure) |
void |
setServerName(String serverName) |
void |
setServerPort(int serverPort) |
void |
setServerScheme(String serverScheme) |
boolean isSecure()
void setSecure(boolean secure)
String getServerName()
void setServerName(String serverName)
int getServerPort()
void setServerPort(int serverPort)
String getServerScheme()
void setServerScheme(String serverScheme)
Copyright © 1999–2016 The Apache Software Foundation. All rights reserved.