All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.twenty11.skysail.common.responses.ConstraintViolationDetails Maven / Gradle / Ivy

The newest version!
package de.twenty11.skysail.common.responses;

import javax.validation.ConstraintViolation;

public class ConstraintViolationDetails {

    private String propertyPath;
    private String message;

    public ConstraintViolationDetails(ConstraintViolation constraintViolation) {
        propertyPath = constraintViolation.getPropertyPath().toString();
        message = constraintViolation.getMessage();
    }

    public String getPropertyPath() {
        return propertyPath;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy