当前位置: 首页>>代码示例>>Java>>正文


Java ADMValidator.isUrl方法代码示例

本文整理汇总了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));
}
 
开发者ID:servicecatalog,项目名称:oscm,代码行数:37,代码来源:UrlValidator.java

示例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);
}
 
开发者ID:servicecatalog,项目名称:oscm,代码行数:24,代码来源:TranslationBean.java

示例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.");
}
 
开发者ID:servicecatalog,项目名称:oscm,代码行数:8,代码来源:ConfigurationSettingsValidator.java

示例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));
}
 
开发者ID:servicecatalog,项目名称:oscm,代码行数:43,代码来源:RelUrlValidator.java


注:本文中的org.oscm.validator.ADMValidator.isUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。