KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > common > J2eeModuleProviderImpl


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.j2ee.common;
21
22 import java.io.File JavaDoc;
23 import java.util.Set JavaDoc;
24 import org.netbeans.modules.j2ee.deployment.common.api.Datasource;
25 import org.netbeans.modules.j2ee.deployment.devmodules.api.J2eeModule;
26 import org.netbeans.modules.j2ee.deployment.devmodules.api.ModuleChangeReporter;
27 import org.netbeans.modules.j2ee.deployment.devmodules.spi.J2eeModuleProvider;
28 import org.openide.filesystems.FileObject;
29
30 /**
31  *
32  * @author Libor Kotouc
33  */

34 public class J2eeModuleProviderImpl extends J2eeModuleProvider {
35     
36     private Set JavaDoc<Datasource> moduleDatasources;
37     private Set JavaDoc<Datasource> serverDatasources;
38     private boolean creationAllowed;
39     
40     public J2eeModuleProviderImpl(Set JavaDoc<Datasource> moduleDatasources, Set JavaDoc<Datasource> serverDatasources) {
41         this(moduleDatasources, serverDatasources, true);
42     }
43
44     public J2eeModuleProviderImpl(Set JavaDoc<Datasource> moduleDatasources, Set JavaDoc<Datasource> serverDatasources, boolean creationAllowed) {
45         this.moduleDatasources = moduleDatasources;
46         this.serverDatasources = serverDatasources;
47         this.creationAllowed = creationAllowed;
48     }
49
50     // J2eeModuleProvider abstract methods implementation
51

52     public void setServerInstanceID(String JavaDoc severInstanceID) {
53     }
54
55     public File JavaDoc getDeploymentConfigurationFile(String JavaDoc name) {
56         return null;
57     }
58
59     public FileObject findDeploymentConfigurationFile(String JavaDoc name) {
60         return null;
61     }
62
63     public ModuleChangeReporter getModuleChangeReporter() {
64         return null;
65     }
66
67     public J2eeModule getJ2eeModule() {
68         return null;
69     }
70
71     // J2eeModuleProvider DS API methods
72

73     public Set JavaDoc<Datasource> getModuleDatasources() {
74         return moduleDatasources;
75     }
76
77     public Set JavaDoc<Datasource> getServerDatasources() {
78         return serverDatasources;
79     }
80     
81     public boolean isDatasourceCreationSupported() {
82         return creationAllowed;
83     }
84     
85 }
86
Popular Tags