]> git.mxchange.org Git - addressbook-war.git/blob - src/java/org/mxchange/addressbook/beans/addressbook/AddressbookWebBean.java
f1b563e4f6a22abf47ba5b77d3867a63a9569df3
[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 java.util.List;
20 import javax.enterprise.context.SessionScoped;
21 import javax.faces.view.facelets.FaceletException;
22 import javax.inject.Inject;
23 import javax.inject.Named;
24 import javax.naming.Context;
25 import javax.naming.InitialContext;
26 import javax.naming.NamingException;
27 import org.mxchange.addressbook.beans.login.UserLoginWebController;
28 import org.mxchange.addressbook.model.addressbook.Addressbook;
29 import org.mxchange.addressbook.model.addressbook.AddressbookSessionBeanRemote;
30
31 /**
32  * A user bean (controller)
33  * <p>
34  * @author Roland Haeder<roland@mxchange.org>
35  */
36 @Named ("addressbookController")
37 @SessionScoped
38 public class AddressbookWebBean implements AddressbookWebController {
39
40         /**
41          * Serial number
42          */
43         private static final long serialVersionUID = 185_781_756_712_969L;
44
45         /////////////////////// Properties /////////////////////
46         /**
47          * A list of all user's addressbooks
48          */
49         private List<Addressbook> addressbookList;
50
51         /**
52          * Remote addressbook bean
53          */
54         private final AddressbookSessionBeanRemote addressbookBean;
55
56         /**
57          * Login controller
58          */
59         @Inject
60         private UserLoginWebController loginController;
61
62         /**
63          * Default constructor
64          */
65         public AddressbookWebBean () {
66                 // Try it
67                 try {
68                         // Get initial context
69                         Context context = new InitialContext();
70
71                         // Try to lookup
72                         this.addressbookBean = (AddressbookSessionBeanRemote) context.lookup("ejb/stateless-addressbook"); //NOI18N
73                 } catch (final NamingException e) {
74                         // Throw again
75                         throw new FaceletException(e);
76                 }
77         }
78
79         @Override
80         public boolean hasCreatedAddressbooks () {
81                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
82         }
83 }