All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wordnik.swagger.codegen.CodegenOperation Maven / Gradle / Ivy

The newest version!
package com.wordnik.swagger.codegen;

import com.wordnik.swagger.models.*;

import java.util.*;

public class CodegenOperation {
  public Boolean hasConsumes, hasProduces, hasParams, returnTypeIsPrimitive,
    returnSimpleType, subresourceOperation, isMapContainer, isListContainer;
  public String path, operationId, returnType, httpMethod, returnBaseType,
    returnContainer, summary, notes, baseName, defaultResponse;

  public List> consumes, produces;
  public CodegenParameter bodyParam;
  public List allParams = new ArrayList();
  public List bodyParams = new ArrayList();
  public List pathParams = new ArrayList();
  public List queryParams = new ArrayList();
  public List headerParams = new ArrayList();
  public List formParams = new ArrayList();
  public List tags;
  public List responses = new ArrayList();
  public final List responseHeaders = new ArrayList();
  public Set imports = new HashSet();
  public List> examples;
  public ExternalDocs externalDocs;

  // legacy support
  public String nickname;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy