Package org.switchyard.event

Examples of org.switchyard.event.ValidatorRemovedEvent


    @Override
    public boolean removeValidator(Validator<?> validator) {
        _fallbackValidators.clear();
        boolean removed = _validators.remove(validator.getName()) != null;
        if (removed) {
            publishEvent(new ValidatorRemovedEvent(validator));
        }
       
        return removed;
    }
View Full Code Here

TOP

Related Classes of org.switchyard.event.ValidatorRemovedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.