Class RemoteService.agent.RSAgentParams
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class RemoteService.agent.RSAgentParams

java.lang.Object
   |
   +----RemoteService.agent.RSAgentParams

public class RSAgentParams
extends Object
Static class which defines constant parameters for classes in the RemoteService.agent and RemoteService.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 OVERWRITE
If the file exists, replace it with the remote file.
 o TEST
If true, all conditionally enclosed code blocks will be compiled and executed during interpretation.

Constructor Index

 o RSAgentParams()

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 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?

Constructors

 o RSAgentParams
  public RSAgentParams()

All Packages  Class Hierarchy  This Package  Previous  Next  Index