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