1 25 26 package org.objectweb.jonas.resource; 27 28 import java.util.List ; 30 31 import org.objectweb.jonas.management.j2eemanagement.J2EEManagedObject; 32 33 39 public class JCAActivationSpec extends J2EEManagedObject { 40 41 45 private String description = null; 46 49 private String jndiname = null; 50 53 private List prop = null; 54 55 62 public JCAActivationSpec(String oName, String jndiname, String description, List prop) { 63 super(oName); 64 this.jndiname = jndiname; 65 this.description = description; 66 this.prop = prop; 67 } 68 69 73 public String getDescription() { 74 return description; 75 } 76 77 81 public String getJndiName() { 82 return jndiname; 83 } 84 85 89 public List getPropertiesList() { 90 return prop; 91 } 92 93 } 94 | Popular Tags |