Source code: com/flexstor/common/data/ejb/disguiserecord/AssetRelationData.java
1 /*
2 * AssetRelationData.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:28 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.data.ejb.disguiserecord;
12
13 import com.flexstor.common.data.ejb.Data;
14
15 /**
16 * AssetRelationData provides
17 *
18 * This object is
19 *
20 * @author Wei Tang
21 * @version 1.0, 05/11/99
22 *
23 * @see com.flexstor.
24 * @see com.flexstor.
25 *
26 * @since FLEXSTOR.db 3.0
27 *
28 * Revision History Description of Change
29 * ---------------- ---------------------------------------------------
30 * WT 05/11/99 Creation
31 */
32
33 public class AssetRelationData
34 extends Data
35 {
36
37 /**
38 The ID of the parent asset
39 */
40 protected int nParentId = 0;
41
42 /**
43 The ID of the child
44 */
45 protected int nChildId = 0;
46
47 public int getParentId()
48 {
49 return 0;
50 }
51
52 public int getChildId()
53 {
54 return 0;
55
56 }
57
58 public boolean setParentId(int nId)
59 {
60 return true;
61 }
62
63 public boolean setChildId(int nId)
64 {
65 return true;
66 }
67
68 }
69