
org.hibernate.beanvalidation.tck.tests.validation.OrderLine Maven / Gradle / Ivy
The newest version!
/**
* Jakarta Bean Validation TCK
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package org.hibernate.beanvalidation.tck.tests.validation;
import javax.validation.Valid;
/**
* @author Gunnar Morling
*/
public class OrderLine {
private Item item;
@Valid
public OrderLine(@Valid Item item) {
this.item = item;
}
public void setItem(@Valid Item item) {
this.item = item;
}
@Valid
public Item getItem() {
return item;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy