1 21 22 package org.apache.derby.client.am; 23 24 25 28 public class GetSystemPropertiesAction implements java.security.PrivilegedAction { 29 private java.util.Properties systemProperties_ = null; 31 32 34 38 public GetSystemPropertiesAction() { 39 } 40 41 44 public Object run() { 45 this.systemProperties_ = System.getProperties(); 46 return this.systemProperties_; 47 } 48 49 52 public java.util.Properties getSystemProperties() { 53 return this.systemProperties_; 54 } 55 } 56 | Popular Tags |