KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > container > client > ClientInfo


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.container.client;
6
7 /**
8  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Jan 25, 2005
10  * @version $Id$
11  */

12 public interface ClientInfo {
13   public static ClientInfo DEFAULT = new MockClientInfo() ;
14   
15   public String JavaDoc getClientType() ;
16   
17   public String JavaDoc getRemoteUser() ;
18   
19   public String JavaDoc getIpAddress() ;
20
21   public String JavaDoc getClientName() ;
22 }
23
Popular Tags