-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathTradeOrder.java
More file actions
215 lines (186 loc) · 5.74 KB
/
TradeOrder.java
File metadata and controls
215 lines (186 loc) · 5.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//package org.apache.geode.cache.query.data;
package javaobject;
import java.util.*;
import java.io.*;
import org.apache.geode.*; // for DataSerializable
import org.apache.geode.cache.Declarable;
public class TradeOrder implements Declarable, Serializable, DataSerializable
{
public int price;
public String pkid;
public String type;
public String status;
public String[] names ={ "aaa", "bbb", "ccc", "ddd" };
public byte[] newVal;
public Date creationDate = new Date();
public byte[] arrayZeroSize;
public byte[] arrayNull;
/**
* Initializes an instance of <code>Portfolio</code> from a
* <code>Properties</code> object assembled from data residing in a
* <code>cache.xml</code> file.
*/
public void init(Properties props)
{
this.price = Integer.parseInt(props.getProperty("price"));
this.pkid = props.getProperty("pkid");
this.type = props.getProperty("type", "type1");
this.status = props.getProperty("status", "active");
}
public int getPrice()
{
return price;
}
public String getPk()
{
return pkid;
}
public Date getCreationDate()
{
return creationDate;
}
public boolean testMethod(boolean booleanArg)
{
return true;
}
public boolean isActive()
{
return status.equals("active");
}
public byte[] getNewVal()
{
return this.newVal;
}
public byte[] ArrayZeroSize()
{
return this.arrayZeroSize;
}
public byte[] ArrayNull()
{
return this.arrayNull;
}
static
{
Instantiator.register(new Instantiator(TradeOrder.class, (byte)4)
{
public DataSerializable newInstance()
{
return new TradeOrder();
}
});
}
public static String secIds[] = { "SUN", "IBM", "YHOO", "GOOG", "MSFT",
"AOL", "APPL", "ORCL", "SAP", "DELL", "RHAT", "NOVL", "HP"};
/* public no-arg constructor required for Deserializable */
public TradeOrder()
{
}
public TradeOrder(int i, int size)
{
price = 0;
pkid = null;
status = null;
type = null;
newVal = null;
creationDate = null;
arrayZeroSize = null;
arrayNull = null;
}
public String toString()
{
String out = "TradeOrder [price=" + price + " status=" + status + " type=" + type
+ "pkid=" + pkid + "creationDate=" + creationDate + "\n ";
return out + "\n]";
}
/**
* Getter for property type.S
*
* @return Value of property type.
*/
public String getType()
{
return this.type;
}
public boolean boolFunction(String strArg)
{
if (strArg == "active")
{
return true;
}
else
{
return false;
}
}
public void fromData(DataInput in) throws IOException, ClassNotFoundException
{
this.price = in.readInt();
this.pkid = (String)DataSerializer.readObject(in);
this.type = (String)DataSerializer.readObject(in);
this.status = in.readUTF();
this.names = (String[])DataSerializer.readObject(in);
this.newVal = (byte[])DataSerializer.readByteArray(in);
this.creationDate = (Date)DataSerializer.readObject(in);
this.arrayNull = DataSerializer.readByteArray(in);
this.arrayZeroSize = DataSerializer.readByteArray(in);
}
public void toData(DataOutput out) throws IOException
{
out.writeInt(this.price);
DataSerializer.writeObject(this.pkid, out);
DataSerializer.writeObject(this.type, out);
out.writeUTF(this.status);
DataSerializer.writeObject(this.names, out);
DataSerializer.writeByteArray(this.newVal, out);
DataSerializer.writeObject(this.creationDate, out);
DataSerializer.writeByteArray(this.arrayNull, out);
DataSerializer.writeByteArray(this.arrayZeroSize, out);
}
public static boolean compareForEquals(Object first, Object second)
{
if (first == null && second == null) return true;
if (first != null && first.equals(second)) return true;
return false;
}
public boolean equals(Object other)
{
if (other == null) return false;
if (!(other instanceof Portfolio)) return false;
TradeOrder port = (TradeOrder)other;
if (this.price != port.price) return false;
if (!TradeOrder.compareForEquals(this.pkid, port.pkid)) return false;
if (!TradeOrder.compareForEquals(this.type, port.type)) return false;
if (!TradeOrder.compareForEquals(this.status, port.status)) return false;
if (!TradeOrder.compareForEquals(this.names, port.names)) return false;
if (!TradeOrder.compareForEquals(this.newVal, port.newVal)) return false;
if (!TradeOrder.compareForEquals(this.creationDate, port.creationDate)) return false;
return true;
}
public int hashCode()
{
int hashcode = price;
if (this.pkid != null) hashcode ^= pkid.hashCode();
if (this.type != null) hashcode ^= type.hashCode();
if (this.status != null) hashcode ^= status.hashCode();
if (this.names != null) hashcode ^= names.hashCode();
if (this.newVal != null) hashcode ^= newVal.hashCode();
if (this.creationDate != null) hashcode ^= creationDate.hashCode();
return hashcode;
}
}