Building Controls Virtual Test Bed
BACnetCompleteProperty.java
Go to the documentation of this file.
1 
2 /*
3 ********************************************************************
4 Copyright Notice
5 ----------------
6 
7 Building Controls Virtual Test Bed (BCVTB) Copyright (c) 2008-2009, The
8 Regents of the University of California, through Lawrence Berkeley
9 National Laboratory (subject to receipt of any required approvals from
10 the U.S. Dept. of Energy). All rights reserved.
11 
12 If you have questions about your rights to use or distribute this
13 software, please contact Berkeley Lab's Technology Transfer Department
14 at TTD@lbl.gov
15 
16 NOTICE. This software was developed under partial funding from the U.S.
17 Department of Energy. As such, the U.S. Government has been granted for
18 itself and others acting on its behalf a paid-up, nonexclusive,
19 irrevocable, worldwide license in the Software to reproduce, prepare
20 derivative works, and perform publicly and display publicly. Beginning
21 five (5) years after the date permission to assert copyright is obtained
22 from the U.S. Department of Energy, and subject to any subsequent five
23 (5) year renewals, the U.S. Government is granted for itself and others
24 acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide
25 license in the Software to reproduce, prepare derivative works,
26 distribute copies to the public, perform publicly and display publicly,
27 and to permit others to do so.
28 
29 
30 Modified BSD License agreement
31 ------------------------------
32 
33 Building Controls Virtual Test Bed (BCVTB) Copyright (c) 2008-2009, The
34 Regents of the University of California, through Lawrence Berkeley
35 National Laboratory (subject to receipt of any required approvals from
36 the U.S. Dept. of Energy). All rights reserved.
37 
38 Redistribution and use in source and binary forms, with or without
39 modification, are permitted provided that the following conditions are met:
40 
41  1. Redistributions of source code must retain the above copyright
42  notice, this list of conditions and the following disclaimer.
43  2. Redistributions in binary form must reproduce the above copyright
44  notice, this list of conditions and the following disclaimer in
45  the documentation and/or other materials provided with the
46  distribution.
47  3. Neither the name of the University of California, Lawrence
48  Berkeley National Laboratory, U.S. Dept. of Energy nor the names
49  of its contributors may be used to endorse or promote products
50  derived from this software without specific prior written permission.
51 
52 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
53 IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
54 TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
55 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
56 OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
57 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
58 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
59 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
60 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
61 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
62 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 
64 You are under no obligation whatsoever to provide any bug fixes,
65 patches, or upgrades to the features, functionality or performance of
66 the source code ("Enhancements") to anyone; however, if you choose to
67 make your Enhancements available either publicly, or directly to
68 Lawrence Berkeley National Laboratory, without imposing a separate
69 written license agreement for such Enhancements, then you hereby grant
70 the following license: a non-exclusive, royalty-free perpetual license
71 to install, use, modify, prepare derivative works, incorporate into
72 other computer software, distribute, and sublicense such enhancements or
73 derivative works thereof, in binary and source code form.
74 
75 ********************************************************************
76 */
77 package bacnet.util;
78 
87 {
100  public BACnetCompleteProperty(final int devInst, final String objType,
101  final int objInst, final String proName,
102  final String proValue, final String proAppTag,
103  final String proPriority, final String proIndex)
104  {
105  super(devInst, objType, objInst);
106  pro_name = proName;
107  value = proValue;
108  apptag = proAppTag;
109  priority = proPriority;
110  index = proIndex;
111  }
112 
117  public String getPropertyName(){
118  return pro_name;
119  }
120 
125  public String getPropertyValue(){
126  return value;
127  }
128 
133  public String getApplicationTag(){
134  return apptag;
135  }
136 
141  public String getPropertyPriority(){
142  return priority;
143  }
144 
149  public String getPropertyIndex(){
150  return index;
151  }
152 
154  protected String pro_name;
155 
157  protected String value;
158 
160  protected String apptag;
161 
163  protected String priority;
164 
166  protected String index;
167 }
String getPropertyName()
Get the property name.
String getPropertyIndex()
Get the property index.
This object stores information of BACnet objects.
This class is used to create objects that have the information from the xml configuration file...
String getApplicationTag()
Get the application tag.
String getPropertyValue()
Get the property value.
BACnetCompleteProperty(final int devInst, final String objType, final int objInst, final String proName, final String proValue, final String proAppTag, final String proPriority, final String proIndex)
Construct an instance that sets all properties of this object.
String getPropertyPriority()
Get the property priority.