|
What this is
Other links
The source code/* * DeploymentConfigurationProvider.java * * Created on October 21, 2003, 2:52 PM */ package org.netbeans.modules.j2ee.deployment.execution; import javax.enterprise.deploy.model.DeployableObject; import javax.enterprise.deploy.spi.DeploymentConfiguration; /** * Provide access to deployment configuration data from top-level J2EE module * @author nn136682 */ public interface DeploymentConfigurationProvider { /** * @return deployment configuration data for a j2ee module. */ DeploymentConfiguration getDeploymentConfiguration(); /** * Retrieve DeployableObject representing a child module * specifed by the provided URI. * * @param moduleUri URI for the child module to retrieve. * @return DeployableObject for the specified child module. */ DeployableObject getDeployableObject(String moduleUri); /** * Save deployment configuration on demand. */ void saveOnDemand() throws java.io.IOException; } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.