View Javadoc
1   /*
2    * Copyright 2010 FatWire Corporation. All Rights Reserved.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *    http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package com.fatwire.gst.foundation.wra;
17  
18  import com.fatwire.assetapi.data.AssetId;
19  
20  /**
21   * Simple Alias bean
22   * 
23   * @author Larissa Kowaliw
24   * @since Jul 27, 2010
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  }