[Asterisk-java-cvs] CVS: asterisk-java/src/java/net/sf/asterisk/fastagi/reply AGIReply.java,1.3,1.4
Brought to you by:
srt
From: Stefan R. <sr...@us...> - 2005-03-08 16:48:48
|
Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/reply In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22302/src/java/net/sf/asterisk/fastagi/reply Modified Files: AGIReply.java Log Message: Index: AGIReply.java =================================================================== RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/reply/AGIReply.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -p -r1.3 -r1.4 --- AGIReply.java 8 Mar 2005 02:58:01 -0000 1.3 +++ AGIReply.java 8 Mar 2005 16:48:35 -0000 1.4 @@ -20,9 +20,10 @@ import java.io.Serializable; /** * Reply received in response to an AGICommand.<br> - * The AGIReply contains information about success or failure of the execution of an AGICommand and - - * depending on the command sent - additional information returned, for example the value of a - * variable requested by a GetVariableCommand. + * The AGIReply contains information about success or failure of the execution + * of an AGICommand and - depending on the command sent - additional information + * returned, for example the value of a variable requested by a + * GetVariableCommand. * * @see net.sf.asterisk.fastagi.command.AGICommand * @@ -32,21 +33,24 @@ import java.io.Serializable; public class AGIReply implements Serializable { /** - * Status code (200) indicating Asterisk successfully processed the AGICommand. + * Status code (200) indicating Asterisk successfully processed the + * AGICommand. */ public static int SC_SUCCESS = 200; /** - * Status code (510) indicating Asterisk was unable to process the AGICommand because there is - * no command with the given name available. + * Status code (510) indicating Asterisk was unable to process the + * AGICommand because there is no command with the given name available. */ public static int SC_INVALID_OR_UNKNOWN_COMMAND = 510; /** - * Status code (510) indicating Asterisk was unable to process the AGICommand because the syntax - * used was not correct. This is most likely due to missing required parameters or additional - * parameters sent that are not understood.<br> - * Ensure proper quoting of the parameters when you receive this status code. + * Status code (510) indicating Asterisk was unable to process the + * AGICommand because the syntax used was not correct. This is most likely + * due to missing required parameters or additional parameters sent that are + * not understood.<br> + * Ensure proper quoting of the parameters when you receive this status + * code. */ public static int SC_INVALID_COMMAND_SYNTAX = 520; @@ -66,8 +70,8 @@ public class AGIReply implements Seriali private int status; /** - * In case of status == 520 (invalid command syntax) this attribute contains the synopsis of the - * command. + * In case of status == 520 (invalid command syntax) this attribute contains + * the synopsis of the command. */ private String usage; @@ -118,10 +122,11 @@ public class AGIReply implements Seriali } /** - * Returns the synopsis of the command sent if Asterisk expected a different syntax (getStatus() == - * SC_INVALID_COMMAND_SYNTAX). + * Returns the synopsis of the command sent if Asterisk expected a different + * syntax (getStatus() == SC_INVALID_COMMAND_SYNTAX). * - * @return the synopsis of the command sent, <code>null</code> if there were no syntax errors. + * @return the synopsis of the command sent, <code>null</code> if there + * were no syntax errors. */ public String getUsage() { |