]> git.mxchange.org Git - addressbook-war.git/blob - src/java/org/mxchange/addressbook/beans/addressbook/AddressbookWebBean.java
Initial creation of first addressbook bean (controller) added JSF tag for handling...
[addressbook-war.git] / src / java / org / mxchange / addressbook / beans / addressbook / AddressbookWebBean.java
1 /*
2  * Copyright (C) 2015 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.addressbook.beans.addressbook;
18
19 import javax.ejb.EJB;
20 import javax.enterprise.context.SessionScoped;
21 import javax.faces.view.facelets.FaceletException;
22 import javax.inject.Named;
23 import javax.naming.Context;
24 import javax.naming.InitialContext;
25 import javax.naming.NamingException;
26 import org.mxchange.addressbook.beans.login.UserLoginWebController;
27 import org.mxchange.addressbook.model.addressbooks.AddressbookSessionBeanRemote;
28
29 /**
30  * A user bean (controller)
31  * <p>
32  * @author Roland Haeder<roland@mxchange.org>
33  */
34 @Named ("addressbookController")
35 @SessionScoped
36 public class AddressbookWebBean implements AddressbookWebController {
37
38         /**
39          * Serial number
40          */
41         private static final long serialVersionUID = 185_781_756_712_969L;
42
43         /////////////////////// Properties /////////////////////
44
45         /**
46          * Remote addressbook bean
47          */
48         private final AddressbookSessionBeanRemote addressbookBean;
49
50         /**
51          * Login controller
52          */
53         @EJB
54         private UserLoginWebController loginController;
55
56         /**
57          * Default constructor
58          */
59         public AddressbookWebBean () {
60                 // Try it
61                 try {
62                         // Get initial context
63                         Context context = new InitialContext();
64
65                         // Try to lookup
66                         this.addressbookBean = (AddressbookSessionBeanRemote) context.lookup("ejb/stateless-addressbook"); //NOI18N
67                 } catch (final NamingException e) {
68                         // Throw again
69                         throw new FaceletException(e);
70                 }
71         }
72 }