Class JMXConnectorPolicyType
- java.lang.Object
-
- org.apache.cxf.management.jmx.type.JMXConnectorPolicyType
-
public class JMXConnectorPolicyType extends Object
Java class for JMXConnectorPolicyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="JMXConnectorPolicyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="Enabled" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="Threaded" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="Daemon" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="JMXServiceURL" type="{http://www.w3.org/2001/XMLSchema}string" default="service:jmx:rmi:///jndi/rmi://localhost:9913/jmxrmi" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected booleandaemonprotected booleanenabledprotected StringjmxServiceURLprotected booleanthreaded
-
Constructor Summary
Constructors Constructor Description JMXConnectorPolicyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetJMXServiceURL()Gets the value of the jmxServiceURL property.booleanisDaemon()Gets the value of the daemon property.booleanisEnabled()Gets the value of the enabled property.booleanisThreaded()Gets the value of the threaded property.voidsetDaemon(boolean value)Sets the value of the daemon property.voidsetEnabled(boolean value)Sets the value of the enabled property.voidsetJMXServiceURL(String value)Sets the value of the jmxServiceURL property.voidsetThreaded(boolean value)Sets the value of the threaded property.voidunsetJMXServiceURL()
-
-
-
Field Detail
-
enabled
protected boolean enabled
-
threaded
protected boolean threaded
-
daemon
protected boolean daemon
-
jmxServiceURL
protected String jmxServiceURL
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
Gets the value of the enabled property.
-
setEnabled
public void setEnabled(boolean value)
Sets the value of the enabled property.
-
isThreaded
public boolean isThreaded()
Gets the value of the threaded property.
-
setThreaded
public void setThreaded(boolean value)
Sets the value of the threaded property.
-
isDaemon
public boolean isDaemon()
Gets the value of the daemon property.
-
setDaemon
public void setDaemon(boolean value)
Sets the value of the daemon property.
-
setJMXServiceURL
public void setJMXServiceURL(String value)
Sets the value of the jmxServiceURL property.
-
unsetJMXServiceURL
public void unsetJMXServiceURL()
-
getJMXServiceURL
public String getJMXServiceURL()
Gets the value of the jmxServiceURL property.
-
-