Package org.codehaus.xfire.message.document

Source Code of org.codehaus.xfire.message.document.ProviderService

package org.codehaus.xfire.message.document;

import javax.xml.transform.Source;

import org.codehaus.xfire.fault.XFireFault;

public class ProviderService
{
    public Source invoke(Source source) throws XFireFault
    {
        if (source == null)
            throw new XFireFault("Invalid source.", XFireFault.SENDER);
       
        return source;
    }
}
TOP

Related Classes of org.codehaus.xfire.message.document.ProviderService

TOP
Copyright © 2018 www.massapi.com. 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.