[Asterisk-java-cvs] CVS: asterisk-java/src/java/net/sf/asterisk/fastagi AGIServer.java,1.1,1.2
Brought to you by:
srt
From: Stefan R. <sr...@us...> - 2005-03-08 02:33:09
|
Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5970/src/java/net/sf/asterisk/fastagi Modified Files: AGIServer.java Log Message: Fixed spelling Index: AGIServer.java =================================================================== RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/AGIServer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -p -r1.1 -r1.2 --- AGIServer.java 8 Mar 2005 02:25:34 -0000 1.1 +++ AGIServer.java 8 Mar 2005 02:32:58 -0000 1.2 @@ -21,7 +21,7 @@ import java.io.IOException; /** * Listens for incoming AGI connections, reads the inital data and builds an AGIRequest using an * AGIRequestBuilder.<br> - * The AGIRequest is then handed over to the appropriate AGIScript for further processing. + * The AGIRequest is then handed over to the appropriate AGIScript for processing. * * @author srt * @version $Id$ @@ -30,7 +30,7 @@ public interface AGIServer { /** * Starts this AGIServer.<br> - * After calling startup() this AGIServer is ready to receive requests from Asterisk server and + * After calling startup() this AGIServer is ready to receive requests from Asterisk servers and * process them. * * @throws IOException if the server socket cannot be bound. @@ -39,7 +39,7 @@ public interface AGIServer void startup() throws IOException, IllegalStateException; /** - * Shutdowns this AGIServer.<br> + * Shuts this AGIServer down.<br> * The server socket is closed and all resources are freed. * * @throws IOException if the connection cannot be shut down. |