public void setConformanceType(String conformanceType) throws ProfileException {
String oldConformanceType = this.conformanceType;
try {
vetoableChangeSupport.fireVetoableChange("conformanceType", oldConformanceType, conformanceType);
} catch (Exception e) {
throw new ProfileException(null, e);
}
this.conformanceType = conformanceType;
propertyChangeSupport.firePropertyChange("conformanceType", oldConformanceType, conformanceType);
}