com.ibm.mfp.adapter.api.AnalyticsAPI 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.ibm.mfp.adapter.api;
/**
* API for reporting information to analytics.
* This API is accessible using the Jax-RS {@literal@}Context annotation, for example by defining a member varaible:
*
{@literal@}Context
private AnalyticsAPI analyticsApi;
}
*
*/
public interface AnalyticsAPI {
/**
* Report user activity. This method is used to report user activity for
* auditing or reporting purposes. The IBM® MobileFirst® server maintains a
* separate database table to store application statistics.
* The data from logActivity is sent to the Operational Analytics
* feature.
*
* @param activityType
* - A string that identifies the activity.
*
*
*/
void logActivity(String activityType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy