this.type = compositeConfig.getString(this.name + Constants.PROPERTY_QUALIFIER_TYPE);
if (type == null) {
throw new SCMPValidatorException(SCMPError.V_WRONG_CONFIGURATION_FILE, "required property=" + this.name
+ Constants.PROPERTY_QUALIFIER_TYPE + " is missing");
}
ServiceType serviceType = ServiceType.getType(this.type);
if (serviceType == ServiceType.UNDEFINED) {
throw new SCMPValidatorException(SCMPError.V_WRONG_CONFIGURATION_FILE, "unkown serviceType=" + this.name + this.type);
}
String remoteNode = compositeConfig.getString(this.name + Constants.PROPERTY_QUALIFIER_REMOTE_NODE);
if (remoteNode != null) {