Custom SMS MMS Implementation

Revision as of 15:53, 24 January 2012 by Dennis Sieben (talk | contribs) (Prerequisites)

Prerequisites

The bundles open-xchange-messaging-sms and open-xchange-messaging-sms-gui should be installed

Implementation

The basic implementation must be done by a class implementing the interface com.openexchange.messaging.sms.service.MessagingNewService. This implementing class must be annouced to OSGi as a service implementation for this class. This can be done be the following:

context.registerService(MessagingNewService.class.getName(), new OwnImpl(), null);

In this example the new class OwnImpl must be written.