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 HpuxSystemDefaults extends OSDefaults {
11: public HpuxSystemDefaults() {
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",
18: "/jre/lib/PA_RISC2.0/native_threads");
19: _hashmap.put("pid", "/bin/ps -ex");
20: _hashmap.put("fs", File.separator);
21: }
22:
23: }
|