FileDocCategorySizeDatePackage
ActivationConfigPropertyImpl.javaAPI DocJBoss 4.2.11884Fri Jul 13 20:53:44 BST 2007org.jboss.ejb

ActivationConfigPropertyImpl

public class ActivationConfigPropertyImpl extends Object implements javax.ejb.ActivationConfigProperty
// *
author
William DeCoste
version
$Revision: 57207 $

Fields Summary
private String
name
private String
value
Constructors Summary
public ActivationConfigPropertyImpl(String name, String value)

      this.name = name;
      this.value = value;
   
Methods Summary
public java.lang.ClassannotationType()

      return javax.ejb.ActivationConfigProperty.class;
   
public java.lang.Stringname()

      return javax.ejb.ActivationConfigProperty.class.getName();
   
public java.lang.StringpropertyName()

      return name;
   
public java.lang.StringpropertyValue()

      return value;
   
public java.lang.StringtoString()

      return "ActivationConfigPropertyImpl:name=" + name + ", value=" + value;