public void setOperationType(OperationType type) {
OperationConfig config = getConfig();
if (type == null) {
if (config.isSetType()) {
config.unsetType();
}
} else {
if (OperationType.ONE_WAY.equals(type)) {
config.setType(OperationTypesConfig.ONE_WAY);
} else if (OperationType.NOTIFICATION.equals(type)) {