01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */package org.objectweb.speedo.ejb.pobjects.basic;
18:
19: import java.io.Serializable;
20:
21: public class CompPk implements Serializable {
22: public int pkv1;
23: public String pkv2;
24:
25: public CompPk() {
26:
27: }
28:
29: public boolean equals(Object o) {
30: return (this .pkv1 == ((CompPk) o).pkv1)
31: && this .pkv2.equals(((CompPk) o).pkv2);
32: }
33:
34: public int hashCode() {
35: return pkv1 + pkv2.hashCode();
36: }
37:
38: public int getIdp1() {
39: return pkv1;
40: }
41:
42: public void setIdp1(int v) {
43: pkv1 = v;
44: }
45:
46: public int getIdp2() {
47: return Integer.parseInt(pkv2);
48: }
49:
50: public void setIdp2(int v) {
51: pkv2 = Integer.toString(v);
52: }
53: }
|