Return-Path: Delivered-To: apmail-jakarta-avalon-cvs-archive@apache.org Received: (qmail 39077 invoked from network); 5 Sep 2002 03:45:43 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 5 Sep 2002 03:45:43 -0000 Received: (qmail 20194 invoked by uid 97); 5 Sep 2002 03:46:22 -0000 Delivered-To: qmlist-jakarta-archive-avalon-cvs@jakarta.apache.org Received: (qmail 20067 invoked by uid 97); 5 Sep 2002 03:46:21 -0000 Mailing-List: contact avalon-cvs-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Avalon CVS List" Reply-To: "Avalon Developers List" Delivered-To: mailing list avalon-cvs@jakarta.apache.org Received: (qmail 20026 invoked by uid 97); 5 Sep 2002 03:46:19 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 5 Sep 2002 03:45:23 -0000 Message-ID: <20020905034523.26181.qmail@icarus.apache.org> From: vinayc@apache.org To: jakarta-avalon-excalibur-cvs@apache.org Subject: cvs commit: jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client AltrmiInterfaceLookup.java AltrmiHostContext.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N vinayc 2002/09/04 20:45:23 Modified: altrmi/src/java/org/apache/excalibur/altrmi/client AltrmiInterfaceLookup.java AltrmiHostContext.java Log: Living with a fatter javadoc-ed codebase Revision Changes Path 1.3 +22 -21 jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/AltrmiInterfaceLookup.java Index: AltrmiInterfaceLookup.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/AltrmiInterfaceLookup.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AltrmiInterfaceLookup.java 24 Apr 2002 12:42:56 -0000 1.2 +++ AltrmiInterfaceLookup.java 5 Sep 2002 03:45:23 -0000 1.3 @@ -11,9 +11,9 @@ import org.apache.excalibur.altrmi.common.AltrmiConnectionException; /** - * Interface AltrmiFactory - * - * + * AltrmiInterfaceLookup describes the initial client's interaction with + * with the server (lookup/listing of remote services.) + * * @author Paul Hammant Paul_Hammant@yahoo.com * @version $Revision$ */ @@ -21,39 +21,40 @@ { /** - * Method lookup - * - * + * Lookup a name by which the remote service is + * published by the server. + * Usage: + * + * AltrmiInterfaceLookup lookupService= . . . . ; + * RemoteInterface remoteInterface = lookupService.lookup("Published-Name-Of-The-Remote-Server"); + * * @param publishedServiceName - * - * @return - * + * @return proxy to the Remote service. * @throws AltrmiConnectionException - * */ - Object lookup( String publishedServiceName ) throws AltrmiConnectionException; + Object lookup(String publishedServiceName) + throws AltrmiConnectionException; /** - * Method lookup - * + * Lookup a name by which the remote service is + * published by the server within the context of + * the Authentication credentials supplied. * * @param publishedServiceName * @param altrmiAuthentication - * * @return - * * @throws AltrmiConnectionException * */ - Object lookup( String publishedServiceName, AltrmiAuthentication altrmiAuthentication ) + Object lookup( + String publishedServiceName, + AltrmiAuthentication altrmiAuthentication) throws AltrmiConnectionException; /** - * Method list - * - * + * This method returns the list of names of the + * remote services. * @return - * */ String[] list(); 1.4 +8 -8 jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/AltrmiHostContext.java Index: AltrmiHostContext.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/AltrmiHostContext.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- AltrmiHostContext.java 6 May 2002 18:14:36 -0000 1.3 +++ AltrmiHostContext.java 5 Sep 2002 03:45:23 -0000 1.4 @@ -8,9 +8,10 @@ package org.apache.excalibur.altrmi.client; /** - * Interface AltrmiHostContext - * - * + * AltrmiHostContext, as the name suggests,describes the + * context of the calls made to the server which could be + * Over Piped Streams or Over Custom Transport or Direct calls etc .. + * * @author Paul Hammant Paul_Hammant@yahoo.com * @version * $Revision$ */ @@ -18,10 +19,9 @@ { /** - * Method getInvocationHandler - * - * - * @return + * Return the Invocation Handler that can talk over + * the transport this particular context address. + * @return InvocationHandler * */ AltrmiClientInvocationHandler getClientInvocationHandler(); -- To unsubscribe, e-mail: For additional commands, e-mail: