This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
CoPA (Change of Plan Application) is a notification system for schedule changes. It can be connected to different user authentication systems and databases of events. Event responsibles can easily notify their subscribers about changes via a webinterface and an Android app. Subscribers to events receive these notifications over the same channels and by email. This repository contains the server part of the system.
The system is implemented as a RESTful webservice using a Java servlet. The possible requests to this service are defined as subclasses of AbstractRequest
, to be found in the CopaBase repository. Requests are handled by the corresponding subclasses of RequestHandler in the requestHandler package. Access to the database is provided via a DatabaseService and LDAP user registration is handled by class Registration. Email and Google Cloud Messaging notification services are implemented as subclasses of NotificationService. The servlet, as the application's entry point, uses the CopaSystem class where all functionality comes together.
See the Java API documentation.