01: package com.sun.portal.sra.admin.util;
02:
03: import java.io.File;
04:
05: /**
06: * This class implements the Product interface.
07: *
08: * @version 1.0 @updated 05-Mar-2005 10:00:44 PM
09: */
10: public class LinuxSystemDefaults extends OSDefaults {
11: public LinuxSystemDefaults() {
12: super ();
13: _hashmap.put("chmod", "/bin/chmod");
14: _hashmap.put("native2ascii", "/bin/native2ascii");
15: _hashmap.put("kill", "/bin/kill");
16: _hashmap.put("ps", "/bin/ps");
17: _hashmap.put("native_threads", "/jre/lib/i386/native_threads");
18: _hashmap.put("pid", "/bin/ps -e -o pid,args");
19: _hashmap.put("fs", File.separator);
20: }
21:
22: }
|