Package | Description |
---|---|
io.swagger.converter | |
io.swagger.core.filter | |
io.swagger.jackson | |
io.swagger.models | |
io.swagger.models.parameters | |
io.swagger.models.properties | |
io.swagger.util | |
io.swagger.validator |
Modifier and Type | Method and Description |
---|---|
Property |
ModelConverters.readAsProperty(Type type) |
Property |
ModelConverterContext.resolveProperty(Type type,
Annotation[] annotations) |
Property |
ModelConverterContextImpl.resolveProperty(Type type,
Annotation[] annotations) |
Property |
ModelConverter.resolveProperty(Type type,
ModelConverterContext context,
Annotation[] annotations,
Iterator<ModelConverter> chain) |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractSpecFilter.isPropertyAllowed(Model model,
Property property,
String propertyName,
Map<String,List<String>> params,
Map<String,String> cookies,
Map<String,List<String>> headers) |
boolean |
SwaggerSpecFilter.isPropertyAllowed(Model model,
Property property,
String propertyName,
Map<String,List<String>> params,
Map<String,String> cookies,
Map<String,List<String>> headers) |
Modifier and Type | Method and Description |
---|---|
Property |
ModelResolver.resolveProperty(com.fasterxml.jackson.databind.JavaType propType,
ModelConverterContext context,
Annotation[] annotations,
Iterator<ModelConverter> next) |
Property |
AbstractModelConverter.resolveProperty(Type type,
ModelConverterContext context,
Annotation[] annotations,
Iterator<ModelConverter> chain) |
Property |
ModelResolver.resolveProperty(Type type,
ModelConverterContext context,
Annotation[] annotations,
Iterator<ModelConverter> next) |
Modifier and Type | Method and Description |
---|---|
protected static Comparator<Property> |
AbstractModelConverter.getPropertyComparator() |
Modifier and Type | Method and Description |
---|---|
protected void |
ModelResolver._addEnumProps(Class<?> propClass,
Property property) |
protected void |
ModelResolver.applyBeanValidatorAnnotations(Property property,
Annotation[] annotations) |
Modifier and Type | Method and Description |
---|---|
Property |
ModelImpl.getAdditionalProperties() |
Property |
ArrayModel.getItems() |
Property |
Response.getSchema() |
Modifier and Type | Method and Description |
---|---|
Map<String,Property> |
Response.getHeaders() |
Map<String,Property> |
ArrayModel.getProperties() |
Map<String,Property> |
ComposedModel.getProperties() |
Map<String,Property> |
Model.getProperties() |
Map<String,Property> |
RefModel.getProperties() |
Map<String,Property> |
ModelImpl.getProperties() |
Modifier and Type | Method and Description |
---|---|
void |
Response.addHeader(String key,
Property property) |
ModelImpl |
ModelImpl.additionalProperties(Property additionalProperties) |
void |
ModelImpl.addProperty(String key,
Property property) |
Response |
Response.header(String name,
Property property) |
ArrayModel |
ArrayModel.items(Property items) |
ModelImpl |
ModelImpl.property(String key,
Property property) |
Response |
Response.schema(Property property) |
void |
ModelImpl.setAdditionalProperties(Property additionalProperties) |
void |
ArrayModel.setItems(Property items) |
void |
Response.setSchema(Property schema) |
Modifier and Type | Method and Description |
---|---|
Response |
Response.headers(Map<String,Property> headers) |
void |
Response.setHeaders(Map<String,Property> headers) |
void |
ArrayModel.setProperties(Map<String,Property> properties) |
void |
ComposedModel.setProperties(Map<String,Property> properties) |
void |
Model.setProperties(Map<String,Property> properties) |
void |
RefModel.setProperties(Map<String,Property> properties) |
void |
ModelImpl.setProperties(Map<String,Property> properties) |
Modifier and Type | Field and Description |
---|---|
protected Property |
AbstractSerializableParameter.items |
Modifier and Type | Method and Description |
---|---|
Property |
AbstractSerializableParameter.getItems() |
Property |
SerializableParameter.getItems() |
Modifier and Type | Method and Description |
---|---|
T |
AbstractSerializableParameter.items(Property items) |
T |
AbstractSerializableParameter.property(Property property) |
void |
AbstractSerializableParameter.setItems(Property items) |
void |
SerializableParameter.setItems(Property items) |
void |
AbstractSerializableParameter.setProperty(Property property) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractNumericProperty |
class |
AbstractProperty |
class |
ArrayProperty |
class |
BaseIntegerProperty
The
BaseIntegerProperty class defines property for integers without specific format, or with a custom
format. |
class |
BinaryProperty |
class |
BooleanProperty |
class |
ByteArrayProperty |
class |
DateProperty |
class |
DateTimeProperty |
class |
DecimalProperty
The DecimalProperty class defines properties for (decimal) numbers without a specific format, or with a custom
format.
|
class |
DoubleProperty |
class |
EmailProperty |
class |
FileProperty |
class |
FloatProperty |
class |
IntegerProperty |
class |
LongProperty |
class |
MapProperty |
class |
ObjectProperty |
class |
PasswordProperty |
class |
RefProperty |
class |
StringProperty
The StringProperty class defines properties for strings without a specific format, for standard formats which don't
need specific handling, or for custom formats.
|
class |
UUIDProperty |
Modifier and Type | Field and Description |
---|---|
protected Property |
ArrayProperty.items |
Modifier and Type | Method and Description |
---|---|
static Property |
PropertyBuilder.build(String type,
String format,
Map<PropertyBuilder.PropertyId,Object> args)
Creates new property on the passed arguments.
|
Property |
Property.description(String description) |
Property |
AbstractProperty.description(String description) |
Property |
MapProperty.getAdditionalProperties() |
Property |
ArrayProperty.getItems() |
static Property |
PropertyBuilder.merge(Property property,
Map<PropertyBuilder.PropertyId,Object> args)
Merges passed arguments into an existing property instance.
|
Property |
AbstractProperty.readOnly() |
Property |
Property.title(String title) |
Property |
AbstractProperty.title(String title) |
Modifier and Type | Method and Description |
---|---|
Map<String,Property> |
ObjectProperty.getProperties() |
Modifier and Type | Method and Description |
---|---|
MapProperty |
MapProperty.additionalProperties(Property property) |
ArrayProperty |
ArrayProperty.items(Property items) |
static Property |
PropertyBuilder.merge(Property property,
Map<PropertyBuilder.PropertyId,Object> args)
Merges passed arguments into an existing property instance.
|
ObjectProperty |
ObjectProperty.property(String name,
Property property) |
void |
MapProperty.setAdditionalProperties(Property property) |
void |
ArrayProperty.setItems(Property items) |
static Model |
PropertyBuilder.toModel(Property property)
Converts passed property into a model.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty |
ObjectProperty.properties(Map<String,Property> properties) |
void |
ObjectProperty.setProperties(Map<String,Property> properties) |
Constructor and Description |
---|
ArrayProperty(Property items) |
MapProperty(Property property) |
Constructor and Description |
---|
ObjectProperty(Map<String,Property> properties) |
Modifier and Type | Method and Description |
---|---|
abstract Property |
PrimitiveType.createProperty() |
static Property |
PrimitiveType.createProperty(String name) |
static Property |
PrimitiveType.createProperty(Type type) |
Property |
PropertyDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser jp,
com.fasterxml.jackson.databind.DeserializationContext ctxt) |
Modifier and Type | Method and Description |
---|---|
Property |
BeanValidator.resolveProperty(Type type,
ModelConverterContext context,
Annotation[] annotations,
Iterator<ModelConverter> chain) |
Copyright © 2017. All rights reserved.