KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > wsdl > WSDLBinding


1 /*
2  * Copyright 2004,2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.wsdl;
17
18 import javax.xml.namespace.QName JavaDoc;
19 import java.util.HashMap JavaDoc;
20
21 /**
22  * @author chathura@opensource.lk
23  */

24 public interface WSDLBinding extends ExtensibleComponent {
25     /**
26      * Method getBoundInterface
27      *
28      * @return
29      */

30     public WSDLInterface getBoundInterface();
31
32     /**
33      * Method setBoundInterface
34      *
35      * @param boundInterface
36      */

37     public void setBoundInterface(WSDLInterface boundInterface);
38
39     /**
40      * Method getName
41      *
42      * @return
43      */

44     public QName JavaDoc getName();
45
46     /**
47      * Method setName
48      *
49      * @param name
50      */

51     public void setName(QName JavaDoc name);
52
53     /**
54      * Method getTargetNameSpace
55      *
56      * @return
57      */

58     public String JavaDoc getTargetNameSpace();
59
60     /**
61      * Method getBindingFaults
62      *
63      * @return
64      */

65     public HashMap JavaDoc getBindingFaults();
66
67     /**
68      * Method setBindingFaults
69      *
70      * @param bindingFaults
71      */

72     public void setBindingFaults(HashMap JavaDoc bindingFaults);
73
74     /**
75      * Method getBindingOperations
76      *
77      * @return
78      */

79     public HashMap JavaDoc getBindingOperations();
80
81     /**
82      * Method setBindingOperations
83      *
84      * @param bindingOperations
85      */

86     public void setBindingOperations(HashMap JavaDoc bindingOperations);
87
88     /**
89      * Method addBindingOperation
90      *
91      * @param bindingOperation
92      */

93     public void addBindingOperation(WSDLBindingOperation bindingOperation);
94
95     /**
96      * Method getBindingOperation
97      *
98      * @param qName
99      * @return
100      */

101     public WSDLBindingOperation getBindingOperation(QName JavaDoc qName);
102
103     /**
104      * Method addBindingFaults
105      *
106      * @param bindingFault
107      */

108     public void addBindingFaults(WSDLBindingFault bindingFault);
109
110     /**
111      * Method getBindingFault
112      *
113      * @param ref
114      * @return
115      */

116     public WSDLBindingFault getBindingFault(QName JavaDoc ref);
117 }
118
Popular Tags