com.thoughtworks.webstub.utils.Mapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-stub Show documentation
Show all versions of web-stub Show documentation
Library for stubbing external HTTP dependencies
The newest version!
package com.thoughtworks.webstub.utils;
public abstract class Mapper implements org.apache.commons.collections.Transformer {
public abstract T map(S source);
@Override
public final Object transform(Object o) {
return map((S) o);
}
}