1 22 package org.jboss.ejb; 23 24 25 31 public class ActivationConfigPropertyImpl implements javax.ejb.ActivationConfigProperty 32 { 33 private String name; 34 private String value; 35 36 public ActivationConfigPropertyImpl(String name, String value) 37 { 38 this.name = name; 39 this.value = value; 40 } 41 42 public String propertyName() 43 { 44 return name; 45 } 46 47 public String propertyValue() 48 { 49 return value; 50 } 51 52 public String name() 53 { 54 return javax.ejb.ActivationConfigProperty .class.getName(); 55 } 56 57 public Class annotationType() 58 { 59 return javax.ejb.ActivationConfigProperty .class; 60 } 61 62 public String toString() 63 { 64 return "ActivationConfigPropertyImpl:name=" + name + ", value=" + value; 65 } 66 } 67 | Popular Tags |