Salome HOME
Copyrights update 2015.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / dto / ImportedStudyDTO.java
1 package org.splat.service.dto;
2
3 /**
4  * DTO for a study in the reindexing form.
5  *
6  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
7  */
8 public class ImportedStudyDTO {
9
10         /**
11          * DB primary key.
12          */
13         private long    _rid;
14     /**
15      * Study reference.
16      */
17     private String  _reference;
18     /**
19      * Study title.
20      */
21     private String  _title;
22
23         /**
24          * Get the rid.
25          * @return the rid
26          */
27         public long getIndex() {
28                 return _rid;
29         }
30
31         /**
32          * Get the rid.
33          * @return the rid
34          */
35         public long getRid() {
36                 return _rid;
37         }
38
39         /**
40          * Set the rid.
41          * @param rid the rid to set
42          */
43         public void setRid(final long rid) {
44                 this._rid = rid;
45         }
46
47         /**
48          * Get the sid.
49          * @return the sid
50          */
51         public String getReference() {
52                 return _reference;
53         }
54
55         /**
56          * Set the sid.
57          * @param sid the sid to set
58          */
59         public void setReference(final String sid) {
60                 this._reference = sid;
61         }
62
63         /**
64          * Get the title.
65          * @return the title
66          */
67         public String getTitle() {
68                 return _title;
69         }
70
71         /**
72          * Set the title.
73          * @param title the title to set
74          */
75         public void setTitle(final String title) {
76                 this._title = title;
77         }
78 }