com.accenture.testing.bdd.parameters.ParamTransform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-for-all Show documentation
Show all versions of bdd-for-all Show documentation
A simple to use, easy to integrate, BDD library for API and microservices development.
The newest version!
package com.accenture.testing.bdd.parameters;
public abstract class ParamTransform {
@Override
public String toString() {
return key();
}
/**
* they key for this transformation.
*
* @return the key for the transformation
*/
abstract String key();
/**
* transform the input based on the transformer type.
*
* @param params the parameters for the transform
* @param pt the calling transformer
* @return the transformed string
*/
abstract String transform(String params, ParamTransformer pt);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy