本文整理汇总了Java中org.oscm.validator.ADMValidator.isUrl方法的典型用法代码示例。如果您正苦于以下问题:Java ADMValidator.isUrl方法的具体用法?Java ADMValidator.isUrl怎么用?Java ADMValidator.isUrl使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.oscm.validator.ADMValidator
的用法示例。
在下文中一共展示了ADMValidator.isUrl方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validate
import org.oscm.validator.ADMValidator; //导入方法依赖的package包/类
/**
* Validates that the given value is an URL
*
* @param context
* FacesContext for the request we are processing
* @param component
* UIComponent we are checking for correctness
* @param value
* the value to validate
* @throws ValidatorException
* if validation fails
*/
public void validate(FacesContext facesContext, UIComponent component,
Object value) throws ValidatorException {
if (value == null) {
return;
}
String str = value.toString();
if (str.length() == 0) {
return;
}
if (ADMValidator.isUrl(str)) {
return;
}
Object[] args = null;
String label = JSFUtils.getLabel(component);
if (label != null) {
args = new Object[] { label };
}
ValidationException e = new ValidationException(
ValidationException.ReasonEnum.URL, label, null);
String text = JSFUtils.getText(e.getMessageKey(), args, facesContext);
throw new ValidatorException(new FacesMessage(
FacesMessage.SEVERITY_ERROR, text, null));
}
示例2: validateImprint
import org.oscm.validator.ADMValidator; //导入方法依赖的package包/类
public void validateImprint(final FacesContext context,
final UIComponent component, final Object valueObj) {
// skip if no value
if (valueObj == null) {
return;
}
String value = valueObj.toString();
if (value.length() == 0) {
return;
}
// the imprint value must contain a valid URL or a default text
if (ADMValidator.isUrl(value)) {
return;
}
if (checkIfDefaultText(value)) {
return;
}
// validation failed
throw constructValidatorException(context, component);
}
示例3: validateUrl
import org.oscm.validator.ADMValidator; //导入方法依赖的package包/类
private static void validateUrl(ConfigurationKey key, String value) {
if (ADMValidator.isUrl(value)) {
return;
}
throw new RuntimeException("The url format of " + key.getKeyName()
+ " must be valid.");
}
示例4: validate
import org.oscm.validator.ADMValidator; //导入方法依赖的package包/类
/**
* Validates that the given value is a relative URL
*
* @param context
* FacesContext for the request we are processing
* @param component
* UIComponent we are checking for correctness
* @param value
* the value to validate
* @throws ValidatorException
* if validation fails
*/
public void validate(FacesContext facesContext, UIComponent component,
Object value) throws ValidatorException {
if (value == null) {
return;
}
String str = value.toString();
if (str.length() == 0) {
return;
}
// a relative URL must start with a "/"
if (str.startsWith("/")) {
// create a absolute URL to check all the other URL rules
str = "http://xy".concat(str);
if (ADMValidator.isUrl(str)) {
return;
}
}
Object[] args = null;
String label = JSFUtils.getLabel(component);
if (label != null) {
args = new Object[] { label };
}
ValidationException e = new ValidationException(
ValidationException.ReasonEnum.RELATIVE_URL, label, null);
String text = JSFUtils.getText(e.getMessageKey(), args, facesContext);
throw new ValidatorException(new FacesMessage(
FacesMessage.SEVERITY_ERROR, text, null));
}