com.iprogrammerr.bright.server.request.MatchedRequest Maven / Gradle / Ivy
package com.iprogrammerr.bright.server.request;
public interface MatchedRequest extends Request {
boolean hasParameter(String key, Class clazz);
T parameter(String key, Class clazz) throws Exception;
boolean hasPathVariable(String key, Class clazz);
T pathVariable(String key, Class clazz) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy