}
@Override
public void validateObject() throws InvalidObjectException {
if (serverName == null) {
throw new InvalidObjectException("serverName is null");
}
if (portOffset < 0) {
throw new InvalidObjectException("portOffset is out of range");
}
if (updates == null) {
throw new InvalidObjectException("updates is null");
}
if (startServices == null) {
throw new InvalidObjectException("startServices is null");
}
}