KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > repository > J2EEResourceFactory


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23 package com.sun.enterprise.repository;
24
25 /**
26  * Interface for creating the various J2EEResource object types.
27  *
28  * @author Kenneth Saks
29  */

30 public interface J2EEResourceFactory {
31
32     /**
33      * Load a J2EE Resource Collection from the local
34      * j2ee installation.
35      * @throws J2EEResourceException
36      */

37     J2EEResourceCollection loadDefaultResourceCollection()
38         throws J2EEResourceException;
39
40     /**
41      * Load a collection of resources from the data store
42      * represented by the given URL.
43      * @throws J2EEResourceException
44      */

45     J2EEResourceCollection loadResourceCollection(String JavaDoc resourcesURL)
46         throws J2EEResourceException;
47
48     /**
49      * Store a resource collection to the local j2ee installation.
50      * @throws J2EEResourceException
51      */

52     void storeDefaultResourceCollection(J2EEResourceCollection resources)
53         throws J2EEResourceException;
54     
55     /**
56      * Store a resource collection to the given URL
57      * @throws J2EEResourceException
58      */

59     void storeResourceCollection(J2EEResourceCollection resources,
60                                  String JavaDoc resourcesURL)
61         throws J2EEResourceException;
62
63     /**
64      * Create a resource of the given type and name.
65      */

66     J2EEResource createResource(int type, String JavaDoc name);
67
68     /**
69      * Create a new resource property.
70      */

71     ResourceProperty createProperty(String JavaDoc name);
72
73 }
74
Popular Tags