KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > config > Configuration


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.config;
10
11 import org.jboss.portal.common.util.Loader;
12
13 /**
14  * Defines a single place in the server used to store configuration information.
15  *
16  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
17  * @version $Revision: 1.2 $
18  */

19 public interface Configuration extends Loader
20 {
21    int getNonSecurePort();
22    int getSecurePort();
23 }
24
Popular Tags