Deven Phillips

Results 50 issues of Deven Phillips

For the following example snippet of OpenAPI spec: ``` post: security: - ApiKeyAuth: [] - BearerAuth: [] description: Upload a new photo and get back the unique identifier operationId: addPhoto...

When using externally specified schemas (e.g. From Schema.org), the $ref should be able to be an external URI which slush-vertx should automatically incorporate. Example snippet: ``` responses: '202': description: User...

Add an option for generating implementation for RedPipe using Resteasy and a Swagger/OpenAPI specification.

enhancement

I generated a new project as a ServiceProxy implementation and in the `MainVerticle` class, the `ArrayList` class was not imported as needed: ``` private void startServices() { this.serviceBinder = new...

bug

Example OpenAPI YAML: ``` components: schemas: EventBase: type: object discriminator: propertyName: eventType properties: eventType: type: string name: type: string id: format: int32 type: integer FlightEvent: allOf: - $ref: '#/components/schemas/EventBase' -...

When creating a Vert.x project using Maven or Gradle, the project should implement the corresponding plugins `fabric8io/vertx-maven-plugin` or `jponge/vertx-gradle-plugin`.

For example, one of the OpenAPI endpoints is: ``` /photo: post: security: - ApiKeyAuth: [] - BearerAuth: [] description: Upload a new photo and get back the unique identifier operationId:...

I generated a new ServiceProxy OpenAPI application and it attempts to import `.handlers.*` and that package does not exist. ``` import com.zanclus.photo.archive.services.*; import com.zanclus.photo.archive.handlers.*; import com.zanclus.photo.archive.models.*; import com.zanclus.photo.archive.security.*; ```

#### Describe the feature it occurs to me that the way in which RouterBuilder.mountServicesFromExtensions() functions may not be "optimal". Right now, each operation can have a different eventbus address, but...

enhancement

#### Describe the feature Modify the Web API Service code generators to support responses with custom exceptions. Right now, in an implementation of the service interface, if I call the...

enhancement