Custom SMS MMS Implementation
From Open-Xchange
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.