本文整理匯總了Java中io.swagger.models.Operation.setProduces方法的典型用法代碼示例。如果您正苦於以下問題:Java Operation.setProduces方法的具體用法?Java Operation.setProduces怎麽用?Java Operation.setProduces使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類io.swagger.models.Operation
的用法示例。
在下文中一共展示了Operation.setProduces方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: build
import io.swagger.models.Operation; //導入方法依賴的package包/類
public Operation build() {
Operation operation = new Operation();
if (!tags.isEmpty()) {
operation.setTags(newArrayList(tags));
}
for(ParameterBuilder builder: parameters){
operation.addParameter(builder.build());
}
for(Consumer<Operation> consumer: responses){
consumer.accept(operation);
}
operation.setDescription(description);
operation.setSummary(summary);
operation.setProduces(produces);
return operation;
}
示例2: processProduces
import io.swagger.models.Operation; //導入方法依賴的package包/類
protected void processProduces(String[] produces, Operation operation) {
if (null == produces || produces.length == 0) {
return;
}
operation.setProduces(Arrays.asList(produces));
}
開發者ID:apache,項目名稱:incubator-servicecomb-java-chassis,代碼行數:8,代碼來源:AbstractHttpMethodMappingAnnotationProcessor.java