KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > wsmgmt > config > spi > WebServiceConfig


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.admin.wsmgmt.config.spi;
24
25 /**
26  * This represents management configuration for a web service end point.
27  */

28 public interface WebServiceConfig {
29
30     /**
31      * Returns the name of the web service endpoint
32      *
33      * @return the name of the web service endpoint
34      */

35     public String JavaDoc getName();
36
37     /**
38      * Returns the name of the web service endpoint name (relative i.e. does not
39      * include module id in the name.
40      *
41      * @return the relative name of the web service endpoint
42      */

43     public String JavaDoc getEndpointName();
44
45     /**
46      * Returns the monitoring level OFF, LOW or HIGH
47      *
48      * @return the monitoring level OFF, LOW or HIGH
49      */

50     public String JavaDoc getMonitoringLevel();
51
52     /**
53      * Returns the max history size (size of stored monitoring stats)
54      *
55      * @return the max history size (size of stored monitoring stats)
56      */

57     public int getMaxHistorySize();
58
59     /**
60      * Returns true, if this web service endpoint JBI enabled
61      *
62      * @return true, if this web service endpoint JBI enabled
63      */

64     public boolean getJbiEnabled();
65     
66     /**
67      * Returns the transformation rules defined for this endpoint
68      *
69      * @return the transformation rules defined for this endpoint
70      */

71     public TransformationRule[] getTransformationRule();
72
73     /**
74      * Returns the transformation rules defined for this endpoint
75      * during request phase
76      *
77      * @return the transformation rules defined for this endpoint
78      */

79     public TransformationRule[] getRequestTransformationRule();
80
81     /**
82      * Returns the transformation rules defined for this endpoint
83      * during response phase
84      *
85      * @return the transformation rules defined for this endpoint
86      */

87     public TransformationRule[] getResponseTransformationRule();
88
89     /**
90      * Returns the registries where the web service end point artifacts are
91      * published.
92      *
93      * @return the registries where the web service end point artifacts are
94      * published.
95      */

96     public RegistryLocation[] getRegistryLocation();
97 }
98
Popular Tags