01: /*
02: * The contents of this file are subject to the
03: * Mozilla Public License Version 1.1 (the "License");
04: * you may not use this file except in compliance with the License.
05: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
06: *
07: * Software distributed under the License is distributed on an "AS IS"
08: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
09: * 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 m_sKnownResourceOK = null;
29: private String m_sUnknownResourceOK = null;
30:
31: private String m_sKnownResourceERROR = null;
32: private String m_sUnknownResourceERROR = null;
33:
34: /**
35: *
36: */
37: public ActionStatement() {
38: super ();
39: }
40:
41: /**
42: * @return Returns the m_sKnownResourceERROR.
43: */
44: public String getKnownResourceERROR() {
45: return m_sKnownResourceERROR;
46: }
47:
48: /**
49: * @param knownResourceERROR The m_sKnownResourceERROR to set.
50: */
51: public void setKnownResourceERROR(String knownResourceERROR) {
52: m_sKnownResourceERROR = knownResourceERROR;
53: }
54:
55: /**
56: * @return Returns the m_sKnownResourceOK.
57: */
58: public String getKnownResourceOK() {
59: return m_sKnownResourceOK;
60: }
61:
62: /**
63: * @param knownResourceOK The m_sKnownResourceOK to set.
64: */
65: public void setKnownResourceOK(String knownResourceOK) {
66: m_sKnownResourceOK = knownResourceOK;
67: }
68:
69: /**
70: * @return Returns the m_sUnknownResourceERROR.
71: */
72: public String getUnknownResourceERROR() {
73: return m_sUnknownResourceERROR;
74: }
75:
76: /**
77: * @param unknownResourceERROR The m_sUnknownResourceERROR to set.
78: */
79: public void setUnknownResourceERROR(String unknownResourceERROR) {
80: m_sUnknownResourceERROR = unknownResourceERROR;
81: }
82:
83: /**
84: * @return Returns the m_sUnkownResourceOK.
85: */
86: public String getUnknownResourceOK() {
87: return m_sUnknownResourceOK;
88: }
89:
90: /**
91: * @param unkownResourceOK The m_sUnkownResourceOK to set.
92: */
93: public void setUnknownResourceOK(String unkownResourceOK) {
94: m_sUnknownResourceOK = unkownResourceOK;
95: }
96:
97: }
|