KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > soap > SOAPFaultCode


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

22 public interface SOAPFaultCode extends OMElement{
23     /**
24      * Eran Chinthaka (chinthaka@apache.org)
25      */

26
27     /**
28      * @param value
29      */

30     public void setValue(SOAPFaultValue value) throws SOAPProcessingException;
31
32     /**
33      * @return
34      */

35     public SOAPFaultValue getValue();
36
37     /**
38      * @param value
39      */

40     public void setSubCode(SOAPFaultSubCode value) throws SOAPProcessingException;
41
42     /**
43      * @return
44      */

45     public SOAPFaultSubCode getSubCode();
46
47 }
48
Popular Tags