com.worklight.adapters.rest.api.WLServerAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adapter-maven-api Show documentation
Show all versions of adapter-maven-api Show documentation
IBM MFP Adapter api for adapter as a maven project. BuildNumber is : 8.0.2024082809
The newest version!
/*
* © Copyright IBM Corp. 2016
* All Rights Reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
*/
package com.worklight.adapters.rest.api;
/**
* The server API of Java adapters by category.
*
* @deprecated This interface is deprecated since V8.0, and is only available for backwards compatibility. Use the Jax-RS {@link javax.ws.rs.core.Context}
* annotation to inject the API interfaces directly.
*
*
*/
@Deprecated
public interface WLServerAPI {
/**
* Get Adapters API This API will help you to call other Adapters
*
* @return
*/
public AdaptersAPI getAdaptersAPI();
/**
* Get Configuration API This API will allow you to read Worklight
* configuration properties and JNDI properties in general
*
* @return
*/
public ConfigurationAPI getConfigurationAPI();
/**
* Get the Analytics API that will allow you to report activities to analytics.
* @return
*/
public AnalyticsAPI getAnalyticsAPI();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy