1 /***
2 *
3 */
4 package org.telscenter.pas.steps.domain;
5
6 import java.net.URL;
7
8 import net.sf.sail.core.entity.Rim;
9
10 /***
11 * @author aperritano
12 *
13 */
14 public class BookmarkDAO {
15
16 private String name;
17 private String remarks;
18 private String url;
19 /***
20 *
21 */
22 public BookmarkDAO() {
23
24 }
25 /***
26 * @return the name
27 */
28 public String getName() {
29 return name;
30 }
31 /***
32 * @param name the name to set
33 */
34 public void setName(String name) {
35 this.name = name;
36 }
37 /***
38 * @return the remarks
39 */
40 public String getRemarks() {
41 return remarks;
42 }
43 /***
44 * @param remarks the remarks to set
45 */
46 public void setRemarks(String remarks) {
47 this.remarks = remarks;
48 }
49 /***
50 * @return the url
51 */
52 public String getUrl() {
53 return url;
54 }
55 /***
56 * @param url the url to set
57 */
58 public void setUrl(String url) {
59 this.url = url;
60 }
61
62
63
64 public String toString() {
65 return "Name: " + name + " URL: " + url.toString() +" Remarks: " + remarks;
66 }
67
68 }