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