alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

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

 

new blog posts

 

Copyright 1998-2021 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.