Examples of calculateArtifact()


Examples of org.apache.geronimo.system.plugin.PluginInstallerGBean.calculateArtifact()

                PluginInstallerGBean installer = KernelRegistry.getSingleKernel().getGBean(PluginInstallerGBean.class);
                Artifact artifact = null;
                if ("yes".equals(specify)) {
                    artifact = new Artifact(groupId, artifactId, version, fileType);
                } else {
                    artifact = installer.calculateArtifact(file, basename, groupId);
                }
                if (artifact==null) {
                    addErrorMessage(actionRequest, "Can not calculate the Artifact string automatically. Please manually specify one.");
                    return;
                }
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.