com.iprogrammerr.bright.server.method.GetMethod Maven / Gradle / Ivy
package com.iprogrammerr.bright.server.method;
public final class GetMethod implements RequestMethod {
private static final String GET = "GET";
@Override
public boolean is(String requestMethod) {
return GET.equalsIgnoreCase(requestMethod);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy