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

org.springframework.shell.result.GenericResultHandler Maven / Gradle / Ivy

The newest version!
package org.springframework.shell.result;

import java.util.Set;

import org.springframework.core.convert.TypeDescriptor;

public interface GenericResultHandler {

    Set> getHandlerTypes();

    void handle(Object result, TypeDescriptor resultType);

    boolean matches(TypeDescriptor resultType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy