Interface ResourceRef
-
- All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy
public interface ResourceRef extends org.jvnet.hk2.config.ConfigBeanProxy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnabled()Determines whether the resource is active or ignored.@NotNull @Pattern(regexp="[^\':,][^\':,]*") StringgetRef()References the name attribute of a resources, such as anorg.glassfish.connectors.config.JdbcResourceororg.glassfish.connectors.config.JdbcConnectionPool.voidsetEnabled(String value)Sets the value of the enabled property.voidsetRef(String value)Sets the value of the ref property.
-
-
-
Method Detail
-
getEnabled
String getEnabled()
Determines whether the resource is active or ignored.- Returns:
- possible object is
String
-
setEnabled
void setEnabled(String value) throws PropertyVetoException
Sets the value of the enabled property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException
-
getRef
@NotNull @Pattern(regexp="[^\':,][^\':,]*") @NotNull @Pattern(regexp="[^\':,][^\':,]*") String getRef()
References the name attribute of a resources, such as anorg.glassfish.connectors.config.JdbcResourceororg.glassfish.connectors.config.JdbcConnectionPool.- Returns:
- possible object is
String
-
setRef
void setRef(String value) throws PropertyVetoException
Sets the value of the ref property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException
-
-