wing328 7edf744426 [Apex] add petstore samples, shell scripts, batch files (#5672)
* add apex petstore samples, shell scripts, batch files

* add wording "beta" to Apex help
2017-05-20 01:02:08 +08:00

8 lines
287 B
OpenEdge ABL

public class SwagClient extends Swagger.ApiClient {
public SwagClient() {
basePath = 'http://petstore.swagger.io/v2';
authentications.put('api_key', new Swagger.ApiKeyHeaderAuth('api_key'));
authentications.put('petstore_auth', new Swagger.OAuth2());
}
}