Package com.germinus.mashupbuilder.services

Examples of com.germinus.mashupbuilder.services.ServiceGenerator


                unitActionPackage.setName(serviceName);
                String libraryURL = request.getRequestURL().toString() + "?wadl="
                    + wadlURLParam + "&serviceName=" + serviceName + "&category=" + category;
                unitActionPackage.setLibraryURL(libraryURL);

                ServiceGenerator serviceGenerator = new ServiceGenerator();
                serviceGenerator.setServiceType(category);
                out.println(serviceGenerator.generateUnitActionPackage(unitActionPackage));
            } catch (XmlException ex) {
                Logger.getLogger(ServiceCreatorServlet.class.getName()).log(Level.SEVERE, null, ex);
                out.print("Malformed WADL");
            } catch (MalformedURLException mue) {
                Logger.getLogger(FormatConverter.class.getName()).log(Level.INFO, null, mue);
View Full Code Here

TOP

Related Classes of com.germinus.mashupbuilder.services.ServiceGenerator

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.