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

org.yeauty.support.MethodArgumentResolver Maven / Gradle / Ivy

There is a newer version: 0.12.0
Show newest version
package org.yeauty.support;

import io.netty.channel.Channel;
import org.springframework.core.MethodParameter;
import org.springframework.lang.Nullable;


public interface MethodArgumentResolver {

	/**
	 * Whether the given {@linkplain MethodParameter method parameter} is
	 * supported by this resolver.
	 * @param parameter the method parameter to check
	 * @return {@code true} if this resolver supports the supplied parameter;
	 * {@code false} otherwise
	 */
	boolean supportsParameter(MethodParameter parameter);


	@Nullable
	Object resolveArgument(MethodParameter parameter, Channel channel,Object object) throws Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy