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

com.ibm.ta.sdk.sample.assessment.CustomRule 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.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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy