com.vmware.photon.controller.api.constraints.IPv4Validator.java Source code

Java tutorial

Introduction

Here is the source code for com.vmware.photon.controller.api.constraints.IPv4Validator.java

Source

/*
 * Copyright 2015 VMware, Inc. All Rights Reserved.
 *
 * 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 com.vmware.photon.controller.api.constraints;

import com.google.inject.Inject;
import org.apache.commons.validator.routines.InetAddressValidator;

import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;

/**
 * Validates if the given string is a valid IPv4 address.
 */
public class IPv4Validator implements ConstraintValidator<IPv4, String> {

    @Inject
    public IPv4Validator() {
    }

    @Override
    public void initialize(IPv4 constraintAnnotation) {
    }

    @Override
    public boolean isValid(String value, ConstraintValidatorContext context) {
        if (!InetAddressValidator.getInstance().isValidInet4Address(value)) {
            context.disableDefaultConstraintViolation();
            context.buildConstraintViolationWithTemplate(String.format("%s is invalid IPv4 Address", value))
                    .addConstraintViolation();
            return false;
        }

        return true;
    }
}