]> git.mxchange.org Git - jcore.git/blob - src/org/mxchange/jcore/client/BaseClient.java
Getting rid of some things that don't work in EJB container ... :-(
[jcore.git] / src / org / mxchange / jcore / client / BaseClient.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.jcore.client;
18
19 import java.io.IOException;
20 import java.sql.SQLException;
21 import org.mxchange.jcore.BaseFrameworkSystem;
22
23 /**
24  * A general client
25  *
26  * @author Roland Haeder
27  */
28 public abstract class BaseClient extends BaseFrameworkSystem implements Client {
29
30         /**
31          * Application is not running by default
32          */
33         private boolean isRunning;
34
35         /**
36          * No instances can be created of this class
37          */
38         protected BaseClient () {
39         }
40
41         @Override
42         public void doShutdown () throws SQLException, IOException {
43                 // Trace message
44                 this.getLogger().trace("CALLED!"); //NOI18N
45
46                 // Disable client
47                 this.disableIsRunning();
48
49                 // Shuts down contact manager
50                 this.getManager().doShutdown();
51
52                 // Trace message
53                 this.getLogger().trace("EXIT!"); //NOI18N
54         }
55
56         @Override
57         public void enableIsRunning () {
58                 this.isRunning = true;
59         }
60
61         @Override
62         public boolean isRunning () {
63                 // In console client, 0 may have been used
64                 return this.isRunning;
65         }
66
67         /**
68          * Disables the client
69          */
70         protected void disableIsRunning () {
71                 this.isRunning = false;
72         }
73 }