org.eclipse.jst.j2ee.ejb
Interface ActivationConfigProperty

All Superinterfaces:
J2EEEObject

public interface ActivationConfigProperty
extends J2EEEObject

A representation of the model object 'Activation Config Property'.

Version:
J2EE1.4 The activation-config-propertyType contains a name/value configuration property pair for a message-driven bean. The properties that are recognized for a particular message-driven bean are determined by the messaging type.

The following features are supported:

See Also:
EjbPackage.getActivationConfigProperty()

Method Summary
 java.lang.String getName()
          Returns the value of the 'Name' attribute
 java.lang.String getValue()
          Returns the value of the 'Value' attribute
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute
 void setValue(java.lang.String value)
          Sets the value of the 'Value' attribute
 

Method Detail

getValue

public java.lang.String getValue()
Returns the value of the 'Value' attribute.

If the meaning of the 'Value' attribute isn't clear, there really should be more of a description here...

The activation-config-property-value element contains the value for an activation configuration property of a message-driven bean.

Returns:
the value of the 'Value' attribute.
See Also:
setValue(String), EjbPackage.getActivationConfigProperty_Value()

setValue

public void setValue(java.lang.String value)
Sets the value of the 'Value' attribute.

Parameters:
value - the new value of the 'Value' attribute.
See Also:
getValue()

getName

public java.lang.String getName()
Returns the value of the 'Name' attribute.

If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here...

The activation-config-property-name element contains the name for an activation configuration property of a message-driven bean. For JMS message-driven beans, the following property names are recognized: acknowledgeMode, messageSelector, destinationType, subscriptionDurability

Returns:
the value of the 'Name' attribute.
See Also:
setName(String), EjbPackage.getActivationConfigProperty_Name()

setName

public void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()