1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package com.fatwire.gst.foundation.wra;
17
18 import com.fatwire.assetapi.data.AssetId;
19
20
21
22
23
24
25
26 public class AliasBeanImpl extends WraBeanImpl implements Alias {
27
28 private AssetId target;
29 private String targetUrl;
30 private String popup;
31 private AssetId linkImage;
32
33 public AssetId getLinkImage() {
34 return linkImage;
35 }
36
37 public String getPopup() {
38 return popup;
39 }
40
41 public AssetId getTarget() {
42 return target;
43 }
44
45 public String getTargetUrl() {
46 return targetUrl;
47 }
48
49 public void setTarget(AssetId target) {
50 this.target = target;
51 }
52
53 public void setTargetUrl(String targetUrl) {
54 this.targetUrl = targetUrl;
55 }
56
57 public void setPopup(String popup) {
58 this.popup = popup;
59 }
60
61 public void setLinkImage(AssetId linkImage) {
62 this.linkImage = linkImage;
63 }
64 }