Class ServiceConfiguration
- java.lang.Object
-
- org.opennms.netmgt.config.service.ServiceConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
public class ServiceConfiguration extends java.lang.Object implements java.io.Serializable
Top-level element for the service-configuration.xml configuration file.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceConfiguration()
ServiceConfiguration(java.util.List<Service> services)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addService(Service service)
boolean
equals(java.lang.Object obj)
java.util.List<Service>
getServices()
int
hashCode()
boolean
removeService(Service service)
void
setServices(java.util.List<Service> services)
-
-
-
Constructor Detail
-
ServiceConfiguration
public ServiceConfiguration()
-
ServiceConfiguration
public ServiceConfiguration(java.util.List<Service> services)
-
-
Method Detail
-
getServices
public java.util.List<Service> getServices()
-
setServices
public void setServices(java.util.List<Service> services)
-
addService
public void addService(Service service)
-
removeService
public boolean removeService(Service service)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-