org.codehaus.enunciate.modules.cxf.CXFConfigClasspathHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enunciate-cxf Show documentation
Show all versions of enunciate-cxf Show documentation
The Enunciate CXF module provides support for CXF on the server-side.
The newest version!
package org.codehaus.enunciate.modules.cxf;
import org.codehaus.enunciate.main.ClasspathHandler;
import org.codehaus.enunciate.main.ClasspathResource;
import java.io.File;
/**
* @author Ryan Heaton
*/
public class CXFConfigClasspathHandler implements ClasspathHandler {
@Override
public void startPathEntry(File pathEntry) {
}
@Override
public void handleResource(ClasspathResource resource) {
}
@Override
public boolean endPathEntry(File pathEntry) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy