com.ibm.ta.sdk.sample.assessment.CustomRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ta-sdk-sample Show documentation
Show all versions of ta-sdk-sample 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.sample.assessment;
import com.ibm.ta.sdk.core.assessment.IssueRule;
import java.util.List;
public class CustomRule extends IssueRule {
@Override
public List getSolutionText() {
List solution = super.getSolutionText();
solution.add(0, "Try sleeping first, then:");
return solution;
}
}