io.vertx.rxjava3.openapi.contract.RequestBody Maven / Gradle / Ivy
/*
* Copyright 2014 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.vertx.rxjava3.openapi.contract;
import io.vertx.rxjava3.RxHelper;
import io.vertx.rxjava3.ObservableHelper;
import io.vertx.rxjava3.FlowableHelper;
import io.vertx.rxjava3.impl.AsyncResultMaybe;
import io.vertx.rxjava3.impl.AsyncResultSingle;
import io.vertx.rxjava3.impl.AsyncResultCompletable;
import io.vertx.rxjava3.WriteStreamObserver;
import io.vertx.rxjava3.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
/**
* This interface represents the most important attributes of an OpenAPI Operation.
*
* Operation V3.1
*
* Operation V3.0
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.openapi.contract.RequestBody original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.openapi.contract.RequestBody.class)
public class RequestBody {
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RequestBody that = (RequestBody) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new RequestBody((io.vertx.openapi.contract.RequestBody) obj),
RequestBody::getDelegate
);
private final io.vertx.openapi.contract.RequestBody delegate;
public RequestBody(io.vertx.openapi.contract.RequestBody delegate) {
this.delegate = delegate;
}
public RequestBody(Object delegate) {
this.delegate = (io.vertx.openapi.contract.RequestBody)delegate;
}
public io.vertx.openapi.contract.RequestBody getDelegate() {
return delegate;
}
private static final TypeArg TYPE_ARG_0 = new TypeArg(o1 -> io.vertx.rxjava3.openapi.contract.MediaType.newInstance((io.vertx.openapi.contract.MediaType)o1), o1 -> o1.getDelegate());
/**
* @return true if the request body is required in the request, otherwise false.
*/
public boolean isRequired() {
boolean ret = delegate.isRequired();
return ret;
}
/**
* @return a map containing descriptions of potential request payloads. The key is a media type or media type range and the value describes it.
*/
public java.util.Map getContent() {
java.util.Map ret = delegate.getContent().entrySet().stream().collect(Collectors.toMap(_e -> _e.getKey(), _e -> io.vertx.rxjava3.openapi.contract.MediaType.newInstance((io.vertx.openapi.contract.MediaType)_e.getValue())));
return ret;
}
/**
* This method tries to determine the best fitting {@link io.vertx.rxjava3.openapi.contract.MediaType} based on the passed content type.
*
*
* This is necessary, to avoid that an incoming request of type application/json; charset=utf-8 is failing,
* because we only declared application/json in the OpenAPI spec.
*
*
* Important: If application/json is declared in the contract, application/json; charset=utf-8
* would fit, but not the other way around.
* @param mediaTypeIdentifier
* @return A fitting media type, or null.
*/
public io.vertx.rxjava3.openapi.contract.MediaType determineContentType(java.lang.String mediaTypeIdentifier) {
io.vertx.rxjava3.openapi.contract.MediaType ret = io.vertx.rxjava3.openapi.contract.MediaType.newInstance((io.vertx.openapi.contract.MediaType)delegate.determineContentType(mediaTypeIdentifier));
return ret;
}
public static RequestBody newInstance(io.vertx.openapi.contract.RequestBody arg) {
return arg != null ? new RequestBody(arg) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy