/* * Copyright 2017 LINE Corporation * * LINE Corporation 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 com.linecorp.armeria.client; import com.linecorp.armeria.common.Request; import com.linecorp.armeria.common.Response; import com.linecorp.armeria.server.Service; /** * Decorates a {@link Client}. Use {@link DecoratingClient} if your {@link Service} has different * {@link Request} or {@link Response} type from the {@link Client} being decorated. * * @param <I> the {@link Request} type of the {@link Client} being decorated * @param <O> the {@link Response} type of the {@link Client} being decorated */ public abstract class SimpleDecoratingClient<I extends Request, O extends Response> extends DecoratingClient<I, O, I, O> { /** * Creates a new instance that decorates the specified {@link Client}. */ protected SimpleDecoratingClient(Client<? super I, ? extends O> delegate) { super(delegate); } }