1 31 package org.objectweb.proactive.core.descriptor.data; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 42 public class RuntimeDeploymentProperties implements java.io.Serializable { 43 protected java.util.ArrayList runtimeProperties; 44 45 public RuntimeDeploymentProperties() { 46 runtimeProperties = new java.util.ArrayList (); 47 } 48 49 protected void checkProperty(String property) throws ProActiveException { 50 if (!runtimeProperties.contains((String ) property)) { 51 throw new ProActiveException("This runtime property " + property + 52 " does not exist or has already been set!"); 53 } 54 } 55 } 56 | Popular Tags |