Oracle Corporation

com.bea.wlcp.wlng.api.plugin
Class ServiceType

java.lang.Object
  extended bycom.bea.wlcp.wlng.api.plugin.ServiceType

public abstract class ServiceType
extends Object

Abstract defining the service type that each plugin must use when registering in the plugin manager.

Copyright © 2008 Oracle Corporation Systems, Inc. All Rights Reserved.

Constructor Summary
ServiceType(String type)
           
 
Method Summary
 String[] getInterfaces()
          Gets all the interfaces exposed by this service type.
 String getServiceType()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServiceType

public ServiceType(String type)
Method Detail

getInterfaces

public String[] getInterfaces()
Gets all the interfaces exposed by this service type. The interfaces must include all MO or MT interfaces (e.g. north and callback). For example, SmsServiceType will return: com.bea.wlcp.wlng.px21.plugin.SendSmsPlugin com.bea.wlcp.wlng.px21.plugin.ReceiveSmsPlugin com.bea.wlcp.wlng.px21.plugin.SmsNotificationManagerPlugin com.bea.wlcp.wlng.px21.callback.SmsNotificationCallback

Returns:
The interfaces exposed by this service type

getServiceType

public String getServiceType()

Oracle Corporation