Examples of EarUnpackOpts


Examples of org.ow2.util.ee.deploy.impl.helper.EarUnpackOpts

     * @param earDeployable the archive to unpack.
     * @return a new deployable (which is unpacked)
     * @throws DeployerException if the EAR can't be unpacked
     */
    protected EARDeployable unpackEARDeployable(final EARDeployable earDeployable) throws DeployerException {
        EarUnpackOpts earUnpackOpts = new EarUnpackOpts();
        earUnpackOpts.setWarAutoUnpacked(true);
        return UnpackDeployableHelper.unpack(earDeployable, UnpackDeployableHelper.DEFAULT_FOLDER, false, earUnpackOpts);

    }
View Full Code Here
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.