Class JndiBinding
- java.lang.Object
-
- com.opencloud.rhino.slee.environment.JndiBinding
-
- Direct Known Subclasses:
EnvEntry
,Facility
,LimiterEndpoint
,ResourceAdaptorTypeBinding
public abstract class JndiBinding extends Object
Base class for JNDI binding metadata.
- Since:
- Rhino 2.4.0
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
JndiBinding(String jndiName, Object value)
Create a new JNDI binding metadata object.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getJndiName()
Get the JNDI name of the binding.abstract BindingType
getType()
Get the type of the binding.Object
getValue()
Get the value bound to the JNDI name.int
hashCode()
-
-
-
Method Detail
-
getType
public abstract BindingType getType()
Get the type of the binding.
- Returns:
- the type of the binding.
- Since:
- Rhino 2.4.0
-
getJndiName
public final String getJndiName()
Get the JNDI name of the binding. This name is fully-qualified.
- Returns:
- the JNDI name.
- Since:
- Rhino 2.4.0
-
getValue
public final Object getValue()
Get the value bound to the JNDI name.
- Returns:
- the bound value.
- Since:
- Rhino 2.4.0
-
equals
public boolean equals(Object o)
-
-