objectos.way.HttpModuleCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectos.way Show documentation
Show all versions of objectos.way Show documentation
Objectos Way allows you to build full-stack web applications using only Java.
The newest version!
/*
* Copyright (C) 2023-2024 Objectos Software LTDA.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package objectos.way;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
sealed abstract class HttpModuleCondition extends HttpModule.Condition {
static final class Digits extends HttpModuleCondition {
public Digits(String name) {
super(name);
}
@Override
final boolean test(String value) {
int len;
len = value.length();
if (len == 0) {
return false;
}
for (int i = 0; i < len; i++) {
char c;
c = value.charAt(i);
if (!Character.isDigit(c)) {
return false;
}
}
return true;
}
}
static final class NotEmpty extends HttpModuleCondition {
public NotEmpty(String name) {
super(name);
}
@Override
final boolean test(String value) {
return !value.isEmpty();
}
}
static final class Regex extends HttpModuleCondition {
private final Pattern pattern;
public Regex(String name, Pattern pattern) {
super(name);
this.pattern = pattern;
}
@Override
final boolean test(String value) {
Matcher matcher;
matcher = pattern.matcher(value);
return matcher.matches();
}
}
HttpModuleCondition(String name) {
super(name);
}
}