mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 10:58:55 +00:00
18 lines
359 B
Smalltalk
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;
|
|
}
|
|
} |