BotBean.java
498 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package fi.codecrew.moya.beans;
import javax.ejb.LocalBean;
import javax.ejb.Singleton;
import fi.iudex.utils.irc.IrcBot;
/**
* Session Bean implementation class BotBean
*/
@Singleton
@LocalBean
public class BotBean implements BotBeanLocal {
private IrcBot bot;
/**
* Default constructor.
*/
public BotBean() {
}
@Override
public void add(IrcBot bot) {
this.setBot(bot);
}
public IrcBot getBot() {
return bot;
}
public void setBot(IrcBot bot) {
this.bot = bot;
}
}