adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / bean / impl / BotListActiveMediaFeeds.java
blobf31b199c729317ec49c5598befb85638a4a15175
1 /*
2 *** Notice Update: 8/14/2007
3 *** Copyright 2007 Berlin Brown
4 *** Copyright 2006-2007 Newspiritcompany.com
5 ***
6 *** This SOURCE FILE is licensed to NEWSPIRITCOMPANY.COM. Unless
7 *** otherwise stated, use or distribution of this program
8 *** for commercial purpose is prohibited.
9 ***
10 *** See LICENSE.BOTLIST for more information.
11 ***
12 *** The SOFTWARE PRODUCT and CODE are protected by copyright and
13 *** other intellectual property laws and treaties.
14 ***
15 *** Unless required by applicable law or agreed to in writing, software
16 *** distributed under the License is distributed on an "AS IS" BASIS,
17 *** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
18 *** implied.
21 package org.spirit.bean.impl;
23 import java.io.Serializable;
25 import org.spirit.bean.impl.base.BotListBeanBase;
27 /**
28 * This is class is used by botverse.
30 * @author Berlin Brown
34 public class BotListActiveMediaFeeds extends BotListBeanBase implements Serializable {
36 /**
39 private static final long serialVersionUID = 5206489903364824572L;
40 private String displayType;
41 private BotListMediaFeeds media;
43 public String getDisplayType() {
44 return displayType;
46 public void setDisplayType(String displayType) {
47 this.displayType = displayType;
49 public BotListMediaFeeds getMedia() {
50 return media;
52 public void setMedia(BotListMediaFeeds media) {
53 this.media = media;