All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spring.turbo.module.webcli.annotation.ArgumentResolversSupplier Maven / Gradle / Ivy

There is a newer version: 3.3.5
Show newest version
package spring.turbo.module.webcli.annotation;

import org.springframework.web.service.invoker.HttpServiceArgumentResolver;

import javax.annotation.Nullable;
import java.util.Collection;
import java.util.Set;
import java.util.function.Supplier;

/**
 * @author 应卓
 * @since 3.3.1
 */
public interface ArgumentResolversSupplier extends Supplier> {

    @Nullable
    @Override
    public default Collection get() {
        return Set.of();
    }

    // -----------------------------------------------------------------------------------------------------------------

    public static class Default implements ArgumentResolversSupplier {
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy