01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2006 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA 02111-1307
20: * USA
21: *
22: *
23: * $Id: IProperty.java 5899 2007-03-12 22:14:05Z mpreston $
24: */
25: package com.bostechcorp.cbesb.common.mdl;
26:
27: /**
28: * If a Definition contains multiple variable elements that all share the same delimiter,
29: * escape character, etc, then those properties can be defined at the global level and
30: * referenced in all of the element definitions rather than defining the same delimiter
31: * character separately.
32: *
33: */
34: public interface IProperty {
35:
36: /**
37: * Get the value of name attribute.
38: *
39: * @return the value of name attribute.
40: */
41: public String getName();
42:
43: /**
44: * Set the value of name attribute.
45: *
46: * @param name the value of name attribute.
47: */
48: public void setName(String name);
49:
50: /**
51: * Get namespace URI.
52: *
53: * @return Returns the namespaceURI.
54: */
55: public String getNamespaceURI();
56:
57: /**
58: * Set namespace URI.
59: *
60: * @param namespaceURI The namespaceURI to set.
61: */
62: public void setNamespaceURI(String namespaceURI);
63:
64: /**
65: * Get the value of value attribute.
66: *
67: * @return the value of value attribute.
68: */
69: public String getValue();
70:
71: /**
72: * Set the value of value attribute.
73: *
74: * @param value the value of value attribute.
75: */
76: public void setValue(String value);
77: }
|