com.worklight.adapters.rest.api.WLServerAPIProvider 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;
/**
* This class is used for exposing the MobileFirst server API to the user
* use WLServerAPIProvider.getWLServerAPI() to get an instance of the {@link WLServerAPI} class.
*
* @deprecated This class 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 class WLServerAPIProvider {
private static WLServerAPI api;
/**
* Returns an instance to {@link WLServerAPI}
* @return
*/
public static WLServerAPI getWLServerAPI(){
return api;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy