KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > vfs > status > ActionStatement


1 /*
2  * The contents of this file are subject to the
3  * Mozilla Public License Version 1.1 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at http://www.mozilla.org/MPL/
6  *
7  * Software distributed under the License is distributed on an "AS IS"
8  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
9  * See the License for the specific language governing rights and
10  * limitations under the License.
11  *
12  * The Initial Developer of the Original Code is Simulacra Media Ltd.
13  * Portions created by Simulacra Media Ltd are Copyright (C) Simulacra Media Ltd, 2004.
14  *
15  * All Rights Reserved.
16  *
17  * Contributor(s):
18  */

19 package org.openharmonise.vfs.status;
20
21 /**
22  *
23  * @author Matthew Large
24  * @version $Revision: 1.1 $
25  *
26  */

27 public class ActionStatement {
28     private String JavaDoc m_sKnownResourceOK = null;
29     private String JavaDoc m_sUnknownResourceOK = null;
30     
31     private String JavaDoc m_sKnownResourceERROR = null;
32     private String JavaDoc m_sUnknownResourceERROR = null;
33     
34     /**
35      *
36      */

37     public ActionStatement() {
38         super();
39     }
40     
41
42     /**
43      * @return Returns the m_sKnownResourceERROR.
44      */

45     public String JavaDoc getKnownResourceERROR() {
46         return m_sKnownResourceERROR;
47     }
48     /**
49      * @param knownResourceERROR The m_sKnownResourceERROR to set.
50      */

51     public void setKnownResourceERROR(String JavaDoc knownResourceERROR) {
52         m_sKnownResourceERROR = knownResourceERROR;
53     }
54     /**
55      * @return Returns the m_sKnownResourceOK.
56      */

57     public String JavaDoc getKnownResourceOK() {
58         return m_sKnownResourceOK;
59     }
60     /**
61      * @param knownResourceOK The m_sKnownResourceOK to set.
62      */

63     public void setKnownResourceOK(String JavaDoc knownResourceOK) {
64         m_sKnownResourceOK = knownResourceOK;
65     }
66     /**
67      * @return Returns the m_sUnknownResourceERROR.
68      */

69     public String JavaDoc getUnknownResourceERROR() {
70         return m_sUnknownResourceERROR;
71     }
72     /**
73      * @param unknownResourceERROR The m_sUnknownResourceERROR to set.
74      */

75     public void setUnknownResourceERROR(String JavaDoc unknownResourceERROR) {
76         m_sUnknownResourceERROR = unknownResourceERROR;
77     }
78     /**
79      * @return Returns the m_sUnkownResourceOK.
80      */

81     public String JavaDoc getUnknownResourceOK() {
82         return m_sUnknownResourceOK;
83     }
84     /**
85      * @param unkownResourceOK The m_sUnkownResourceOK to set.
86      */

87     public void setUnknownResourceOK(String JavaDoc unkownResourceOK) {
88         m_sUnknownResourceOK = unkownResourceOK;
89     }
90
91 }
92
Popular Tags