org.eclipse.persistence.tools.dbws.EclipsePackager Maven / Gradle / Ivy
/*******************************************************************************
 * Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
 * which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *     Mike Norman - May 05 2010
 *       fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=307897
 ******************************************************************************/
package org.eclipse.persistence.tools.dbws;
//EclipseLink imports
import static org.eclipse.persistence.tools.dbws.DBWSPackager.ArchiveUse.noArchive;
/**
 * 
 * PUBLIC: EclipsePackager extends {@link IDEPackager}. It is responsible for generating
 * the source code of the DBWS Provider (instead of a .class file) and packaging in a
 * Eclipse-friendly directory structure all the other DBWS files produced by its parent:
 * 
 * \--- JDev Projectnnn root directory
 *    |   dbws-builder.xml
 *    |
 *    +---WebContent
 *    |   \---WEB-INF
 *    |       |   web.xml
 *    |       |
 *    |       \---wsdl
 *    |               swaref.xsd
 *    |               eclipselink-dbws-schema.xsd
 *    |               eclipselink-dbws.wsdl
 *    |
 *    \---src
 *        |   eclipselink-dbws-or.xml
 *        |   eclipselink-dbws-ox.xml
 *        |   eclipselink-dbws-sessions.xml
 *        |   eclipselink-dbws.xml
 *        |
 *        \---_dbws
 *                DBWSProvider.java  -- generated by this Packager
 * 
 *
 * @author Mike Norman - [email protected]
 * @since EclipseLink 2.1
 */
public class EclipsePackager extends IDEPackager {
    public static final String ECLIPSE_PUBLIC_HTML_DIR = "WebContent";
    public EclipsePackager() {
        super(null, "eclipse", noArchive);
        srcDirname = SRC_DIR;
        publicHTMLDirname = ECLIPSE_PUBLIC_HTML_DIR;
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy