Class JavaAgent.agent.AgentParams
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JavaAgent.agent.AgentParams

java.lang.Object
   |
   +----JavaAgent.agent.AgentParams

public class AgentParams
extends Object
Static class which defines constant parameters for classes in the JavaAgent.agent and JavaAgent.resource packages. Some of these parameters serve as default values which may be optionally overridden using commandline/applet parameters.

Parameters which need to be bound during compilation (i.e. inlined into the byte code) (e.g. booleans which control conditionally compiled code blocks) need to be declared static final, those which need to be dynamically bound must be declared with only the static modifier. Most params will fall in the later category. Note: compilation binding requires the recompilation of all affected classes.


Copyright (c) 1995, H. Robert Frost, Stanford University. All rights reserved.

Copyright (c) 1996, H. Robert Frost, Enterprise Integration Technologies, Inc. All rights reserved.

RESTRICTED RIGHTS LEGEND: Use, duplication or disclosure by the Government is subject to restrictions as set forth in subparagraph(c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and in similar clauses in the FAR and NASA FAR supplement.

This software is bound by the terms and conditions listed in the attached LICENSE file.



Variable Index

 o APPEND
If the file exists, append the remote file onto the local file.
 o DEBUG
Should detailed systems messages be printed?
 o FILE_EXISTS_ACTION
Should existing files be left, overwritten or appended to when performing a remote copy?
 o LEAVE
If the file already exists, don't modify it.
 o MESSAGE_STORAGE
Max size of the messages_in and messages_out buffers.
 o OVERWRITE
If the file exists, replace it with the remote file.
 o RECEIVE_TIMEOUT
Timeout value for receiving a message, in milliseconds.
 o RETRIEVAL_NOTIFIES
Max number of notifies to wait through for resource retrieval.
 o RETRIEVAL_WAIT
Resource retrieval max wait.
 o SEND_TIMEOUT
Timeout value for sending a message, in milliseconds.
 o TEST
If true, all conditionally enclosed code blocks will be compiled and executed during interpretation.

Constructor Index

 o AgentParams()

Variables

 o TEST
  public final static boolean TEST
If true, all conditionally enclosed code blocks will be compiled and executed during interpretation. If false, these blocks will be ignored by the compiler. All effected classes must be recompiled for this change to take place.
 o DEBUG
  public static boolean DEBUG
Should detailed systems messages be printed?
 o MESSAGE_STORAGE
  protected static int MESSAGE_STORAGE
Max size of the messages_in and messages_out buffers.
 o SEND_TIMEOUT
  protected static int SEND_TIMEOUT
Timeout value for sending a message, in milliseconds.
 o RECEIVE_TIMEOUT
  protected static int RECEIVE_TIMEOUT
Timeout value for receiving a message, in milliseconds.
 o LEAVE
  public final static char LEAVE
If the file already exists, don't modify it.
 o OVERWRITE
  public final static char OVERWRITE
If the file exists, replace it with the remote file.
 o APPEND
  public final static char APPEND
If the file exists, append the remote file onto the local file.
 o FILE_EXISTS_ACTION
  public static int FILE_EXISTS_ACTION
Should existing files be left, overwritten or appended to when performing a remote copy?
 o RETRIEVAL_WAIT
  public static long RETRIEVAL_WAIT
Resource retrieval max wait.
 o RETRIEVAL_NOTIFIES
  public static int RETRIEVAL_NOTIFIES
Max number of notifies to wait through for resource retrieval.

Constructors

 o AgentParams
  public AgentParams()

All Packages  Class Hierarchy  This Package  Previous  Next  Index