Skip navigation links
A B C D E F G H I L M O P R S T U V 

A

AbstractArgumentsMapperCreator - Class in org.apache.servicecomb.swagger.invocation.arguments
1.common context type parameter is not swagger parameter: InvocationContext HttpServletRequest 2.same version 1) direct map (most scenes) interface method: class AddParam { int x; int y; } int add(InvocationContext context, AddParam param) swagger parameters: param interface method: int add(int x, int y) swagger parameters: x, y 2) swagger only one POJO paramter, extract all field to method parameters (POJO dev mode) interface method: int add(int x, int y) swagger parameters: param 3) wrap some simple continuously swagger parameters to POJO (springmvc query parameters) interface method: int add(String name, AddParam param, Body body) swagger parameters: name, x, y, body 4) wrap some simple and complex continuously swagger parameters to POJO (JaxRS BeanParam) interface method: class BeanWrapper { int x; int y; Body body; } int add(String name, AddParam param, Body body) swagger parameters: name, x, y, body 2.
AbstractArgumentsMapperCreator(SerializationConfig, Map<Class<?>, ContextArgumentMapperFactory>, Class<?>, Method, SwaggerOperation) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
AbstractProducerContextArgMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
AbstractProducerContextArgMapper(String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.AbstractProducerContextArgMapper
 
addContext(String, String) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
addContext(InvocationContext) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
addContext(Map<String, String>) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
addField(String, Getter<Object, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerBeanParamMapper
 
addField(String, Setter<Object, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerBeanParamMapper
 
addHeader(String, Object) - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
addHeader(String, List<Object>) - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
addLocalContext(String, Object) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
addLocalContext(Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
addOperation(SwaggerConsumerOperation) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
addOperation(SwaggerProducerOperation) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
addProperty(String, Type) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.codec.ArgWrapperJavaType
 
ArgumentMapper - Interface in org.apache.servicecomb.swagger.invocation.arguments
 
ArgumentsMapper - Interface in org.apache.servicecomb.swagger.invocation.arguments
 
ArgumentsMapperCommon - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
map consumer arguments to swagger arguments
ArgumentsMapperCommon(List<ArgumentMapper>) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ArgumentsMapperCommon
 
ArgumentsMapperDirectReuse - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ArgumentsMapperDirectReuse() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ArgumentsMapperDirectReuse
 
ArgWrapperJavaType - Class in org.apache.servicecomb.swagger.invocation.arguments.producer.codec
 
ArgWrapperJavaType() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.codec.ArgWrapperJavaType
 
AsyncResponse - Interface in org.apache.servicecomb.swagger.invocation
 

B

beforeMethodInvoke(SwaggerInvocation, SwaggerProducerOperation, Object[]) - Method in interface org.apache.servicecomb.swagger.invocation.extension.ProducerInvokeExtension
 
bodyParameter - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
build() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
BytesToPartConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
BytesToPartConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.BytesToPartConverter
 

C

cloneTo(ResponsesMeta) - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
CommonExceptionData - Class in org.apache.servicecomb.swagger.invocation.exception
将普通异常转换为InvocationException时,保存message信息
CommonExceptionData() - Constructor for class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
CommonExceptionData(String) - Constructor for class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
CommonExceptionData(String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
CompletableFutureConsumerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
CompletableFutureConsumerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.CompletableFutureConsumerResponseMapperFactory
 
CompletableFutureProducerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
CompletableFutureProducerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.CompletableFutureProducerResponseMapperFactory
 
complete(Response) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
CONSUMER_INNER_REASON_PHRASE - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
CONSUMER_INNER_STATUS - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
CONSUMER_INNER_STATUS_CODE - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
ConsumerArgumentMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ConsumerArgumentMapper() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentMapper
 
ConsumerArgumentSame - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ConsumerArgumentSame(String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentSame
 
ConsumerArgumentsMapperCreator - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ConsumerArgumentsMapperCreator(SerializationConfig, Map<Class<?>, ContextArgumentMapperFactory>, Class<?>, Method, SwaggerOperation) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
ConsumerArgumentToBodyField - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
Typical scene of transparent RPC all parameters of consumer method wrapped to a bean in contract
ConsumerArgumentToBodyField(String, String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentToBodyField
 
ConsumerBeanParamMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
consumer: void add(QueryWrapper query) class QueryWrapper { int x; int y; } contract; void add(int x, int y)
ConsumerBeanParamMapper(String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerBeanParamMapper
 
ConsumerContextArgumentMapperFactory - Interface in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
consumerFail(Throwable) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
consumerFailResp(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
ConsumerInvocationContextMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ConsumerInvocationContextMapper(String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapper
 
ConsumerInvocationContextMapperFactory - Class in org.apache.servicecomb.swagger.invocation.arguments.consumer
 
ConsumerInvocationContextMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapperFactory
 
ConsumerResponseMapper - Interface in org.apache.servicecomb.swagger.invocation.response.consumer
 
ConsumerResponseMapperFactory - Interface in org.apache.servicecomb.swagger.invocation.response.consumer
 
context - Variable in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
ContextArgumentMapperFactory - Interface in org.apache.servicecomb.swagger.invocation.arguments
 
contextFactorys - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
ContextUtils - Class in org.apache.servicecomb.swagger.invocation.context
传递调用过程的上下文数据
convert(Object) - Method in interface org.apache.servicecomb.swagger.invocation.converter.Converter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.BytesToPartConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.FileToPartConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.InputStreamToPartConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartArrayConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartListConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartToPartConverter
 
convert(Object) - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.ResourceToPartConverter
 
convert(SwaggerInvocation, Throwable) - Method in class org.apache.servicecomb.swagger.invocation.exception.DefaultExceptionToProducerResponseConverter
 
convert(SwaggerInvocation, T) - Method in interface org.apache.servicecomb.swagger.invocation.exception.ExceptionToProducerResponseConverter
 
convert(SwaggerInvocation, InvocationException) - Method in class org.apache.servicecomb.swagger.invocation.exception.InvocationExceptionToProducerResponseConverter
 
convertConsumerException(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
convertConsumerException(Throwable, String) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
Converter - Interface in org.apache.servicecomb.swagger.invocation.converter
 
convertException(int, String, Throwable, String) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
convertExceptionToResponse(SwaggerInvocation, Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
convertExceptionToResponse(SwaggerInvocation, Throwable) - Method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionToProducerResponseConverters
 
convertProducerException(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
convertProducerException(Throwable, String) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
create(String, String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapperFactory
 
create(String, String) - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ContextArgumentMapperFactory
 
create(String, String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerInvocationContextMapperFactory
 
create(Response.StatusType, Object) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
create(int, String, Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
create(Response.StatusType, Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createArgumentsMapper() - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
createArgumentsMapper() - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
createConsumer(Class<?>, Swagger) - Method in class org.apache.servicecomb.swagger.engine.SwaggerEnvironment
 
createConsumerException(Object) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
createConsumerFail(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createContextArg(SwaggerInvocation) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.AbstractProducerContextArgMapper
 
createContextArg(SwaggerInvocation) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerInvocationContextMapper
 
createFail(InvocationException) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createFail(InvocationType, String) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createFail(InvocationType, Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createKnownParameterMapper(int, Integer) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
createKnownParameterMapper(int, Integer) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
createKnownParameterMapper(int, Integer) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
createProducer(Object, Swagger) - Method in class org.apache.servicecomb.swagger.engine.SwaggerEnvironment
 
createProducer(Object, Class<?>, Swagger) - Method in class org.apache.servicecomb.swagger.engine.SwaggerEnvironment
 
createProducerException(Object) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
createProducerFail(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createResponseMapper(ResponseMapperFactorys<ConsumerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.CompletableFutureConsumerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ConsumerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.CseResponseConsumerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ConsumerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ConsumerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.OptionalConsumerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ProducerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.CompletableFutureProducerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ProducerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.CseResponseProducerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ProducerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<ProducerResponseMapper>, Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.OptionalProducerResponseMapperFactory
 
createResponseMapper(ResponseMapperFactorys<MAPPER>, Type) - Method in interface org.apache.servicecomb.swagger.invocation.response.ResponseMapperFactory
 
createResponseMapper(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.ResponseMapperFactorys
 
createSuccess(Response.StatusType, Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createSuccess(Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
createSwaggerBodyFieldMapper(int, String, int) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
createSwaggerBodyFieldMapper(int, String, int) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
createSwaggerBodyFieldMapper(int, String, int) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
CseResponseConsumerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
CseResponseConsumerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.CseResponseConsumerResponseMapperFactory
 
CseResponseProducerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
CseResponseProducerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.CseResponseProducerResponseMapperFactory
 

D

DefaultConsumerResponseMapper - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
DefaultConsumerResponseMapper() - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapper
 
DefaultConsumerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
DefaultConsumerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapperFactory
 
DefaultExceptionToProducerResponseConverter - Class in org.apache.servicecomb.swagger.invocation.exception
 
DefaultExceptionToProducerResponseConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.exception.DefaultExceptionToProducerResponseConverter
 
DefaultProducerResponseMapper - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
DefaultProducerResponseMapper() - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapper
 
DefaultProducerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
DefaultProducerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapperFactory
 
doCreate(Response.StatusType, Object) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
doCreate(int, String, CommonExceptionData, Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
doCreateArgumentsMapper() - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 

E

entity(Object) - Method in class org.apache.servicecomb.swagger.invocation.Response
 
ExceptionFactory - Class in org.apache.servicecomb.swagger.invocation.exception
 
ExceptionToProducerResponseConverter<T extends Throwable> - Interface in org.apache.servicecomb.swagger.invocation.exception
ExceptionToProducerResponseConverter are used to convert provider Exceptions to user friendly messages.
ExceptionToProducerResponseConverters - Class in org.apache.servicecomb.swagger.invocation.exception
 
ExceptionToProducerResponseConverters() - Constructor for class org.apache.servicecomb.swagger.invocation.exception.ExceptionToProducerResponseConverters
Load the ExceptionToProducerResponseConverter implementations.
extractResponseType(SwaggerGenerator, OperationGenerator, Type) - Method in class org.apache.servicecomb.swagger.invocation.generator.ScbResponseProcessor
 

F

fail(InvocationType, Throwable) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
failResp(InvocationException) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
failResp(InvocationType, Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
FileToPartConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
FileToPartConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.FileToPartConverter
 
findOperation(String) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
findOperation(Method) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
findOperation(String) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
findOperationId(Method) - Method in class org.apache.servicecomb.swagger.engine.SwaggerEnvironment
 
findResponseType(int) - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
findSwaggerParameterIndex(String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 

G

getAllOperations() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
getAndRemoveInvocationContext() - Static method in class org.apache.servicecomb.swagger.invocation.context.ContextUtils
 
getArgumentsMapper() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getArgumentsMapper() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getCode() - Method in class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
getConsumerClass() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getConsumerIntf() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
getConsumerMethod() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getContext() - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getContext(String) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getContext() - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContextCompletableFuture
 
getContextClass() - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapperFactory
 
getContextClass() - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ContextArgumentMapperFactory
 
getContextClass() - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerInvocationContextMapperFactory
 
getContextType() - Method in class org.apache.servicecomb.swagger.invocation.generator.InvocationContextProcessor
 
getError() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getErrorData() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getExceptionClass() - Method in class org.apache.servicecomb.swagger.invocation.exception.DefaultExceptionToProducerResponseConverter
 
getExceptionClass() - Method in interface org.apache.servicecomb.swagger.invocation.exception.ExceptionToProducerResponseConverter
 
getExceptionClass() - Method in class org.apache.servicecomb.swagger.invocation.exception.InvocationExceptionToProducerResponseConverter
 
getFirst(String) - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
getFromCompletableFuture(CompletableFuture<?>) - Static method in class org.apache.servicecomb.swagger.invocation.context.ContextUtils
 
getHeader(String) - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
getHeaderMap() - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
getHeaders() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
getInvocationContext() - Static method in class org.apache.servicecomb.swagger.invocation.context.ContextUtils
 
getInvocationQualifiedName() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
getInvocationType() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
getLocalContext() - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getLocalContext(String) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getMapper() - Method in interface org.apache.servicecomb.swagger.invocation.response.ResponseMetaMapper
 
getMessage() - Method in class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
getMessage() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getOperationId() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getOperations() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
getOrder() - Method in interface org.apache.servicecomb.swagger.invocation.exception.ExceptionToProducerResponseConverter
 
getOrder() - Method in interface org.apache.servicecomb.swagger.invocation.extension.ProducerInvokeExtension
 
getOrder() - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapperFactory
 
getOrder() - Method in class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapperFactory
 
getOrder() - Method in interface org.apache.servicecomb.swagger.invocation.response.ResponseMapperFactory
 
getOrder() - Method in interface org.apache.servicecomb.swagger.invocation.response.ResponseMetaMapper
 
getParentContext() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
getProcessType() - Method in class org.apache.servicecomb.swagger.invocation.generator.ScbResponseProcessor
 
getProducerClass() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getProducerCls() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
getProducerInstance() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
getProducerInstance() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getProducerInvokeExtenstionList() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getProducerMethod() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getReasonPhrase() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getReasonPhrase() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
getResponseMap() - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
getResponseMapper() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getResponseMapper() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getResult() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
getSchemaOperationId() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getSrcType() - Method in interface org.apache.servicecomb.swagger.invocation.converter.Converter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.BytesToPartConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.FileToPartConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.InputStreamToPartConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartArrayConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartListConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartToPartConverter
 
getSrcType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.ResourceToPartConverter
 
getStatus() - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getStatus() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getStatus() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
getStatusCode() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
getStatusCode() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
getSwagger() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
getSwaggerOperation() - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
getSwaggerOperation() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getSwaggerParameterType(String) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getSwaggerParameterTypes() - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
getSwaggerParameterTypes() - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
getTargetType() - Method in interface org.apache.servicecomb.swagger.invocation.converter.Converter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.BytesToPartConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.FileToPartConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.InputStreamToPartConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartArrayConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartListConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartToPartConverter
 
getTargetType() - Method in class org.apache.servicecomb.swagger.invocation.converter.impl.part.ResourceToPartConverter
 
getTransportContext() - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
getVertxContext() - Method in interface org.apache.servicecomb.swagger.invocation.context.VertxTransportContext
 

H

handle(Response) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
Headers - Class in org.apache.servicecomb.swagger.invocation.response
 
Headers() - Constructor for class org.apache.servicecomb.swagger.invocation.response.Headers
 
HttpStatus - Class in org.apache.servicecomb.swagger.invocation.context
 
HttpStatus(int, String) - Constructor for class org.apache.servicecomb.swagger.invocation.context.HttpStatus
 
httpStatus - Variable in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
HttpStatusManager - Class in org.apache.servicecomb.swagger.invocation.context
 
HttpStatusManager() - Constructor for class org.apache.servicecomb.swagger.invocation.context.HttpStatusManager
 

I

init(Swagger, Operation) - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
initGlobalDefaultMapper() - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
InputStreamToPartConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
InputStreamToPartConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.InputStreamToPartConverter
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentSame
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerBeanParamMapper
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapper
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.AbstractProducerContextArgMapper
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentSame
 
invocationArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerBeanParamMapper
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ArgumentMapper
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>) - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ArgumentsMapper
for scenes that consumer arguments not same to contract arguments, eg: 1.consumer: int add(QueryWrapper query) class QueryWrapper { public int x; public int y; } contract: int add(int x, int y) 2.consumer: int add(InvocationContext context, int x, int y); contract: int add(int x, int y) 3.consumer: int add(int x, int y) contract: int add(BodyRequest body) class BodyRequest { public int x; public int y; } notice: no convert logic when map arguments map arguments by name, DO NOT use duplicated contract argument names
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ArgumentsMapperCommon
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ArgumentsMapperDirectReuse
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentSame
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentToBodyField
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerBeanParamMapper
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerInvocationContextMapper
 
invocationArgumentToSwaggerArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentMapper
 
InvocationContext - Class in org.apache.servicecomb.swagger.invocation.context
InvocationContext is used to pass data between microservices or in microservice different layer.
InvocationContext() - Constructor for class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
InvocationContextCompletableFuture<T> - Class in org.apache.servicecomb.swagger.invocation.context
 
InvocationContextCompletableFuture(InvocationContext) - Constructor for class org.apache.servicecomb.swagger.invocation.context.InvocationContextCompletableFuture
 
InvocationContextProcessor - Class in org.apache.servicecomb.swagger.invocation.generator
 
InvocationContextProcessor() - Constructor for class org.apache.servicecomb.swagger.invocation.generator.InvocationContextProcessor
 
InvocationException - Exception in org.apache.servicecomb.swagger.invocation.exception
业务在provider端,想返回在swagger中定义好的错误 通过抛出本类型的异常来实现 如果不是本类型的异常,则强制认为是PRODUCER_INNER_STATUS_CODE错误
InvocationException(Response.StatusType, Object) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(Response.StatusType, String) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(int, String, Object, Throwable) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(int, String, Object) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(Response.StatusType, Object, Throwable) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(Response.StatusType, String, String) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationException(Response.StatusType, String, String, Throwable) - Constructor for exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
InvocationExceptionToProducerResponseConverter - Class in org.apache.servicecomb.swagger.invocation.exception
 
InvocationExceptionToProducerResponseConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.exception.InvocationExceptionToProducerResponseConverter
 
InvocationType - Enum in org.apache.servicecomb.swagger.invocation
 
invocationType - Variable in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
isFailed() - Method in class org.apache.servicecomb.swagger.invocation.Response
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.CompletableFutureConsumerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.CseResponseConsumerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.OptionalConsumerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.CompletableFutureProducerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.CseResponseProducerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapperFactory
 
isMatch(Type) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.OptionalProducerResponseMapperFactory
 
isMatch(Type) - Method in interface org.apache.servicecomb.swagger.invocation.response.ResponseMapperFactory
 
isSameMapping() - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentSame
 
isSuccessed() - Method in class org.apache.servicecomb.swagger.invocation.Response
 

L

localContext - Variable in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 

M

main(String[]) - Static method in class org.apache.servicecomb.swagger.invocation.arguments.producer.codec.ArgWrapperJavaType
 
mapper - Static variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.SwaggerBodyFieldToProducerArgument
 
mappers - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
mapResponse(Response) - Method in interface org.apache.servicecomb.swagger.invocation.response.consumer.ConsumerResponseMapper
 
mapResponse(Response) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.DefaultConsumerResponseMapper
 
mapResponse(Response) - Method in class org.apache.servicecomb.swagger.invocation.response.consumer.OptionalConsumerResponseMapper
 
mapResponse(Response.StatusType, Object) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.DefaultProducerResponseMapper
 
mapResponse(Response.StatusType, Object) - Method in class org.apache.servicecomb.swagger.invocation.response.producer.OptionalProducerResponseMapper
 
mapResponse(Response.StatusType, Object) - Method in interface org.apache.servicecomb.swagger.invocation.response.producer.ProducerResponseMapper
 
mergeContext(InvocationContext) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
mergeContext(Map<String, String>) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 

O

ok(Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
onBusinessFinish() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
onBusinessMethodFinish() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
onBusinessMethodStart() - Method in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
OptionalConsumerResponseMapper - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
OptionalConsumerResponseMapper(ConsumerResponseMapper) - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.OptionalConsumerResponseMapper
 
OptionalConsumerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.consumer
 
OptionalConsumerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.consumer.OptionalConsumerResponseMapperFactory
 
OptionalProducerResponseMapper - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
OptionalProducerResponseMapper(ProducerResponseMapper) - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.OptionalProducerResponseMapper
 
OptionalProducerResponseMapperFactory - Class in org.apache.servicecomb.swagger.invocation.response.producer
 
OptionalProducerResponseMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.response.producer.OptionalProducerResponseMapperFactory
 
org.apache.servicecomb.swagger.engine - package org.apache.servicecomb.swagger.engine
 
org.apache.servicecomb.swagger.invocation - package org.apache.servicecomb.swagger.invocation
 
org.apache.servicecomb.swagger.invocation.arguments - package org.apache.servicecomb.swagger.invocation.arguments
 
org.apache.servicecomb.swagger.invocation.arguments.consumer - package org.apache.servicecomb.swagger.invocation.arguments.consumer
 
org.apache.servicecomb.swagger.invocation.arguments.producer - package org.apache.servicecomb.swagger.invocation.arguments.producer
 
org.apache.servicecomb.swagger.invocation.arguments.producer.codec - package org.apache.servicecomb.swagger.invocation.arguments.producer.codec
 
org.apache.servicecomb.swagger.invocation.context - package org.apache.servicecomb.swagger.invocation.context
 
org.apache.servicecomb.swagger.invocation.converter - package org.apache.servicecomb.swagger.invocation.converter
 
org.apache.servicecomb.swagger.invocation.converter.impl.part - package org.apache.servicecomb.swagger.invocation.converter.impl.part
 
org.apache.servicecomb.swagger.invocation.exception - package org.apache.servicecomb.swagger.invocation.exception
 
org.apache.servicecomb.swagger.invocation.extension - package org.apache.servicecomb.swagger.invocation.extension
 
org.apache.servicecomb.swagger.invocation.generator - package org.apache.servicecomb.swagger.invocation.generator
 
org.apache.servicecomb.swagger.invocation.response - package org.apache.servicecomb.swagger.invocation.response
 
org.apache.servicecomb.swagger.invocation.response.consumer - package org.apache.servicecomb.swagger.invocation.response.consumer
 
org.apache.servicecomb.swagger.invocation.response.producer - package org.apache.servicecomb.swagger.invocation.response.producer
 

P

parentContext - Variable in class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
PartListToPartArrayConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
PartListToPartArrayConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartArrayConverter
 
PartListToPartListConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
PartListToPartListConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartListToPartListConverter
 
PartToPartConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
PartToPartConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.PartToPartConverter
 
processBeanParameter(int, Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processBeanParameter(int, Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
processBeanParameter(int, Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
processContextParameter(int, Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processedSwaggerParamters - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processKnownParameter(int, Parameter, String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processPendingSwaggerParameter(Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processPendingSwaggerParameter(Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
processPendingSwaggerParameter(Parameter) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
processSwaggerBodyField(int, Parameter, String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processUnknownParameter(String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
processUnknownParameter(String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentsMapperCreator
 
processUnknownParameter(String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
PRODUCER_INNER_REASON_PHRASE - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
PRODUCER_INNER_STATUS - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
PRODUCER_INNER_STATUS_CODE - Static variable in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
ProducerArgumentMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerArgumentMapper() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentMapper
 
ProducerArgumentSame - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerArgumentSame(String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentSame
 
ProducerArgumentsMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
map swagger arguments to producer arguments
ProducerArgumentsMapper(List<ArgumentMapper>) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapper
 
ProducerArgumentsMapperCreator - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerArgumentsMapperCreator(SerializationConfig, Map<Class<?>, ContextArgumentMapperFactory>, Class<?>, Method, SwaggerOperation) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapperCreator
 
ProducerBeanParamMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerBeanParamMapper(String, Class<?>) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerBeanParamMapper
 
ProducerContextArgumentMapperFactory - Interface in org.apache.servicecomb.swagger.invocation.arguments.producer
 
producerFail(Throwable) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
producerFailResp(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
ProducerInvocationContextMapper - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerInvocationContextMapper(String, String) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerInvocationContextMapper
 
ProducerInvocationContextMapperFactory - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
ProducerInvocationContextMapperFactory() - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerInvocationContextMapperFactory
 
ProducerInvokeExtension - Interface in org.apache.servicecomb.swagger.invocation.extension
Producer method invocation extension to handle the required validations/checks before invoking the actual method.
ProducerResponseMapper - Interface in org.apache.servicecomb.swagger.invocation.response.producer
 
ProducerResponseMapperFactory - Interface in org.apache.servicecomb.swagger.invocation.response.producer
 
providerClass - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
providerFailResp(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
providerMethod - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 

R

readValue(ObjectMapper, String) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.codec.ArgWrapperJavaType
 
removeInvocationContext() - Static method in class org.apache.servicecomb.swagger.invocation.context.ContextUtils
 
ResourceToPartConverter - Class in org.apache.servicecomb.swagger.invocation.converter.impl.part
 
ResourceToPartConverter() - Constructor for class org.apache.servicecomb.swagger.invocation.converter.impl.part.ResourceToPartConverter
 
Response - Class in org.apache.servicecomb.swagger.invocation
用jaxrs的Response能表达所有概念 但是那个是abstract类,在不引入jersey之类的库的情况下,我们需要补充的功能太多 所以,使用一个简单的归一化类
Response() - Constructor for class org.apache.servicecomb.swagger.invocation.Response
 
ResponseMapperFactory<MAPPER> - Interface in org.apache.servicecomb.swagger.invocation.response
 
ResponseMapperFactorys<MAPPER> - Class in org.apache.servicecomb.swagger.invocation.response
 
ResponseMapperFactorys(Class<? extends ResponseMapperFactory<MAPPER>>) - Constructor for class org.apache.servicecomb.swagger.invocation.response.ResponseMapperFactorys
 
ResponseMetaMapper - Interface in org.apache.servicecomb.swagger.invocation.response
 
ResponsesMeta - Class in org.apache.servicecomb.swagger.invocation.response
two Scenes: 1.consumer interface + swagger interface declare success response type and can declare exceptions response type by annotations consumer interface meta never changed and has high priority so, merge them to be one ResponsesMeta 2.restTemplate + swagger can only declare success response type and not stable so, will wrap swagger meta note: old version support: List<User> users = restTemplate.postForObject(...., List.class) in fact, in this time, type is determined by swagger meta new version: 1) if request response type is List/Set/Map, and there is element type defined, then use swagger type, 2) other times use request response type 3) compare to old version, add support of ParameterizedTypeReference
ResponsesMeta() - Constructor for class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 

S

ScbResponseProcessor - Class in org.apache.servicecomb.swagger.invocation.generator
 
ScbResponseProcessor() - Constructor for class org.apache.servicecomb.swagger.invocation.generator.ScbResponseProcessor
 
serializationConfig - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
setArgumentsMapper(ArgumentsMapper) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
setArgumentsMapper(ProducerArgumentsMapper) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setCode(String) - Method in class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
setConsumerClass(Class<?>) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
setConsumerIntf(Class<?>) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
setConsumerMethod(Method) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
setContext(Map<String, String>) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
setHeaderMap(Map<String, List<Object>>) - Method in class org.apache.servicecomb.swagger.invocation.response.Headers
 
setHeaders(Headers) - Method in class org.apache.servicecomb.swagger.invocation.Response
 
setInvocationContext(InvocationContext) - Static method in class org.apache.servicecomb.swagger.invocation.context.ContextUtils
 
setLocalContext(Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
setMessage(String) - Method in class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
setProducerClass(Class<?>) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setProducerCls(Class<?>) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
setProducerInstance(Object) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
setProducerInstance(Object) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setProducerMethod(Method) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setResponseMapper(ConsumerResponseMapper) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
setResponseMapper(ProducerResponseMapper) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setResponseType(int, JavaType) - Method in class org.apache.servicecomb.swagger.invocation.response.ResponsesMeta
 
setResult(Object) - Method in class org.apache.servicecomb.swagger.invocation.Response
 
setStatus(Response.StatusType) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
setStatus(int, String) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
setStatus(int) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
setStatus(Response.StatusType) - Method in class org.apache.servicecomb.swagger.invocation.Response
 
setSwagger(Swagger) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
setSwaggerOperation(SwaggerOperation) - Method in class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
setSwaggerOperation(SwaggerOperation) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setSwaggerParameterTypes(Map<String, Type>) - Method in class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 
setTransportContext(TransportContext) - Method in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
status(Response.StatusType) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
success(Response.StatusType, Object) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
success(Object) - Method in interface org.apache.servicecomb.swagger.invocation.AsyncResponse
 
success(Object, Response.StatusType) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
succResp(Object) - Static method in class org.apache.servicecomb.swagger.invocation.Response
 
swaggerArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentSame
 
swaggerArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.AbstractProducerContextArgMapper
 
swaggerArgumentName - Variable in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentSame
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ArgumentMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>) - Method in interface org.apache.servicecomb.swagger.invocation.arguments.ArgumentsMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.consumer.ConsumerArgumentMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.AbstractProducerContextArgMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentSame
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerArgumentsMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.ProducerBeanParamMapper
 
swaggerArgumentToInvocationArguments(SwaggerInvocation, Map<String, Object>, Map<String, Object>) - Method in class org.apache.servicecomb.swagger.invocation.arguments.producer.SwaggerBodyFieldToProducerArgument
 
SwaggerBodyFieldToProducerArgument - Class in org.apache.servicecomb.swagger.invocation.arguments.producer
 
SwaggerBodyFieldToProducerArgument(String, String, String, Type) - Constructor for class org.apache.servicecomb.swagger.invocation.arguments.producer.SwaggerBodyFieldToProducerArgument
 
swaggerBodyIdx - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
swaggerBodyProperties - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
SwaggerConsumer - Class in org.apache.servicecomb.swagger.engine
 
SwaggerConsumer() - Constructor for class org.apache.servicecomb.swagger.engine.SwaggerConsumer
 
SwaggerConsumerOperation - Class in org.apache.servicecomb.swagger.engine
 
SwaggerConsumerOperation() - Constructor for class org.apache.servicecomb.swagger.engine.SwaggerConsumerOperation
 
SwaggerEnvironment - Class in org.apache.servicecomb.swagger.engine
 
SwaggerEnvironment() - Constructor for class org.apache.servicecomb.swagger.engine.SwaggerEnvironment
 
SwaggerInvocation - Class in org.apache.servicecomb.swagger.invocation
 
SwaggerInvocation() - Constructor for class org.apache.servicecomb.swagger.invocation.SwaggerInvocation
 
swaggerOperation - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
swaggerParameters - Variable in class org.apache.servicecomb.swagger.invocation.arguments.AbstractArgumentsMapperCreator
 
SwaggerProducer - Class in org.apache.servicecomb.swagger.engine
 
SwaggerProducer() - Constructor for class org.apache.servicecomb.swagger.engine.SwaggerProducer
 
SwaggerProducerOperation - Class in org.apache.servicecomb.swagger.engine
 
SwaggerProducerOperation() - Constructor for class org.apache.servicecomb.swagger.engine.SwaggerProducerOperation
 

T

toString() - Method in class org.apache.servicecomb.swagger.invocation.exception.CommonExceptionData
 
toString() - Method in exception org.apache.servicecomb.swagger.invocation.exception.InvocationException
 
transportContext - Variable in class org.apache.servicecomb.swagger.invocation.context.InvocationContext
 
TransportContext - Interface in org.apache.servicecomb.swagger.invocation.context
currently, only for server side

U

unwrap(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 
unwrapIncludeInvocationException(Throwable) - Static method in class org.apache.servicecomb.swagger.invocation.exception.ExceptionFactory
 

V

valueOf(String) - Static method in enum org.apache.servicecomb.swagger.invocation.InvocationType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.apache.servicecomb.swagger.invocation.InvocationType
Returns an array containing the constants of this enum type, in the order they are declared.
VertxTransportContext - Interface in org.apache.servicecomb.swagger.invocation.context
 
A B C D E F G H I L M O P R S T U V 
Skip navigation links

Copyright © 2017–2020 The Apache Software Foundation. All rights reserved.