com.payneteasy.superfly.client.StringTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-client Show documentation
Show all versions of superfly-client Show documentation
Contains classes used to use Superfly facilities by clients
package com.payneteasy.superfly.client;
/**
* Transforms a string.
*
* @author Roman Puchkovskiy
*/
public interface StringTransformer {
/**
* Does transformation.
*
* @param s string to transform
* @return transformed string
*/
String transform(String s);
}