File tree Expand file tree Collapse file tree
main/java/co/aurasphere/botmill/kik/model
test/java/co/aurasphere/botmill/kik/annotation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 112112 <artifactId >maven-compiler-plugin</artifactId >
113113 <version >3.6.0</version >
114114 <configuration >
115- <source >1.5</source >
115+ <source >1.6</source >
116+ <target >1.6</target >
116117 </configuration >
117118 </plugin >
118119 </plugins >
Original file line number Diff line number Diff line change 5959 *
6060 * @author Alvin P. Reyes
6161 */
62- public abstract class AbstractKikBot implements BotDefinition {
62+ public abstract class KikBot implements BotDefinition {
6363
6464 /** The Constant logger. */
65- private static final Logger logger = LoggerFactory .getLogger (AbstractKikBot .class );
65+ private static final Logger logger = LoggerFactory .getLogger (KikBot .class );
6666 private static final String KIK_BOTMILL_PROPERTIES_FILENAME = "botmill.properties" ;
6767 private static final String KIK_BOTMILL_USER_NAME_PROP = "kik.user.name" ;
6868 private static final String KIK_BOTMILL_API_KEY_PROP = "kik.api.key" ;
@@ -79,7 +79,7 @@ public abstract class AbstractKikBot implements BotDefinition {
7979 /**
8080 * Instantiates a new abstract domain.
8181 */
82- public AbstractKikBot () {
82+ public KikBot () {
8383 try {
8484 this .buildKikBotConfig ();
8585 this .buildAnnotatedInitDomain ();
Original file line number Diff line number Diff line change 3636import co .aurasphere .botmill .kik .incoming .event .annotation .KikBotMillController ;
3737import co .aurasphere .botmill .kik .incoming .event .annotation .KikBotMillInit ;
3838import co .aurasphere .botmill .kik .incoming .handler .IncomingToOutgoingMessageHandler ;
39- import co .aurasphere .botmill .kik .model .AbstractKikBot ;
39+ import co .aurasphere .botmill .kik .model .KikBot ;
4040import co .aurasphere .botmill .kik .model .KeyboardType ;
4141import co .aurasphere .botmill .kik .model .Message ;
4242import co .aurasphere .botmill .kik .model .MessageCallback ;
4949 * The Class AnnotatedDomain.
5050 */
5151@ Bot
52- public class AnnotatedDomain extends AbstractKikBot {
52+ public class AnnotatedDomain extends KikBot {
5353
5454 /**
5555 * Initialize.
You can’t perform that action at this time.
0 commit comments