![JAR search and dependency download from the Maven repository](/logo.png)
com.ibm.ta.sdk.spi.recommendation.Recommendation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ta-sdk-spi Show documentation
Show all versions of ta-sdk-spi Show documentation
a tool to help a developer to create and build a middleware data collection plug-in, \
which can be used to gather the information of an application deployed on a middleware server,\
and provide modernization help and recommendations
The newest version!
/*
* (C) Copyright IBM Corp. 2019,2020
*
* SPDX-License-Identifier: Apache-2.0
*/
package com.ibm.ta.sdk.spi.recommendation;
import com.ibm.ta.sdk.spi.plugin.TAException;
import com.ibm.ta.sdk.spi.collect.AssessmentUnit;
import java.util.List;
public interface Recommendation {
String getCollectionUnitName();
List getComplexityContributions();
List getIssueCategories();
List getTargets();
List getIssues(Target target, AssessmentUnit assessmentUnit) throws TAException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy