All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.ta.sdk.spi.recommendation.Recommendation Maven / Gradle / Ivy

Go to download

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