Package org.codehaus.xfire.annotations

Examples of org.codehaus.xfire.annotations.HandlerChainAnnotation


    }

    public HandlerChainAnnotation getHandlerChainAnnotation(Class clazz)
    {
        HandlerChain handlerChain = (HandlerChain) clazz.getAnnotation(HandlerChain.class);
        HandlerChainAnnotation annotation = null;
        if (handlerChain != null)
        {
            annotation = new HandlerChainAnnotation(handlerChain.file(),
                                                    handlerChain.name());
        }
        return annotation;
    }
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.annotations.HandlerChainAnnotation

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.