org.apache.jetspeed.container.url
Interface BasePortalURL


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.

Version:
$Id: $
Author:
David Sean Taylor

Method Summary
 String getServerName()
           
 int getServerPort()
           
 String getServerScheme()
           
 boolean isSecure()
           
 void setSecure(boolean secure)
           
 void setServerName(String serverName)
           
 void setServerPort(int serverPort)
           
 void setServerScheme(String serverScheme)
           
 

Method Detail

isSecure

boolean isSecure()

setSecure

void setSecure(boolean secure)

getServerName

String getServerName()

setServerName

void setServerName(String serverName)

getServerPort

int getServerPort()

setServerPort

void setServerPort(int serverPort)

getServerScheme

String getServerScheme()

setServerScheme

void setServerScheme(String serverScheme)


Copyright © 1999-2007 Apache Software Foundation. All Rights Reserved.