openapi-generator/conf/java/templates/VersionChecker.st
2011-08-01 23:21:53 -07:00

18 lines
359 B
Smalltalk

package $packageName$;
/**
* Maintains the compatible server version against which the drive is written
* @author ramesh
*
*/
public class VersionChecker {
private String compatibleVersion = "$apiVersion$";
/**
* Gets the version against which the driver code was written
*/
public String getCompatibleVersion() {
return compatibleVersion;
}
}