KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > connectors > util > AdminObjectConfigParser


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

24
25 package com.sun.enterprise.connectors.util;
26
27 import com.sun.enterprise.connectors.*;
28 import com.sun.enterprise.deployment.*;
29
30 /** Interface class of admin object interface parser methods.
31  * @author Srikanth P
32  */

33
34
35 public interface AdminObjectConfigParser extends ConnectorConfigParser {
36
37     /**
38      * Obtains the admin object intercface names of a given rar.
39      * @param desc ConnectorDescriptor pertaining to rar.
40      * @return Array of admin object interface names as strings
41      * @throws ConnectorRuntimeException If rar is not exploded or
42      * incorrect ra.xml
43      */

44
45     public String JavaDoc[] getAdminObjectInterfaceNames(ConnectorDescriptor desc)
46                       throws ConnectorRuntimeException;
47 }
48
Popular Tags