]> git.mxchange.org Git - pizzaservice-swing.git/blob - src/org/mxchange/pizzaapplication/BasePizzaServiceSystem.java
Added email address for author
[pizzaservice-swing.git] / src / org / mxchange / pizzaapplication / BasePizzaServiceSystem.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication;
18
19 import javax.naming.Context;
20 import javax.naming.InitialContext;
21 import javax.naming.NamingException;
22 import org.mxchange.jcore.BaseFrameworkSystem;
23 import org.mxchange.jcoreeelogger.beans.local.logger.Log;
24 import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
25
26 /**
27  * A general Pizza-Service class
28  * <p>
29  * @author Roland Haeder<roland@mxchange.org>
30  */
31 public abstract class BasePizzaServiceSystem extends BaseFrameworkSystem {
32
33         /**
34          * Logger instance
35          */
36         @Log
37         private LoggerBeanLocal loggerBeanLocal;
38
39         /**
40          * Protected constructor
41          */
42         protected BasePizzaServiceSystem () {
43                 // Try it
44                 try {
45                         // Get initial context
46                         Context context = new InitialContext();
47
48                         // Lookup logger
49                         this.loggerBeanLocal = (LoggerBeanLocal) context.lookup("java:global/jcore-logger-ejb/logger!org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal"); //NOI18N
50                 } catch (final NamingException ex) {
51                         // Throw again
52                         throw new RuntimeException("context.lookup() failed.", ex); //NOI18N
53                 }
54         }
55
56         /**
57          * Getter for logger instance
58          * <p>
59          * @return Logger instance
60          */
61         protected LoggerBeanLocal getLogger () {
62                 return this.loggerBeanLocal;
63         }
64 }