Thank you for setting the order No.475456
by Jermaine Nelson
Dear Customer!
Thank you for ordering at our online store.
Your order: Sony VAIO A1133651A, was sent at your address.
The tracking number of your postal parcel is indicated in the document attached to this letter.
Please, print out the postal label for receiving the parcel.
Internet Store.
15 years, 4 months
Hibernate SVN: r17583 - beanvalidation/api/trunk/src/main/java/javax/validation.
by hibernate-commits@lists.jboss.org
Author: epbernard
Date: 2009-09-30 11:18:46 -0400 (Wed, 30 Sep 2009)
New Revision: 17583
Modified:
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java
beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java
beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java
beanvalidation/api/trunk/src/main/java/javax/validation/Path.java
beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java
beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java
Log:
Enhance JavaDoc
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -20,8 +20,8 @@
import javax.validation.metadata.ConstraintDescriptor;
/**
- * Describe a constraint violation. This object describe the error context as
- * well as the message describing the violation.
+ * Describe a constraint violation. This object exposes the constraint
+ * violation context as well as the message describing the violation.
*
* @author Emmanuel Bernard
*/
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -24,7 +24,8 @@
/**
* Define a group sequence
- * The interface hosting @GroupSequence is representing the group sequence.
+ * The interface hosting <code>@GroupSequence</code> is representing
+ * the group sequence.
* When hosted on a class, represents the <code>Default</code> group
* for that class.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -21,7 +21,7 @@
import javax.validation.metadata.ConstraintDescriptor;
/**
- * Interpolate a given constraint error message.
+ * Interpolate a given constraint violation message.
* Implementations should be as tolerant as possible on syntax errors.
*
* @author Emmanuel Bernard
@@ -29,8 +29,7 @@
*/
public interface MessageInterpolator {
/**
- * Interpolate the message from the constraint parameters and the actual validated
- * object.
+ * Interpolate the message template based on the contraint validation context.
* The locale is defaulted according to the <code>MessageInterpolator</code>
* implementation. See the implementation documentation for more detail.
*
@@ -42,9 +41,8 @@
String interpolate(String messageTemplate, Context context);
/**
- * Interpolate the message from the constraint parameters and the actual validated
- * object.
- * The Locale used is provided as a parameter.
+ * Interpolate the message template based on the contraint validation context.
+ * The <code>Locale</code> used is provided as a parameter.
*
* @param messageTemplate The message to interpolate.
* @param context contextual information related to the interpolation
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Path.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Path.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Path.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -18,11 +18,12 @@
package javax.validation;
/**
- * Represent a navigation path from an object to another.
- * Each path element is represented by a Node.
+ * Represent the navigation path from an object to another
+ * in an object graph.
+ * Each path element is represented by a <code>Node</code>.
*
* The path corresponds to the succession of nodes
- * in the order they are returned by the Iterator
+ * in the order they are returned by the <code>Iterator</code>
*
* @author Emmanuel Bernard
*/
@@ -33,15 +34,17 @@
*/
interface Node {
/**
- * @return Property name the node represents
- * or null if the leaf node and representing an entity
- * (in particular the node representing the root object
- * has its name null)
+ * Property name the node represents
+ * or null if representing an entity on the leaf node
+ * (in particular the node in a <code>Path</code> representing
+ * the root object has its name null).
+ *
+ * @return property name the node represents
*/
String getName();
/**
- * @return True if the node represents an object contained in an Iterable
+ * @return true if the node represents an object contained in an Iterable
* or in a Map.
*/
boolean isInIterable();
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -18,10 +18,9 @@
package javax.validation;
import java.lang.annotation.ElementType;
-import javax.validation.Path;
/**
- * Contract determining if a property can be accessed by the Bean Validation provider
+ * Contract determining if a property can be accessed by the Bean Validation provider.
* This contract is called for each property that is being either validated or cascaded.
*
* A traversable resolver implementation must be thread-safe.
@@ -33,7 +32,7 @@
* Determine if the Bean Validation provider is allowed to reach the property state
*
* @param traversableObject object hosting <code>traversableProperty</code> or null
- * if validateValue is called
+ * if <code>validateValue</code> is called
* @param traversableProperty the traversable property.
* @param rootBeanType type of the root object passed to the Validator.
* @param pathToTraversableObject path from the root object to
@@ -45,20 +44,20 @@
* reach the property state, <code>false</code> otherwise.
*/
boolean isReachable(Object traversableObject,
- Path.Node traversableProperty,
- Class<?> rootBeanType,
- Path pathToTraversableObject,
- ElementType elementType);
+ Path.Node traversableProperty,
+ Class<?> rootBeanType,
+ Path pathToTraversableObject,
+ ElementType elementType);
/**
* Determine if the Bean Validation provider is allowed to cascade validation on
* the bean instance returned by the property value
* marked as <code>@Valid</code>.
- * Note that this method is called only if isReachable returns true for the same set of
- * arguments and if the property is marked as <code>@Valid</code>
+ * Note that this method is called only if <code>isReachable</code> returns true
+ * for the same set of arguments and if the property is marked as <code>@Valid</code>
*
* @param traversableObject object hosting <code>traversableProperty</code> or null
- * if validateValue is called
+ * if <code>validateValue</code> is called
* @param traversableProperty the traversable property.
* @param rootBeanType type of the root object passed to the Validator.
* @param pathToTraversableObject path from the root object to
@@ -70,8 +69,8 @@
* cascade validation, <code>false</code> otherwise.
*/
boolean isCascadable(Object traversableObject,
- Path.Node traversableProperty,
- Class<?> rootBeanType,
- Path pathToTraversableObject,
- ElementType elementType);
+ Path.Node traversableProperty,
+ Class<?> rootBeanType,
+ Path pathToTraversableObject,
+ ElementType elementType);
}
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java 2009-09-30 13:09:40 UTC (rev 17582)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java 2009-09-30 15:18:46 UTC (rev 17583)
@@ -28,11 +28,11 @@
*/
public interface Validator {
/**
- * Validates all constraints on object.
+ * Validates all constraints on <code>object</code>.
*
* @param object object to validate
- * @param groups groups targeted for validation
- * (default to {@link javax.validation.groups.Default})
+ * @param groups group or list of groups targeted for validation
+ * (default to {@link javax.validation.groups.Default})
*
* @return constraint violations or an empty Set if none
*
@@ -44,19 +44,19 @@
<T> Set<ConstraintViolation<T>> validate(T object, Class<?>... groups);
/**
- * Validates all constraints placed on the property named <code>propertyName</code>
- * of <code>object</code>
+ * Validates all constraints placed on the property of <code>object</code>
+ * named <code>propertyName</code>.
*
* @param object object to validate
* @param propertyName property to validate (ie field and getter constraints)
- * @param groups groups targeted for validation
- * (default to {@link javax.validation.groups.Default})
+ * @param groups group or list of groups targeted for validation
+ * (default to {@link javax.validation.groups.Default})
*
* @return constraint violations or an empty Set if none
*
- * @throws IllegalArgumentException if object is null, if propertyName null, empty
- * or not a valid object property
- * or if null is passed to the varargs groups
+ * @throws IllegalArgumentException if <code>object</code> is null,
+ * if <code>propertyName</code> null, empty or not a valid object property
+ * or if null is passed to the varargs groups
* @throws ValidationException if a non recoverable error happens
* during the validation process
*/
@@ -66,7 +66,7 @@
/**
* Validates all constraints placed on the property named <code>propertyName</code>
- * would the property value be <code>value</code>
+ * of the class <code>beanType</code> would the property value be <code>value</code>
* <p/>
* <code>ConstraintViolation</code> objects return null for
* {@link ConstraintViolation#getRootBean()} and {@link ConstraintViolation#getLeafBean()}
@@ -74,14 +74,14 @@
* @param beanType the bean type
* @param propertyName property to validate
* @param value property value to validate
- * @param groups groups targeted for validation
- * (default to {@link javax.validation.groups.Default})
+ * @param groups group or list of groups targeted for validation
+ * (default to {@link javax.validation.groups.Default})
*
* @return constraint violations or an empty Set if none
*
- * @throws IllegalArgumentException if beanType is null, if propertyName null, empty
- * or not a valid object property
- * or if null is passed to the varargs groups
+ * @throws IllegalArgumentException if <code>beanType</code> is null,
+ * if <code>propertyName</code> null, empty or not a valid object property
+ * or if null is passed to the varargs groups
* @throws ValidationException if a non recoverable error happens
* during the validation process
*/
@@ -91,9 +91,9 @@
Class<?>... groups);
/**
- * Return the descriptor object describing bean constraints
- * The returned object (and associated objects including ConstraintDescriptors)
- * are immutable.
+ * Return the descriptor object describing bean constraints.
+ * The returned object (and associated objects including
+ * <code>ConstraintDescriptor<code>s) are immutable.
*
* @param clazz class type evaluated
*
@@ -107,17 +107,16 @@
BeanDescriptor getConstraintsForClass(Class<?> clazz);
/**
- * Return an object of the specified type to allow access to the
- * provider-specific API. If the Bean Validation provider
- * implementation does not support the specified class, the
- * ValidationException is thrown.
+ * Return an instance of the specified type allowing access to
+ * provider-specific APIs. If the Bean Validation provider
+ * implementation does not support the specified class,
+ * <code>ValidationException</code> is thrown.
*
* @param type the class of the object to be returned.
*
* @return an instance of the specified class
*
- * @throws ValidationException if the provider does not
- * support the call.
+ * @throws ValidationException if the provider does not support the call.
*/
public <T> T unwrap(Class<T> type);
}
15 years, 4 months
Hibernate SVN: r17582 - in validator/trunk/hibernate-validator/src: main/java/org/hibernate/validator/constraints/impl and 3 other directories.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-09-30 09:09:40 -0400 (Wed, 30 Sep 2009)
New Revision: 17582
Added:
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Email.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Range.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/EmailValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Elevator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/EmailValidatorTest.java
Modified:
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java
validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages.properties
validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_de.properties
validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_fr.properties
Log:
HV-241 poerted @Email and @Range from the legacy codebase
Copied: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Email.java (from rev 17580, validator/trunk/hibernate-validator-legacy/src/main/java/org/hibernate/validator/Email.java)
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Email.java (rev 0)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Email.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,50 @@
+//$Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.constraints;
+
+import java.lang.annotation.Documented;
+import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Target;
+import javax.validation.Constraint;
+import javax.validation.Payload;
+
+import org.hibernate.validator.constraints.impl.EmailValidator;
+
+/**
+ * The string has to be a well-formed email address.
+ *
+ * @author Emmanuel Bernard
+ * @author Hardy Ferentschik
+ */
+@Documented
+@Constraint(validatedBy = EmailValidator.class)
+@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
+@Retention(RUNTIME)
+public @interface Email {
+ String message() default "{org.hibernate.validator.constraints.Email.message}";
+
+ Class<?>[] groups() default { };
+
+ Class<? extends Payload>[] payload() default { };
+}
\ No newline at end of file
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java 2009-09-30 13:06:48 UTC (rev 17581)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -21,6 +21,9 @@
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.PARAMETER;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
@@ -30,14 +33,14 @@
import org.hibernate.validator.constraints.impl.LengthValidator;
/**
- * Validate that the string is between min and max included
+ * Validate that the string is between min and max included.
*
* @author Emmanuel Bernard
* @author Hardy Ferentschik
*/
@Documented
@Constraint(validatedBy = LengthValidator.class)
-@Target({ METHOD, FIELD, TYPE })
+@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
@Retention(RUNTIME)
public @interface Length {
int min() default 0;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java 2009-09-30 13:06:48 UTC (rev 17581)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -20,6 +20,9 @@
import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.PARAMETER;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
@@ -34,7 +37,7 @@
*/
@Documented
@Constraint(validatedBy = { })
-@Target({ METHOD, FIELD })
+@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
@Retention(RUNTIME)
@ReportAsSingleViolation
@NotNull
Copied: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Range.java (from rev 17580, validator/trunk/hibernate-validator-legacy/src/main/java/org/hibernate/validator/Range.java)
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Range.java (rev 0)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Range.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,61 @@
+//$Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.constraints;
+
+import java.lang.annotation.Documented;
+import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Target;
+import javax.validation.Constraint;
+import javax.validation.OverridesAttribute;
+import javax.validation.Payload;
+import javax.validation.ReportAsSingleViolation;
+import javax.validation.constraints.Max;
+import javax.validation.constraints.Min;
+
+/**
+ * The annotated element has to be in the appropriate range. Apply on numeric values or string
+ * representation of the numeric value.
+ *
+ * @author Hardy Ferentschik
+ */
+@Documented
+@Constraint(validatedBy = { })
+@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
+@Retention(RUNTIME)
+@Min(0)
+(a)Max(Long.MAX_VALUE)
+@ReportAsSingleViolation
+public @interface Range {
+ @OverridesAttribute(constraint = Min.class, name = "value")
+ long min() default 0;
+
+ @OverridesAttribute(constraint = Max.class, name = "value")
+ long max() default Long.MAX_VALUE;
+
+ String message() default "{org.hibernate.validator.constraints.Range.message}";
+
+ Class<?>[] groups() default { };
+
+ Class<? extends Payload>[] payload() default { };
+}
\ No newline at end of file
Copied: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/EmailValidator.java (from rev 17580, validator/trunk/hibernate-validator-legacy/src/main/java/org/hibernate/validator/EmailValidator.java)
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/EmailValidator.java (rev 0)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/EmailValidator.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,40 @@
+//$Id$
+package org.hibernate.validator.constraints.impl;
+
+import java.util.regex.Matcher;
+import javax.validation.ConstraintValidator;
+import javax.validation.ConstraintValidatorContext;
+
+import org.hibernate.validator.constraints.Email;
+
+/**
+ * Check that a given string is a well-formed email address.
+ *
+ * @author Emmanuel Bernard
+ */
+public class EmailValidator implements ConstraintValidator<Email, String> {
+ //TODO: Implement this http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html regex in java
+ private static String ATOM = "[^\\x00-\\x1F^\\(^\\)^\\<^\\>^\\@^\\,^\\;^\\:^\\\\^\\\"^\\.^\\[^\\]^\\s]";
+ private static String DOMAIN = "(" + ATOM + "+(\\." + ATOM + "+)*";
+ private static String IP_DOMAIN = "\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\]";
+
+ private java.util.regex.Pattern pattern = java.util.regex.Pattern.compile(
+ "^" + ATOM + "+(\\." + ATOM + "+)*@"
+ + DOMAIN
+ + "|"
+ + IP_DOMAIN
+ + ")$",
+ java.util.regex.Pattern.CASE_INSENSITIVE
+ );
+
+ public void initialize(Email annotation) {
+ }
+
+ public boolean isValid(String value, ConstraintValidatorContext context) {
+ if ( value == null || value.length() == 0 ) {
+ return true;
+ }
+ Matcher m = pattern.matcher( value );
+ return m.matches();
+ }
+}
\ No newline at end of file
Modified: validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages.properties
===================================================================
--- validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages.properties 2009-09-30 13:06:48 UTC (rev 17581)
+++ validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages.properties 2009-09-30 13:09:40 UTC (rev 17582)
@@ -12,6 +12,8 @@
javax.validation.constraints.Past.message=must be in the past
javax.validation.constraints.Pattern.message=must match "{regexp}"
javax.validation.constraints.Size.message=size must be between {min} and {max}
+org.hibernate.validator.constraints.Email.message="{value}" is not a valid email address
org.hibernate.validator.constraints.Length.message=length must be between {min} and {max}
org.hibernate.validator.constraints.NotEmpty.message=may not be empty
+org.hibernate.validator.constraints.Range.message={value} must be between {min} and {max}
Modified: validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_de.properties
===================================================================
--- validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_de.properties 2009-09-30 13:06:48 UTC (rev 17581)
+++ validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_de.properties 2009-09-30 13:09:40 UTC (rev 17582)
@@ -11,4 +11,8 @@
javax.validation.constraints.Future.message=muss in der Zukunft liegen
javax.validation.constraints.AssertTrue.message=muss wahr sein
javax.validation.constraints.AssertFalse.message=muss falsch sein
-javax.validation.constraints.Digits.message=numerischer Wert aus\u00DFerhalb erlaubten Wertebereichs (<{integer} Ziffern>.<{fraction} Ziffern> erwarted)
\ No newline at end of file
+javax.validation.constraints.Digits.message=numerischer Wert au\u00DFerhalb erlaubten Wertebereichs (<{integer} Ziffern>.<{fraction} Ziffern> erwarted)
+javax.validation.constraints.DecimalMin.message=muss gr\u00F6ssergleich {value} sein
+javax.validation.constraints.DecimalMax.message=muss kleinergleich {value} sein
+org.hibernate.validator.constraints.Email.message="{value}" ist keine g\u00FCltige E-Mail-Adresse
+org.hibernate.validator.constraints.Range.message={value} muss zwischen {min} und {max} liegen
\ No newline at end of file
Modified: validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_fr.properties
===================================================================
--- validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_fr.properties 2009-09-30 13:06:48 UTC (rev 17581)
+++ validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validator/ValidationMessages_fr.properties 2009-09-30 13:09:40 UTC (rev 17582)
@@ -12,3 +12,7 @@
javax.validation.constraints.AssertTrue.message=doit \u00EAtre vrai
javax.validation.constraints.AssertFalse.message=doit \u00EAtre faux
javax.validation.constraints.Digits.message=Valeur num\u00E9rique hors limite (<{integer} chiffres>.<{fraction} chiffres> attendus)
+javax.validation.constraints.DecimalMin.message=doit \u00EAtre plus grand que {value}
+javax.validation.constraints.DecimalMax.message=doit \u00EAtre plus petit que {value}
+org.hibernate.validator.constraints.Email.message=Address email "{value}" mal form�e
+org.hibernate.validator.constraints.Range.message={value} doit �tre entre {min} et {max}
\ No newline at end of file
Copied: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintTest.java (from rev 17580, validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ValidatorResolutionTest.java)
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintTest.java (rev 0)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintTest.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,67 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.constraints;
+
+import java.util.Set;
+import javax.validation.ConstraintViolation;
+import javax.validation.Validator;
+
+import org.testng.annotations.Test;
+
+import org.hibernate.validator.util.TestUtil;
+import static org.hibernate.validator.util.TestUtil.assertConstraintViolation;
+import static org.hibernate.validator.util.TestUtil.assertNumberOfViolations;
+
+/**
+ * @author Hardy Ferentschik
+ */
+public class ConstraintTest {
+
+ @Test
+ public void testRangeConstraint() {
+ Validator validator = TestUtil.getValidator();
+
+ Elevator elevator = new Elevator();
+ elevator.setCurrentFloor( -3 );
+ Set<ConstraintViolation<Elevator>> constraintViolations = validator.validate( elevator );
+
+ assertNumberOfViolations( constraintViolations, 1 );
+ assertConstraintViolation( constraintViolations.iterator().next(), "Invalid floor" );
+
+ elevator.setCurrentFloor( -2 );
+ constraintViolations = validator.validate( elevator );
+
+ assertNumberOfViolations( constraintViolations, 0 );
+
+ elevator.setCurrentFloor( 45 );
+ constraintViolations = validator.validate( elevator );
+
+ assertNumberOfViolations( constraintViolations, 0 );
+
+ elevator.setCurrentFloor( 50 );
+ constraintViolations = validator.validate( elevator );
+
+ assertNumberOfViolations( constraintViolations, 0 );
+
+ elevator.setCurrentFloor( 51 );
+ constraintViolations = validator.validate( elevator );
+
+ assertNumberOfViolations( constraintViolations, 1 );
+ assertConstraintViolation( constraintViolations.iterator().next(), "Invalid floor" );
+ }
+}
Added: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Elevator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Elevator.java (rev 0)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Elevator.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,35 @@
+// $Id:$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.constraints;
+
+/**
+ * @author Hardy Ferentschik
+ */
+public class Elevator {
+
+ @Range(min = -2, max = 50, message = "Invalid floor")
+ private int currentFloor;
+
+ public int getCurrentFloor() {
+ return currentFloor;
+ }
+
+ public void setCurrentFloor(int currentFloor) {
+ this.currentFloor = currentFloor;
+ }
+}
Property changes on: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Elevator.java
___________________________________________________________________
Name: svn:keywords
+ Id
Copied: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/EmailValidatorTest.java (from rev 17580, validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertFalseValidatorTest.java)
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/EmailValidatorTest.java (rev 0)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/EmailValidatorTest.java 2009-09-30 13:09:40 UTC (rev 17582)
@@ -0,0 +1,62 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.constraints.impl;
+
+import static org.testng.Assert.assertFalse;
+import static org.testng.Assert.assertTrue;
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.Test;
+
+/**
+ * @author Hardy Ferentschik
+ */
+public class EmailValidatorTest {
+
+ private static EmailValidator validator;
+
+ @BeforeClass
+ public static void init() {
+ validator = new EmailValidator();
+ }
+
+ @Test
+ public void testEmail() throws Exception {
+ isRightEmail( "emmanuel(a)hibernate.org" );
+ isRightEmail( "" );
+ isRightEmail( null );
+ isRightEmail( "emmanuel@hibernate" );
+ isRightEmail( "emma-n_uel@hibernate" );
+ isRightEmail( "emma+nuel(a)hibernate.org" );
+ isRightEmail( "emma=nuel(a)hibernate.org" );
+ isRightEmail( "emmanuel(a)[123.12.2.11]" );
+ isWrongEmail( "emmanuel.hibernate.org" );
+ isWrongEmail( "emma nuel(a)hibernate.org" );
+ isWrongEmail( "emma(nuel(a)hibernate.org" );
+ isWrongEmail( "emmanuel@" );
+ isWrongEmail( "emma\nnuel(a)hibernate.org" );
+ isWrongEmail( "emma@nuel(a)hibernate.org" );
+ }
+
+ private void isRightEmail(String email) {
+ assertTrue( validator.isValid( email, null ), "Expected a valid email." );
+ }
+
+ private void isWrongEmail(String email) {
+ assertFalse( validator.isValid( email, null ), "Expected a invalid email." );
+ }
+}
\ No newline at end of file
15 years, 4 months
Hibernate SVN: r17581 - validator/trunk/hibernate-validator/src/main/docbook/en-US/modules.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-09-30 09:06:48 -0400 (Wed, 30 Sep 2009)
New Revision: 17581
Modified:
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml
Log:
HV-220 Updated the available constraints table.
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml 2009-09-29 19:28:33 UTC (rev 17580)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml 2009-09-30 13:06:48 UTC (rev 17581)
@@ -1086,6 +1086,19 @@
</row>
<row>
+ <entry>@Email</entry>
+
+ <entry>no</entry>
+
+ <entry>field/property. Needs to be a string.</entry>
+
+ <entry>Check whether the specified string is a valid email
+ address.</entry>
+
+ <entry>none</entry>
+ </row>
+
+ <row>
<entry>@Future</entry>
<entry>yes</entry>
@@ -1110,7 +1123,7 @@
<parameter>min</parameter> and <parameter>max</parameter>
included.</entry>
- <entry>Column length will be set to max.</entry>
+ <entry>none</entry>
</row>
<row>
@@ -1172,10 +1185,23 @@
<entry>Check if the string is not <constant>null</constant> nor
empty.</entry>
- <entry>Column(s) are not null (for String).</entry>
+ <entry>none</entry>
</row>
<row>
+ <entry>@Null</entry>
+
+ <entry>yes</entry>
+
+ <entry>field/property</entry>
+
+ <entry>Check that the annotated value is
+ <constant>null.</constant></entry>
+
+ <entry>none</entry>
+ </row>
+
+ <row>
<entry>@Past</entry>
<entry>yes</entry>
@@ -1203,6 +1229,24 @@
</row>
<row>
+ <entry>@Range(min=, max=)</entry>
+
+ <entry>no</entry>
+
+ <entry>field/property. Supported types are
+ <classname>BigDecimal</classname>,
+ <classname>BigInteger</classname>, <classname>String</classname>,
+ <classname>byte</classname>, <classname>short</classname>,
+ <classname>int</classname>, <classname>long</classname> and the
+ respective wrappers of the primitive types.</entry>
+
+ <entry>Check whether the annotated value lies between (inclusive)
+ the specified minimum and maximum.</entry>
+
+ <entry>none</entry>
+ </row>
+
+ <row>
<entry>@Size(min=, max=)</entry>
<entry>yes</entry>
@@ -1215,7 +1259,7 @@
<entry>Check if the annotated element size is between min and max
(inclusive).</entry>
- <entry>none</entry>
+ <entry>Column length will be set to max.</entry>
</row>
<row>
15 years, 4 months
Hibernate SVN: r17580 - beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap and 64 other directories.
by hibernate-commits@lists.jboss.org
Author: epbernard
Date: 2009-09-29 15:28:33 -0400 (Tue, 29 Sep 2009)
New Revision: 17580
Modified:
beanvalidation/api/trunk/src/main/java/javax/validation/Configuration.java
beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDeclarationException.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDefinitionException.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolationException.java
beanvalidation/api/trunk/src/main/java/javax/validation/GroupDefinitionException.java
beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java
beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java
beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java
beanvalidation/api/trunk/src/main/java/javax/validation/Path.java
beanvalidation/api/trunk/src/main/java/javax/validation/Payload.java
beanvalidation/api/trunk/src/main/java/javax/validation/ReportAsSingleViolation.java
beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java
beanvalidation/api/trunk/src/main/java/javax/validation/UnexpectedTypeException.java
beanvalidation/api/trunk/src/main/java/javax/validation/Valid.java
beanvalidation/api/trunk/src/main/java/javax/validation/Validation.java
beanvalidation/api/trunk/src/main/java/javax/validation/ValidationException.java
beanvalidation/api/trunk/src/main/java/javax/validation/ValidationProviderResolver.java
beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java
beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorContext.java
beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorFactory.java
beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/GenericBootstrap.java
beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/ProviderSpecificBootstrap.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertFalse.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertTrue.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMax.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMin.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Digits.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Future.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Max.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Min.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/NotNull.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Null.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Past.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Pattern.java
beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Size.java
beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java
beanvalidation/api/trunk/src/main/java/javax/validation/groups/package-info.java
beanvalidation/api/trunk/src/main/java/javax/validation/metadata/BeanDescriptor.java
beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ConstraintDescriptor.java
beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ElementDescriptor.java
beanvalidation/api/trunk/src/main/java/javax/validation/metadata/PropertyDescriptor.java
beanvalidation/api/trunk/src/main/java/javax/validation/spi/BootstrapState.java
beanvalidation/api/trunk/src/main/java/javax/validation/spi/ConfigurationState.java
beanvalidation/api/trunk/src/main/java/javax/validation/spi/ValidationProvider.java
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidationProvider.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidatorConfiguration.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ConfigurationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/CustomMessageInterpolatorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderResolverTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInServiceFileTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapUnknownCustomProviderTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Building.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Citizen.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Person.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SecurityCheck.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SuperWoman.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/ValidationRequirementTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Visibility.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Woman.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinConstraintsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinValidatorOverrideTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/InvertedNotNullValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Address.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/ConstraintCompositionTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchAddress.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcode.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeWithInvalidOverride.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Friend.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanAddress.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanZipcode.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Name.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/NotEmpty.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Severity.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Shoe.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint1.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint2.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint3.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint4.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedCompositeConstraint.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintCompositionTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintSingleViolation.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValid.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValidList.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/ConstraintDefinitionsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/Person.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Author.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/BoundariesConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/CustomConstraintValidatorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Negative.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/NegativeConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Positive.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/PositiveConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Address.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Animal.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Auditable.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Author.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Book.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Car.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CreditCard.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence1.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence2.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultAlias.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultGroupRedefinitionTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Dictionary.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/First.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/GroupTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Last.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Order.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Second.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceChecker.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/SequenceResolutionTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/TestEntity.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/A.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B1.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B2.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B3.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/C.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/D1.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/E.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/F1.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/GroupSequenceIsolationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/IsAdult.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/SafeEncryption.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/inheritance/GroupInheritanceTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Bar.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/ConstraintInheritanceTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Foo.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Fubar.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidConstraintDefinitionsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultGroup.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultPayload.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidGroupsType.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidMessageType.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidPayloadClass.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoGroups.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoMessage.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoPayload.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/ValidInPropertyName.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Ambiguous.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Bar.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/BaseClass.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Coordinate.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/CustomConstraint.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Dummy.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Foo.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/MinMax.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SerializableBarSubclass.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassA.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassB.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Suburb.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/ValidatorResolutionTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/messageinterpolation/MessageInterpolationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Account.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountChecker.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/BeanDescriptorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/ConstraintDescriptorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Customer.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Man.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/NotEmpty.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Order.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Person.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/PropertyDescriptorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Severity.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/UnconstraintEntity.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/ExceptionThrowingTraversableResolver.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Jacket.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Person.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/SnifferTraversableResolver.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Suit.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/TraversableResolverTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Trousers.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Actor.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Address.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/BadlyBehavedEntity.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Boy.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Customer.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Engine.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/First.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Last.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/NotEmpty.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Order.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Person.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PlayedWith.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PropertyPathTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Second.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/UnknownProviderBootstrapTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidatePropertyTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateValueTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateWithGroupsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Address.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Animal.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/AnimalCaretaker.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Child.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Condor.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Elephant.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GameReserve.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GraphNavigationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Herd.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/MultiCage.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Order.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/OrderLine.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Parent.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/SingleCage.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zebra.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zoo.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/ConstraintValidatorContextTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/Dummy.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyBean.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/CustomConstraintValidatorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraint.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraint.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraintValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedConstraintValidatorFactoryResolver.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedMessageInterpolator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedTraversableResolver.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserInformation.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConstraintValidatorFactorySpecifiedInValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CreditCard.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CustomConsistentUserValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DefaultProviderSpecifiedInValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DuplicateConfigurationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Error.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/InvalidXmlConfigurationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlNoDefaultConstructorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MissingClassNameOnBeanNodeTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Optional.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OptionalValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Order.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OrderLine.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TestGroup.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlNoDefaultConstructorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/UserType.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlConfigurationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedConstraintValidatorFactory.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedMessageInterpolator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedTraversableResolver.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfigurationViaXmlAndAnnotationsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfiguredBeanNotInClassPathTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConstraintDeclarationTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/DefaultSequenceDefinedInXmlTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MandatoryNameAttributeTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MissingMandatoryElementTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Optional.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Package.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/PrePosting.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ReservedElementNameTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ValidPackage.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ClassLevelOverridingTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Optional.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Package.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/PrePosting.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ValidPackage.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/CreditCard.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/ExcludeFieldLevelAnnotationsDueToBeanDefaultsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/FieldLevelOverridingTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/IncludeFieldLevelAnnotationsDueToBeanDefaultsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/WrongFieldNameTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/CreditCard.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/ExcludePropertyLevelAnnotationsDueToBeanDefaultsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/IncludePropertyLevelAnnotationsDueToBeanDefaultsTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/PropertyLevelOverridingTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/User.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/WrongPropertyNameTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/DummyLengthValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Length.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/LengthValidator.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Name.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/XmlConfiguredConstraintValidatorTest.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/StandaloneContainersImpl.java
beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/TestUtil.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Car.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/CarChecks.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Driver.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/DriverChecks.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/OrderedChecks.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Person.java
validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/RentalCar.java
validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/BootstrapTest.java
validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/CarTest.java
validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/GroupTest.java
validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/master.xml
validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/checkconstraints.xml
validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/defineconstraints.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/bootstrapping.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/defineconstraints.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/introduction.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/xmlconfiguration.xml
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidatorConfiguration.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertFalseValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertTrueValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForNumber.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForNumber.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumber.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendar.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForDate.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/LengthValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumber.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForNumber.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NotNullValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NullValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendar.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForDate.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PatternValidator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArray.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfBoolean.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfByte.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfChar.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfDouble.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfFloat.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfInt.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfLong.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfPrimitives.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfShort.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForCollection.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForMap.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForString.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConfigurationImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintTree.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorContextImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorFactoryImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintViolationImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/GlobalExecutionContext.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/LocalExecutionContext.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/MessageInterpolatorContext.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/NodeImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/PathImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ResourceBundleMessageInterpolator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorContextImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorFactoryImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/Group.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChain.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChainGenerator.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/DefaultTraversableResolver.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/JPATraversableResolver.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/SingleThreadCachedTraversableResolver.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/AnnotationIgnores.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanDescriptorImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaData.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataCache.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintDescriptorImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintHelper.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ElementDescriptorImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/MetaConstraint.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/PropertyDescriptorImpl.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsField.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsMethod.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetAnnotationParameter.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetClassLoader.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetConstructor.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredField.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredFields.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredMethods.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethod.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethodFromPropertyName.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethods.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/IdentitySet.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LazyValidatorFactory.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoadClass.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoggerFactory.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/NewInstance.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ReflectionHelper.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/SetAccessibility.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ValidatorTypeHelper.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/Version.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationDescriptor.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationFactory.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationProxy.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/package.html
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationBootstrapParameters.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationXmlParser.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/XmlMappingParser.java
validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/package.html
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/ValidationMessages.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Customer.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Order.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/ValidationTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Cloneable.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/CloneableConstraintValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintValidatorContextTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Coordinate.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Interval.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Item.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Object.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ObjectConstraintValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/PostCodeList.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Serializable.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SerializableConstraintValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEnd.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEndImpl.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SubType.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Suburb.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperType.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArray.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArrayValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ValidatorResolutionTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/CompositeConstraintTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/Person.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidName.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidNameSingleViolation.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertFalseValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertTrueValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DateHolder.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumberTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForStringTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendarTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForDateTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/LengthValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumberTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForStringTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForNumberTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForStringTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NotNullValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NullValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendarTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForDateTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PatternValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/SizeValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/PathImplTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/ValidatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Address.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence1.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence2.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/First.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainGeneratorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Last.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Second.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceChecker.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/MessageInterpolationTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/ResourceBundleMessageInterpolatorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/CachedTraversableResolverTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Cloth.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Jacket.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Suit.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Trousers.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ConstraintHelperTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Customer.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ElementDescriptorTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Engine.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Order.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Person.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/BoundariesConstraintValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/IdentitySetTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/Positive.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/PositiveConstraintValidator.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ReflectionHelperTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/TestUtil.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ValidatorTypeTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/annotationfactory/AnnotationFactoryTest.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Customer.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Person.java
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/XmlMappingTest.java
Log:
BVAL-184 HV-240 Replace Red Hat Middleware LLC to Red Hat, Inc. and/or its affiliates
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Configuration.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Configuration.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Configuration.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDeclarationException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDeclarationException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDeclarationException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDefinitionException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDefinitionException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintDefinitionException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolationException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolationException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintViolationException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/GroupDefinitionException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/GroupDefinitionException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/GroupDefinitionException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/GroupSequence.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/MessageInterpolator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Path.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Path.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Path.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation;
/**
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Payload.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Payload.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Payload.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation;
/**
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ReportAsSingleViolation.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ReportAsSingleViolation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ReportAsSingleViolation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/TraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/UnexpectedTypeException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/UnexpectedTypeException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/UnexpectedTypeException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Valid.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Valid.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Valid.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Validation.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Validation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Validation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ValidationException.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ValidationException.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ValidationException.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ValidationProviderResolver.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ValidationProviderResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ValidationProviderResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Validator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorContext.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorContext.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorContext.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation;
/**
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorFactory.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ValidatorFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/GenericBootstrap.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/GenericBootstrap.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/GenericBootstrap.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation.bootstrap;
import javax.validation.ValidationProviderResolver;
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/ProviderSpecificBootstrap.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/ProviderSpecificBootstrap.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/bootstrap/ProviderSpecificBootstrap.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation.bootstrap;
import javax.validation.ValidationProviderResolver;
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertFalse.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertFalse.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertFalse.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertTrue.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertTrue.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/AssertTrue.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMax.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMax.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMax.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMin.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMin.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/DecimalMin.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Digits.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Digits.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Digits.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Future.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Future.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Future.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Max.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Max.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Max.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Min.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Min.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Min.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/NotNull.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/NotNull.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/NotNull.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Null.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Null.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Null.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Past.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Past.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Past.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Pattern.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Pattern.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Pattern.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Size.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Size.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/constraints/Size.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/groups/package-info.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/groups/package-info.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/groups/package-info.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id: JPATraversableResolver.java 17544 2009-09-25 13:10:20Z hardy.ferentschik $
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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.
+*/
/**
* A group defines a subset of constraints. Instead of
* validating all constraints for a given object graph,
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/metadata/BeanDescriptor.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/metadata/BeanDescriptor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/metadata/BeanDescriptor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ConstraintDescriptor.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ConstraintDescriptor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ConstraintDescriptor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ElementDescriptor.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ElementDescriptor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/metadata/ElementDescriptor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/metadata/PropertyDescriptor.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/metadata/PropertyDescriptor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/metadata/PropertyDescriptor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation.metadata;
/**
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/spi/BootstrapState.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/spi/BootstrapState.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/spi/BootstrapState.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation.spi;
import javax.validation.ValidationProviderResolver;
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/spi/ConfigurationState.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/spi/ConfigurationState.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/spi/ConfigurationState.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/spi/ValidationProvider.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/spi/ValidationProvider.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/spi/ValidationProvider.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<copyright>
<year>2009</year>
<holder>
- Red Hat Middleware LLC, and individual contributors listed as
+ Red Hat, Inc. and/or its affiliates, and individual contributors listed as
authors.
</holder>
</copyright>
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidationProvider.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidationProvider.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidationProvider.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidatorConfiguration.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidatorConfiguration.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/common/TCKValidatorConfiguration.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ConfigurationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ConfigurationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ConfigurationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/CustomMessageInterpolatorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/CustomMessageInterpolatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/CustomMessageInterpolatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderResolverTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderResolverTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderResolverTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/ValidationProviderTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInServiceFileTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInServiceFileTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInServiceFileTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapCustomProviderDefinedInValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapUnknownCustomProviderTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapUnknownCustomProviderTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/bootstrap/customprovider/BootstrapUnknownCustomProviderTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Building.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Building.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Building.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Citizen.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Citizen.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Citizen.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Person.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SecurityCheck.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SecurityCheck.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SecurityCheck.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SuperWoman.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SuperWoman.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/SuperWoman.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/ValidationRequirementTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/ValidationRequirementTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/ValidationRequirementTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Visibility.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Visibility.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Visibility.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Woman.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Woman.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/application/Woman.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinConstraintsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinConstraintsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinConstraintsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinValidatorOverrideTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinValidatorOverrideTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/BuiltinValidatorOverrideTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/InvertedNotNullValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/InvertedNotNullValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/builtinconstraints/InvertedNotNullValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Address.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Address.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Address.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/ConstraintCompositionTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/ConstraintCompositionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/ConstraintCompositionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchAddress.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchAddress.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchAddress.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcode.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcode.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcode.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeWithInvalidOverride.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeWithInvalidOverride.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/FrenchZipcodeWithInvalidOverride.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Friend.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Friend.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Friend.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanAddress.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanAddress.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanAddress.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanZipcode.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanZipcode.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/GermanZipcode.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Name.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Name.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Name.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/NotEmpty.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/NotEmpty.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/NotEmpty.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Severity.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Severity.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Severity.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Shoe.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Shoe.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/Shoe.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint1.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint2.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint2.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint2.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint3.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint3.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint3.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint4.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint4.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/CompositeConstraint4.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedCompositeConstraint.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedCompositeConstraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedCompositeConstraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintCompositionTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintCompositionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintCompositionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintSingleViolation.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintSingleViolation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintcomposition/nestedconstraintcomposition/NestedConstraintSingleViolation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValid.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValid.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValid.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValidList.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValidList.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/AlwaysValidList.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/ConstraintDefinitionsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/ConstraintDefinitionsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/ConstraintDefinitionsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/Person.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/constraintdefinition/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Author.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Author.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Author.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/BoundariesConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/BoundariesConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/BoundariesConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/CustomConstraintValidatorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/CustomConstraintValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/CustomConstraintValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Negative.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Negative.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Negative.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/NegativeConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/NegativeConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/NegativeConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Positive.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Positive.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/Positive.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/PositiveConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/PositiveConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/customconstraint/PositiveConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Address.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Address.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Address.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Animal.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Animal.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Animal.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Auditable.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Auditable.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Auditable.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Author.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Author.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Author.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Book.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Book.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Book.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Car.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Car.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Car.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CreditCard.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CreditCard.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CreditCard.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence1.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence2.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence2.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/CyclicGroupSequence2.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultAlias.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultAlias.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultAlias.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultGroupRedefinitionTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultGroupRedefinitionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/DefaultGroupRedefinitionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Dictionary.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Dictionary.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Dictionary.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/First.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/First.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/First.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/GroupTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/GroupTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/GroupTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Last.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Last.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Last.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Order.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Second.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Second.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/Second.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceChecker.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceChecker.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceChecker.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/ZipCodeCoherenceValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/SequenceResolutionTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/SequenceResolutionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/SequenceResolutionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/TestEntity.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/TestEntity.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequence/TestEntity.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/A.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/A.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/A.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B1.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B2.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B2.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B2.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B3.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B3.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/B3.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/C.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/C.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/C.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/D1.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/D1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/D1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/E.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/E.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/E.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/F1.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/F1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/F1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/GroupSequenceIsolationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/GroupSequenceIsolationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/GroupSequenceIsolationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/IsAdult.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/IsAdult.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/IsAdult.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/SafeEncryption.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/SafeEncryption.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/groupsequenceisolation/SafeEncryption.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/inheritance/GroupInheritanceTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/inheritance/GroupInheritanceTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/groups/inheritance/GroupInheritanceTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Bar.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Bar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Bar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/ConstraintInheritanceTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/ConstraintInheritanceTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/ConstraintInheritanceTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Foo.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Foo.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Foo.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Fubar.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Fubar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/inheritance/Fubar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidConstraintDefinitionsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidConstraintDefinitionsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidConstraintDefinitionsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultGroup.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultGroup.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultGroup.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultPayload.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultPayload.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidDefaultPayload.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidGroupsType.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidGroupsType.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidGroupsType.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidMessageType.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidMessageType.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidMessageType.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidPayloadClass.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidPayloadClass.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/InvalidPayloadClass.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoGroups.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoGroups.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoGroups.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoMessage.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoMessage.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoMessage.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoPayload.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoPayload.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/NoPayload.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/ValidInPropertyName.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/ValidInPropertyName.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/invalidconstraintdefinitions/ValidInPropertyName.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Ambiguous.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Ambiguous.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Ambiguous.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Bar.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Bar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Bar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/BaseClass.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/BaseClass.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/BaseClass.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Coordinate.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Coordinate.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Coordinate.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/CustomConstraint.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/CustomConstraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/CustomConstraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Dummy.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Dummy.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Dummy.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Foo.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Foo.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Foo.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/MinMax.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/MinMax.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/MinMax.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SerializableBarSubclass.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SerializableBarSubclass.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SerializableBarSubclass.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassA.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassA.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassA.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassB.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassB.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/SubClassB.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Suburb.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Suburb.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/Suburb.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/ValidatorResolutionTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/ValidatorResolutionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/constraints/validatorresolution/ValidatorResolutionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/messageinterpolation/MessageInterpolationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/messageinterpolation/MessageInterpolationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/messageinterpolation/MessageInterpolationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Account.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Account.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Account.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountChecker.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountChecker.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountChecker.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/AccountValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/BeanDescriptorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/BeanDescriptorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/BeanDescriptorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/ConstraintDescriptorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/ConstraintDescriptorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/ConstraintDescriptorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Customer.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Customer.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Customer.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Man.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Man.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Man.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/NotEmpty.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/NotEmpty.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/NotEmpty.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Order.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Person.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/PropertyDescriptorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/PropertyDescriptorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/PropertyDescriptorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Severity.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Severity.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/Severity.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/UnconstraintEntity.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/UnconstraintEntity.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/metadata/UnconstraintEntity.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/ExceptionThrowingTraversableResolver.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/ExceptionThrowingTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/ExceptionThrowingTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Jacket.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Jacket.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Jacket.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Person.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/SnifferTraversableResolver.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/SnifferTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/SnifferTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Suit.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Suit.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Suit.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/TraversableResolverTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/TraversableResolverTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/TraversableResolverTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Trousers.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Trousers.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/traversableresolver/Trousers.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Actor.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Actor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Actor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Address.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Address.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Address.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/BadlyBehavedEntity.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/BadlyBehavedEntity.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/BadlyBehavedEntity.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Boy.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Boy.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Boy.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Customer.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Customer.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Customer.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Engine.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Engine.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Engine.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/First.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/First.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/First.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Last.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Last.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Last.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/NotEmpty.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/NotEmpty.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/NotEmpty.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Order.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Person.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PlayedWith.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PlayedWith.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PlayedWith.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PropertyPathTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PropertyPathTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/PropertyPathTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Second.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Second.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/Second.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/UnknownProviderBootstrapTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/UnknownProviderBootstrapTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/UnknownProviderBootstrapTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidatePropertyTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidatePropertyTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidatePropertyTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateValueTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateValueTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateValueTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateWithGroupsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateWithGroupsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateWithGroupsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Address.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Address.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Address.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Animal.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Animal.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Animal.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/AnimalCaretaker.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/AnimalCaretaker.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/AnimalCaretaker.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Child.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Child.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Child.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Condor.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Condor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Condor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Elephant.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Elephant.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Elephant.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GameReserve.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GameReserve.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GameReserve.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GraphNavigationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GraphNavigationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/GraphNavigationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Herd.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Herd.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Herd.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/MultiCage.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/MultiCage.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/MultiCage.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Order.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/OrderLine.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/OrderLine.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/OrderLine.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Parent.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Parent.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Parent.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/SingleCage.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/SingleCage.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/SingleCage.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zebra.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zebra.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zebra.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zoo.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zoo.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/graphnavigation/Zoo.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/ConstraintValidatorContextTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/ConstraintValidatorContextTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/ConstraintValidatorContextTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/Dummy.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/Dummy.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/Dummy.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyBean.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyBean.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyBean.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validation/validatorcontext/DummyValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/CustomConstraintValidatorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/CustomConstraintValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/CustomConstraintValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraint.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MyConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraint.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraintValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/validatorfactory/MySecondConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedConstraintValidatorFactoryResolver.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedConstraintValidatorFactoryResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedConstraintValidatorFactoryResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedMessageInterpolator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedMessageInterpolator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedMessageInterpolator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedTraversableResolver.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConfigurationDefinedTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserInformation.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserInformation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserInformation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConsistentUserValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConstraintValidatorFactorySpecifiedInValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConstraintValidatorFactorySpecifiedInValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/ConstraintValidatorFactorySpecifiedInValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CreditCard.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CreditCard.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CreditCard.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CustomConsistentUserValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CustomConsistentUserValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/CustomConsistentUserValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DefaultProviderSpecifiedInValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DefaultProviderSpecifiedInValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DefaultProviderSpecifiedInValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DuplicateConfigurationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DuplicateConfigurationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/DuplicateConfigurationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Error.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Error.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Error.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/InvalidXmlConfigurationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/InvalidXmlConfigurationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/InvalidXmlConfigurationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlNoDefaultConstructorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlNoDefaultConstructorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlNoDefaultConstructorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MessageInterpolatorSpecifiedInValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MissingClassNameOnBeanNodeTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MissingClassNameOnBeanNodeTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/MissingClassNameOnBeanNodeTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Optional.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Optional.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Optional.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OptionalValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OptionalValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OptionalValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Order.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OrderLine.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OrderLine.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/OrderLine.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TestGroup.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TestGroup.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TestGroup.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlNoDefaultConstructorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlNoDefaultConstructorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlNoDefaultConstructorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/TraversableResolverSpecifiedInValidationXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/UserType.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/UserType.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/UserType.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlConfigurationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlConfigurationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlConfigurationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedConstraintValidatorFactory.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedConstraintValidatorFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedConstraintValidatorFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedMessageInterpolator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedMessageInterpolator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedMessageInterpolator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedTraversableResolver.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/XmlDefinedTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfigurationViaXmlAndAnnotationsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfigurationViaXmlAndAnnotationsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfigurationViaXmlAndAnnotationsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfiguredBeanNotInClassPathTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfiguredBeanNotInClassPathTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConfiguredBeanNotInClassPathTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConstraintDeclarationTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConstraintDeclarationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ConstraintDeclarationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/DefaultSequenceDefinedInXmlTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/DefaultSequenceDefinedInXmlTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/DefaultSequenceDefinedInXmlTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MandatoryNameAttributeTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MandatoryNameAttributeTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MandatoryNameAttributeTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MissingMandatoryElementTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MissingMandatoryElementTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/MissingMandatoryElementTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Optional.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Optional.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Optional.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Package.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Package.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/Package.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/PrePosting.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/PrePosting.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/PrePosting.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ReservedElementNameTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ReservedElementNameTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ReservedElementNameTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ValidPackage.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ValidPackage.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/ValidPackage.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: ValidPackage.java 17427 2009-08-27 09:47:28Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ClassLevelOverridingTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ClassLevelOverridingTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ClassLevelOverridingTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Optional.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Optional.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Optional.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Package.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Package.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/Package.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/PrePosting.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/PrePosting.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/PrePosting.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ValidPackage.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ValidPackage.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/clazzlevel/ValidPackage.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/CreditCard.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/CreditCard.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/CreditCard.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/ExcludeFieldLevelAnnotationsDueToBeanDefaultsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/ExcludeFieldLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/ExcludeFieldLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/FieldLevelOverridingTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/FieldLevelOverridingTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/FieldLevelOverridingTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/IncludeFieldLevelAnnotationsDueToBeanDefaultsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/IncludeFieldLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/IncludeFieldLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/WrongFieldNameTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/WrongFieldNameTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/fieldlevel/WrongFieldNameTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/CreditCard.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/CreditCard.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/CreditCard.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: CreditCard.java 16794 2009-06-16 14:18:22Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/ExcludePropertyLevelAnnotationsDueToBeanDefaultsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/ExcludePropertyLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/ExcludePropertyLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/IncludePropertyLevelAnnotationsDueToBeanDefaultsTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/IncludePropertyLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/IncludePropertyLevelAnnotationsDueToBeanDefaultsTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/PropertyLevelOverridingTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/PropertyLevelOverridingTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/PropertyLevelOverridingTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/User.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/User.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/User.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: User.java 17380 2009-08-20 16:14:04Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/WrongPropertyNameTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/WrongPropertyNameTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdeclaration/propertylevel/WrongPropertyNameTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/DummyLengthValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/DummyLengthValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/DummyLengthValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Length.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Length.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Length.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/LengthValidator.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/LengthValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/LengthValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Name.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Name.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/Name.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/XmlConfiguredConstraintValidatorTest.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/XmlConfiguredConstraintValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/tests/xmlconfiguration/constraintdefinition/XmlConfiguredConstraintValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/StandaloneContainersImpl.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/StandaloneContainersImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/StandaloneContainersImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/TestUtil.java
===================================================================
--- beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/TestUtil.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ beanvalidation/tck/trunk/src/main/java/org/hibernate/jsr303/tck/util/TestUtil.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/bootstrapping.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/bootstrapping.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/bootstrapping.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/defineconstraints.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/defineconstraints.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/defineconstraints.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/introduction.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/introduction.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/introduction.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/usingvalidator.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/xmlconfiguration.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/xmlconfiguration.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/xmlconfiguration.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -3,10 +3,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidatorConfiguration.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidatorConfiguration.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/HibernateValidatorConfiguration.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator;
import javax.validation.Configuration;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/Length.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/NotEmpty.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertFalseValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertFalseValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertFalseValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertTrueValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertTrueValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/AssertTrueValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForNumber.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForNumber.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForNumber.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMaxValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForNumber.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForNumber.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForNumber.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DecimalMinValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumber.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumber.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumber.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/DigitsValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendar.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForDate.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForDate.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/FutureValidatorForDate.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/LengthValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/LengthValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/LengthValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumber.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumber.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumber.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MaxValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForNumber.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForNumber.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForNumber.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/MinValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NotNullValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NotNullValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NotNullValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NullValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NullValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/NullValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendar.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForDate.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForDate.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PastValidatorForDate.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PatternValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PatternValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/PatternValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArray.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArray.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArray.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfBoolean.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfBoolean.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfBoolean.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfByte.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfByte.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfByte.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfChar.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfChar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfChar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfDouble.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfDouble.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfDouble.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfFloat.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfFloat.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfFloat.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfInt.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfInt.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfInt.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfLong.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfLong.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfLong.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfPrimitives.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfPrimitives.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfPrimitives.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfShort.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfShort.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForArraysOfShort.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForCollection.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForCollection.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForCollection.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForMap.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForMap.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForMap.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForString.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForString.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/SizeValidatorForString.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/impl/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/constraints/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConfigurationImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConfigurationImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConfigurationImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintTree.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintTree.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintTree.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorContextImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorContextImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorContextImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorFactoryImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorFactoryImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintValidatorFactoryImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintViolationImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintViolationImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ConstraintViolationImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/GlobalExecutionContext.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/GlobalExecutionContext.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/GlobalExecutionContext.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/LocalExecutionContext.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/LocalExecutionContext.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/LocalExecutionContext.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/MessageInterpolatorContext.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/MessageInterpolatorContext.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/MessageInterpolatorContext.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine;
import javax.validation.metadata.ConstraintDescriptor;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/NodeImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/NodeImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/NodeImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/PathImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/PathImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/PathImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ResourceBundleMessageInterpolator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ResourceBundleMessageInterpolator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ResourceBundleMessageInterpolator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorContextImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorContextImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorContextImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine;
import javax.validation.ConstraintValidatorFactory;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorFactoryImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorFactoryImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorFactoryImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/ValidatorImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/Group.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/Group.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/Group.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChain.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChain.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChain.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChainGenerator.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChainGenerator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/GroupChainGenerator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/groups/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/DefaultTraversableResolver.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/DefaultTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/DefaultTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.resolver;
import java.lang.annotation.ElementType;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/JPATraversableResolver.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/JPATraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/JPATraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/SingleThreadCachedTraversableResolver.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/SingleThreadCachedTraversableResolver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/SingleThreadCachedTraversableResolver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/engine/resolver/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/AnnotationIgnores.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/AnnotationIgnores.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/AnnotationIgnores.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanDescriptorImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanDescriptorImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanDescriptorImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.metadata;
import java.util.Set;
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaData.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaData.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaData.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataCache.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataCache.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataCache.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/BeanMetaDataImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintDescriptorImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintDescriptorImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintDescriptorImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintHelper.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintHelper.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ConstraintHelper.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ElementDescriptorImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ElementDescriptorImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/ElementDescriptorImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/MetaConstraint.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/MetaConstraint.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/MetaConstraint.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/PropertyDescriptorImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/PropertyDescriptorImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/PropertyDescriptorImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/metadata/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsField.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsField.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsField.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsMethod.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsMethod.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ContainsMethod.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetAnnotationParameter.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetAnnotationParameter.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetAnnotationParameter.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetClassLoader.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetClassLoader.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetClassLoader.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetConstructor.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetConstructor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetConstructor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredField.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredField.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredField.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredFields.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredFields.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredFields.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredMethods.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredMethods.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetDeclaredMethods.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethod.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethod.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethod.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethodFromPropertyName.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethodFromPropertyName.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethodFromPropertyName.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethods.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethods.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/GetMethods.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/IdentitySet.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/IdentitySet.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/IdentitySet.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LazyValidatorFactory.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LazyValidatorFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LazyValidatorFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoadClass.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoadClass.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoadClass.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoggerFactory.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoggerFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/LoggerFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// :$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/NewInstance.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/NewInstance.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/NewInstance.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ReflectionHelper.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ReflectionHelper.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ReflectionHelper.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/SetAccessibility.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/SetAccessibility.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/SetAccessibility.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ValidatorTypeHelper.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ValidatorTypeHelper.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/ValidatorTypeHelper.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/Version.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/Version.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/Version.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationDescriptor.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationDescriptor.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationDescriptor.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationFactory.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationFactory.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationProxy.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationProxy.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/AnnotationProxy.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/annotationfactory/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/util/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationBootstrapParameters.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationBootstrapParameters.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationBootstrapParameters.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationXmlParser.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationXmlParser.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/ValidationXmlParser.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/XmlMappingParser.java
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/XmlMappingParser.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/XmlMappingParser.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/package.html
===================================================================
--- validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/package.html 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/main/java/org/hibernate/validator/xml/package.html 2009-09-29 19:28:33 UTC (rev 17580)
@@ -4,7 +4,7 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/ValidationMessages.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/ValidationMessages.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/ValidationMessages.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Customer.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Customer.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Customer.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Order.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/ValidationTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/ValidationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/bootstrap/ValidationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Cloneable.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Cloneable.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Cloneable.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: Positive.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/CloneableConstraintValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/CloneableConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/CloneableConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: PositiveConstraintValidator.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintValidatorContextTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintValidatorContextTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ConstraintValidatorContextTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Coordinate.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Coordinate.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Coordinate.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Interval.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Interval.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Interval.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Item.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Item.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Item.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Object.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Object.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Object.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: Positive.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ObjectConstraintValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ObjectConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ObjectConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: PositiveConstraintValidator.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/PostCodeList.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/PostCodeList.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/PostCodeList.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Serializable.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Serializable.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Serializable.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: Positive.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SerializableConstraintValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SerializableConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SerializableConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: PositiveConstraintValidator.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEnd.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEnd.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEnd.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEndImpl.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEndImpl.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/StartLessThanEndImpl.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SubType.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SubType.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SubType.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Suburb.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Suburb.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/Suburb.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperType.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperType.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperType.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id:$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArray.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArray.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArray.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: Positive.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArrayValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArrayValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/SuperTypeArrayValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id: PositiveConstraintValidator.java 17421 2009-08-26 12:25:39Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ValidatorResolutionTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ValidatorResolutionTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/ValidatorResolutionTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/CompositeConstraintTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/CompositeConstraintTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/CompositeConstraintTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/Person.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidName.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidName.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidName.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidNameSingleViolation.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidNameSingleViolation.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/composition/ValidNameSingleViolation.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertFalseValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertFalseValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertFalseValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertTrueValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertTrueValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/AssertTrueValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DateHolder.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DateHolder.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DateHolder.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumberTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumberTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForNumberTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForStringTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForStringTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/DigitsValidatorForStringTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendarTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendarTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForCalendarTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForDateTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForDateTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorForDateTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/FutureValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/LengthValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/LengthValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/LengthValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumberTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumberTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForNumberTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForStringTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForStringTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MaxValidatorForStringTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForNumberTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForNumberTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForNumberTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForStringTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForStringTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/MinValidatorForStringTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NotNullValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NotNullValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NotNullValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NullValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NullValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/NullValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendarTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendarTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForCalendarTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForDateTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForDateTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PastValidatorForDateTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PatternValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PatternValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/PatternValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/SizeValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/SizeValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/constraints/impl/SizeValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/PathImplTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/PathImplTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/PathImplTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/ValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/ValidatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/ValidatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Address.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Address.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Address.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.groups;
import javax.validation.GroupSequence;
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence1.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence1.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence1.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence2.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence2.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/CyclicGroupSequence2.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/First.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/First.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/First.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.groups;
/**
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainGeneratorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainGeneratorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainGeneratorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/GroupChainTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Last.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Last.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Last.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.groups;
/**
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Second.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Second.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/Second.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.groups;
/**
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceChecker.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceChecker.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceChecker.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 org.hibernate.validator.engine.groups;
import java.lang.annotation.Documented;
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/groups/ZipCodeCoherenceValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/MessageInterpolationTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/MessageInterpolationTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/MessageInterpolationTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/ResourceBundleMessageInterpolatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/ResourceBundleMessageInterpolatorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/messageinterpolation/ResourceBundleMessageInterpolatorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/CachedTraversableResolverTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/CachedTraversableResolverTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/CachedTraversableResolverTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Cloth.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Cloth.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Cloth.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Jacket.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Jacket.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Jacket.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Suit.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Suit.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Suit.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Trousers.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Trousers.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/engine/traversableresolver/Trousers.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ConstraintHelperTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ConstraintHelperTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ConstraintHelperTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Customer.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Customer.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Customer.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ElementDescriptorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ElementDescriptorTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/ElementDescriptorTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Engine.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Engine.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Engine.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Order.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Order.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Order.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Person.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/metadata/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/BoundariesConstraintValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/BoundariesConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/BoundariesConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/IdentitySetTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/IdentitySetTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/IdentitySetTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/Positive.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/Positive.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/Positive.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/PositiveConstraintValidator.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/PositiveConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/PositiveConstraintValidator.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ReflectionHelperTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ReflectionHelperTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ReflectionHelperTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/TestUtil.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/TestUtil.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/TestUtil.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ValidatorTypeTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ValidatorTypeTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/ValidatorTypeTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/annotationfactory/AnnotationFactoryTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/annotationfactory/AnnotationFactoryTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/util/annotationfactory/AnnotationFactoryTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Customer.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Customer.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Customer.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Person.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/XmlMappingTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/XmlMappingTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validator/xml/XmlMappingTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Car.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Car.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Car.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,6 +1,6 @@
/**
* JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/CarChecks.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/CarChecks.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/CarChecks.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Driver.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Driver.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Driver.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/DriverChecks.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/DriverChecks.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/DriverChecks.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/OrderedChecks.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/OrderedChecks.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/OrderedChecks.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Person.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Person.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/Person.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
-// $Id:$
+// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/RentalCar.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/RentalCar.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/main/java/org/hibernate/validator/quickstart/RentalCar.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,7 +1,7 @@
// $Id$
/*
* JBoss, Home of Professional Open Source
-* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/BootstrapTest.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/BootstrapTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/BootstrapTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,6 +1,6 @@
/**
* JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/CarTest.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/CarTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/CarTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,6 +1,6 @@
/**
* JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/GroupTest.java
===================================================================
--- validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/GroupTest.java 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-archetype/src/test/java/org/hibernate/validator/quickstart/GroupTest.java 2009-09-29 19:28:33 UTC (rev 17580)
@@ -1,6 +1,6 @@
/**
* JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/master.xml
===================================================================
--- validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/master.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/master.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -2,10 +2,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/checkconstraints.xml
===================================================================
--- validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/checkconstraints.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/checkconstraints.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -2,10 +2,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
Modified: validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/defineconstraints.xml
===================================================================
--- validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/defineconstraints.xml 2009-09-29 17:10:16 UTC (rev 17579)
+++ validator/trunk/hibernate-validator-legacy/src/main/docbook/en-US/modules/defineconstraints.xml 2009-09-29 19:28:33 UTC (rev 17580)
@@ -2,10 +2,10 @@
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2008, Red Hat, Inc. and/or its affiliates or third-party contributors as
~ indicated by the @author tags or express copyright attribution
~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ distributed under license by Red Hat, Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
15 years, 4 months
Hibernate SVN: r17579 - in beanvalidation/api/trunk/src/main/java/javax/validation: groups and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: epbernard
Date: 2009-09-29 13:10:16 -0400 (Tue, 29 Sep 2009)
New Revision: 17579
Modified:
beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java
beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java
beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java
beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java
Log:
Minor JavaDoc enhancements
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/Constraint.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -28,7 +28,7 @@
/**
* Link between a constraint annotation and its constraint validation implementations.
* <p/>
- * A given constraint annotation should be annotated by a @Constraint
+ * A given constraint annotation should be annotated by a <code>@Constraint</code>
* annotation which refers to its list of constraint validation implementations.
*
* @author Emmanuel Bernard
@@ -39,11 +39,12 @@
@Target({ ANNOTATION_TYPE })
@Retention(RUNTIME)
public @interface Constraint {
- /**
- * ConstraintValidator classes must reference distinct target types.
- * If two validators refer to the same type, an exception will occur.
- *
- * @return array of ConstraintValidator classes implementing the constraint
- */
- public Class<? extends ConstraintValidator<?,?>>[] validatedBy();
+ /**
+ * <code>ConstraintValidator</code> classes must reference distinct target types.
+ * If two <code>ConstraintValidator</code> refer to the same type,
+ * an exception will occur.
+ *
+ * @return array of ConstraintValidator classes implementing the constraint
+ */
+ public Class<? extends ConstraintValidator<?, ?>>[] validatedBy();
}
\ No newline at end of file
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidator.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -23,7 +23,11 @@
* Defines the logic to validate a given constraint A
* for a given object type T.
* Implementations must comply to the following restriction:
- * T must resolve to a non parameterized type
+ * <ul>
+ * <li>T must resolve to a non parameterized type</li>
+ * <li>or generic parameters of T must be unbounded
+ * wildcard types</li>
+ * </ul>
*
* @author Emmanuel Bernard
* @author Hardy Ferentschik
@@ -34,8 +38,8 @@
* The constraint annotation for a given constraint declaration
* is passed.
* <p/>
- * This method is guaranteed to be called before any of the other Constraint
- * implementation methods
+ * This method is guaranteed to be called before any use of this instance for
+ * validation.
*
* @param constraintAnnotation annotation instance for a given constraint declaration
*/
@@ -43,16 +47,16 @@
/**
* Implement the validation logic.
- * <code>value</code> state must not be altered.
+ * The state of <code>value</code> must not be altered.
*
* This method can be accessed concurrently, thread-safety must be ensured
* by the implementation.
*
* @param value object to validate
- * @param constraintValidatorContext context in which the constraint is evaluated
+ * @param context context in which the constraint is evaluated
*
* @return false if <code>value</code> does not pass the constraint
*/
- boolean isValid(T value, ConstraintValidatorContext constraintValidatorContext);
+ boolean isValid(T value, ConstraintValidatorContext context);
}
\ No newline at end of file
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorContext.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -27,9 +27,10 @@
*/
public interface ConstraintValidatorContext {
/**
- * Disable the default error message and default ConstraintViolation object generation.
- * Useful to set a different error message or generate a ConstraintViolation based on
- * a different property
+ * Disable the default error message and default <code>ConstraintViolation</code> object
+ * generation.
+ * Useful to set a different error message or generate a <code>ConstraintViolation</Code>
+ * based on a different property
*/
void disableDefaultError();
@@ -47,19 +48,19 @@
* the #addError method available in one of the
* interfaces of the fluent API.
* If another method is called after #addError() on
- * ErrorBuilder or any of its associated nested interfaces
- * an IllegalStateException is raised.
+ * <code>ErrorBuilder</code> or any of its associated nested interfaces
+ * an <code>IllegalStateException</code> is raised.
* <p/>
* If <code>isValid<code> returns <code>false</code>, a <code>ConstraintViolation</code>
- * object will be built per error including the default one unless
- * {@link #disableDefaultError()} has been called.
+ * object will be built per error including the default one (unless
+ * {@link #disableDefaultError()} has been called).
* <p/>
* <code>ConstraintViolation</code> objects generated from such a call
* contain the same contextual information (root bean, path and so on) unless
* the path has been overriden.
* <p/>
* To create a different error, a new error builder has to be retrieved from
- * ConstraintValidatorContext
+ * <code>ConstraintValidatorContext</code>
*
* Here are a few usage examples:
* <pre>
@@ -74,7 +75,7 @@
* .addSubNode( "street" )
* .addError();
*
- * //create new error in the "addresses["home"].city.name subnode of the default
+ * //create new error in the "addresses["home"].city.name" subnode of the default
* // path the constraint is located on
* context.buildErrorWithMessageTemplate( "this detail is wrong" )
* .addSubNode( "addresses" )
@@ -98,8 +99,8 @@
* the #addError method available in one of the
* interfaces of the fluent API.
* If another method is called after #addError() on
- * ErrorBuilder or any of its associated objects
- * an IllegalStateException is raised.
+ * <code>ErrorBuilder</code> or any of its associated objects
+ * an <code>IllegalStateException</code> is raised.
*
*/
interface ErrorBuilder {
@@ -116,11 +117,11 @@
/**
* Add the new error report to be generated if the
- * constraint validator mark the value as invalid.
- * Methods of this ErrorBuilder instance and its nested
- * objects returns IllegalStateException from now on.
+ * constraint validator marks the value as invalid.
+ * Methods of this <code>ErrorBuilder</code> instance and its nested
+ * objects returns <code>IllegalStateException</code> from now on.
*
- * @return ConstraintValidatorContext instance the ErrorBuilder comes from
+ * @return the ConstraintValidatorContext instance the ErrorBuilder comes from
*/
ConstraintValidatorContext addError();
@@ -143,10 +144,10 @@
/**
* Add the new error report to be generated if the
- * constraint validator mark the value as invalid.
- * Methods of the ErrorBuilder instance this object comes
+ * constraint validator marks the value as invalid.
+ * Methods of the <code>ErrorBuilder</code> instance this object comes
* from and the error builder nested
- * objects returns IllegalStateException after this call.
+ * objects returns <code>IllegalStateException</code> after this call.
*
* @return ConstraintValidatorContext instance the ErrorBuilder comes from
*/
@@ -160,7 +161,7 @@
interface NodeBuilderCustomizableContext {
/**
- * Mark the node as being in an Iterable or a Map
+ * Mark the node as being in an <code>Iterable</code> or a <code>Map</code>
*
* @return a builder representing iterable details
*/
@@ -180,9 +181,9 @@
/**
* Add the new error report to be generated if the
* constraint validator mark the value as invalid.
- * Methods of the ErrorBuilder instance this object comes
+ * Methods of the <code>ErrorBuilder</code> instance this object comes
* from and the error builder nested
- * objects returns IllegalStateException after this call.
+ * objects returns <code>IllegalStateException</code> after this call.
*
* @return ConstraintValidatorContext instance the ErrorBuilder comes from
*/
@@ -191,14 +192,14 @@
/**
* Represent refinement choices for a node which is
- * in an Iterator or Map.
+ * in an <code>Iterator<code> or <code>Map</code>.
* If the iterator is an indexed collection or a map,
* the index or the key should be set.
*/
interface NodeContextBuilder {
/**
- * Define the key the object is into the Map
+ * Define the key the object is into the <code>Map</code>
*
* @param key map key
* @return a builder representing the current node
@@ -206,7 +207,7 @@
NodeBuilderDefinedContext atKey(Object key);
/**
- * Define the index the object is into the List or array
+ * Define the index the object is into the <code>List</code> or array
*
* @param index index
* @return a builder representing the current node
@@ -227,9 +228,9 @@
/**
* Add the new error report to be generated if the
* constraint validator mark the value as invalid.
- * Methods of the ErrorBuilder instance this object comes
+ * Methods of the <code>ErrorBuilder</code> instance this object comes
* from and the error builder nested
- * objects returns IllegalStateException after this call.
+ * objects returns <code>IllegalStateException</code> after this call.
*
* @return ConstraintValidatorContext instance the ErrorBuilder comes from
*/
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/ConstraintValidatorFactory.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -18,7 +18,7 @@
package javax.validation;
/**
- * Instantiate a <code>ConstraintValidator</code> instance from its class.
+ * Instantiate a <code>ConstraintValidator</code> instance based off its class.
* The <code>ConstraintValidatorFactory</code> is <b>not</b> responsible
* for calling {@link ConstraintValidator#initialize(java.lang.annotation.Annotation)}.
*
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/OverridesAttribute.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -40,7 +40,7 @@
/**
* Name of the Constraint attribute overridden.
- * Defaults to the name of the attribute hosting OverridesAttribute.
+ * Defaults to the name of the attribute hosting <code>@OverridesAttribute</code>.
*
* @return name of constraint attribute overridden.
*/
@@ -60,7 +60,7 @@
/**
* Defines several @OverridesAttribute annotations on the same element
- * @see OverridesAttribute
+ * @see javax.validation.OverridesAttribute
*/
@Documented
@Target({ METHOD })
Modified: beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java
===================================================================
--- beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java 2009-09-29 16:34:58 UTC (rev 17578)
+++ beanvalidation/api/trunk/src/main/java/javax/validation/groups/Default.java 2009-09-29 17:10:16 UTC (rev 17579)
@@ -1,3 +1,20 @@
+// $Id$
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.validation.groups;
/**
15 years, 4 months
Hibernate SVN: r17578 - in beanvalidation/tck/trunk: src/main and 5 other directories.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-09-29 12:34:58 -0400 (Tue, 29 Sep 2009)
New Revision: 17578
Added:
beanvalidation/tck/trunk/src/main/docbook/
beanvalidation/tck/trunk/src/main/docbook/en-US/
beanvalidation/tck/trunk/src/main/docbook/en-US/Author_Group.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Info.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Preface.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/appeals-process.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/configuration.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-debugging.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-running.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/executing.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Author_Group.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Preface.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/configuration.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/executing.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/images/
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/images/in-container-execution.png
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/introduction.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/harness/master.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/images/
beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-emailable-report.png
beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-plugin-report.png
beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-suite-detail-report.png
beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-summary-report.png
beanvalidation/tck/trunk/src/main/docbook/en-US/installation.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/introduction.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/master.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/part-background.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/part-execution.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/part-test-harness.xml
beanvalidation/tck/trunk/src/main/docbook/en-US/reporting.xml
Modified:
beanvalidation/tck/trunk/
beanvalidation/tck/trunk/pom.xml
Log:
Initial import of TCK doc. Taken from JSR-299
Property changes on: beanvalidation/tck/trunk
___________________________________________________________________
Name: svn:ignore
+ target
Modified: beanvalidation/tck/trunk/pom.xml
===================================================================
--- beanvalidation/tck/trunk/pom.xml 2009-09-29 11:56:52 UTC (rev 17577)
+++ beanvalidation/tck/trunk/pom.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -73,7 +73,72 @@
</extension>
</extensions>
<plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.0</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-jdocbook-style</artifactId>
+ <version>2.0.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <sourceDirectory>${basedir}/src/main/docbook</sourceDirectory>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${basedir}/src/main/docbook/en-US/images</directory>
+ <directory>${basedir}/src/main/docbook/en-US/harness</directory>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/pdf.xsl</stylesheetResource>
+ <finalName>beanvalidation-tck.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl
+ </stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl
+ </stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ </options>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-doc</id>
+ <phase>site</phase>
+ <goals>
+ <goal>resources</goal>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-style-plugin</artifactId>
+ <version>2.0.0</version>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.2</version>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/Author_Group.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/Author_Group.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/Author_Group.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<authorgroup>
+ <author>
+ <firstname>Gavin</firstname>
+ <surname>King</surname>
+ <affiliation>
+ <jobtitle>JSR-299: Contexts and Dependency Injection (CDI) for Java EE
+ specification lead</jobtitle>
+ <orgname>Red Hat Inc.</orgname>
+ </affiliation>
+ </author>
+ <author>
+ <firstname>Pete</firstname>
+ <surname>Muir</surname>
+ <affiliation>
+ <jobtitle>CDI TCK lead</jobtitle>
+ <orgname>Red Hat Inc.</orgname>
+ </affiliation>
+ </author>
+ <author>
+ <firstname>Dan</firstname>
+ <surname>Allen</surname>
+ <affiliation>
+ <jobtitle>CDI TCK developer</jobtitle>
+ <orgname>Red Hat Inc.</orgname>
+ </affiliation>
+ </author>
+<!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</authorgroup>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Info.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Info.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<bookinfo>
+ <releaseinfo><literallayout>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.</literallayout></releaseinfo>
+
+ <title>Technology Compatibility Kit Reference Guide for JSR-303: Bean
+ Validation</title>
+
+ <subtitle>Specification Lead: Red Hat Inc.</subtitle>
+
+ <copyright>
+ <year>2009 </year>
+
+ <holder>Red Hat Middleware, LCC.</holder>
+ </copyright>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</bookinfo>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Preface.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Preface.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/Book_Preface.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<preface id="book-preface">
+ <title>Preface</title>
+
+ <para>This guide describes how to download, install, configure, and run the
+ Technology Compatibility Kit (TCK) used to verify the compatibility of an
+ implementation of the JSR-303: Bean Validation specification.</para>
+
+ <para>The Bean Validation TCK is built atop the JBoss Test Harness, a
+ portable and configurable automated test suite for authoring unit and
+ integration tests in a Java EE environment. The TCK 1.0.0 uses the JBoss
+ Test Harness version 1.0.0 to execute the test suite.</para>
+
+ <para>The Bean Validation TCK is provided under the <ulink
+ url="http://www.apache.org/licenses/LICENSE-2.0">Apache Public License
+ 2.0</ulink>.</para>
+
+ <section id="target-audience">
+ <title>Who Should Use This Book</title>
+
+ <para>This guide is for implementors of the Bean Validation specification
+ to assist in running the test suite that verifies the compatibility of
+ their implementation.</para>
+ </section>
+
+ <section id="before-reading">
+ <title>Before You Read This Book</title>
+
+ <para>The Bean Validation TCK is based on the Bean Validation
+ specification 1.0 (JSR-303). Information about the specification,
+ including links to the specification documents, can be found on the <ulink
+ url="http://jcp.org/en/jsr/detail?id=299">JSR-303 JCP page</ulink>.</para>
+
+ <para>Before running the tests in the Bean Validation TCK, read and become
+ familiar with the JBoss Test Harness Reference Guide (pending), which
+ describes how the test harness functions.</para>
+ </section>
+
+ <section id="book-organization">
+ <title>How This Book Is Organized</title>
+
+ <para>If you are running the Bean Validation TCK for the first time, read
+ <xref linkend="introduction" /> and <xref
+ linkend="test-harness-introduction" /> completely for the necessary
+ background information about the TCK and the JBoss Test Harness,
+ respectively. Once you have reviewed that material, perform the steps
+ outlined in the remaining chapters.</para>
+
+ <itemizedlist>
+ <listitem>
+ <para><xref linkend="introduction" /> gives an overview of the
+ principles that apply generally to all Technology Compatibility Kits
+ (TCKs), outlines the appeals process and describes the Bean Validation
+ TCK architecture and components. It also includes a broad overview of
+ how the TCK is executed and lists the platforms on which the TCK has
+ been tested and verified.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="appeals-process" /> explains the process to be
+ followed by an implementor should they wish to challenge any test in
+ the TCK.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="installation" /> explains where to obtain the
+ required software for the Bean Validation TCK and how to install it.
+ It covers both the primary TCK components as well as tools useful for
+ troubleshooting tests.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="configuration" /> details the configuration of
+ the JBoss Test Harness, how to create a TCK runner for the TCK test
+ suite and the mechanics of how an in-container test is
+ conducted.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="reporting" /> explains the test reports that are
+ generated by the TCK test suite and introduces the TCK audit report as
+ a tool for measuring the completeness of the TCK in testing the
+ JSR-303 specification and in understanding how testcases relate to the
+ specification.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="executing" /> documents how the TCK test suite is
+ executed. It covers both modes supported by the TCK, standalone and
+ in-container, and shows how to dump the generated test artifacts to
+ disk.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="eclipse-running" /> shows how to run individual
+ tests in Eclipse and advises the best way to setup your Eclipse
+ workspace for running the tests.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="eclipse-debugging" /> builds on <xref
+ linkend="eclipse-running" /> by detailing how to debug individual
+ tests in Eclipse.</para>
+ </listitem>
+
+ <listitem>
+ <para><xref linkend="test-harness" /> includes excerpts from the JBoss
+ Test Harness Reference Guide. How to configure the JBoss Test Harness
+ as it relates to the Bean Validation TCK is presented in <xref
+ linkend="configuration" />. However, to aid in debugging or
+ configuring the TCK in your environment, you may want to read in more
+ detail how to use the JBoss Test Harness.</para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</preface>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/appeals-process.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/appeals-process.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/appeals-process.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="appeals-process">
+ <title>Appeals Process</title>
+
+ <para>While the Bean Validation TCK is rigourous about enforcing an
+ implementation's conformance to the JSR-303 specification, it's reasonable
+ to assume that an implementor may discover new and/or better ways to
+ validate the assertions. This chapter covers the appeals process, defined by
+ the Specification Lead, Red Hat Middleware LLC., which allows implementors
+ of the JSR-303 specification to challenge one or more tests defined by the
+ Bean Validation TCK.</para>
+
+ <para>The appeals process identifies who can make challenges to the TCK,
+ what challenges to the TCK may be submitted, how these challenges are
+ submitted, how and by whom challenges are addressed and how accepted
+ challenges to the TCK are managed.</para>
+
+ <para>Following the recent adoption of transparency in the JCP, implementors
+ are encouraged to make their appeals public, which this process facilitates.
+ The JCP community should recognize that issue reports are a central aspect
+ of any good software and it's only natural to point out shortcomings and
+ strive to make improvements. Despite this good faith, not all implementors
+ will be comfortable with a public appeals process. Instructions about how to
+ make a private appeal are therefore provided.</para>
+
+ <section>
+ <title>Who can make challenges to the TCK?</title>
+
+ <para>Any implementor may submit an appeal to challenge one or more tests
+ in the Bean Validation TCK. In fact, members of the JSR-303 Expert Group
+ (EG) encourage this level of participation.</para>
+ </section>
+
+ <section>
+ <title>What challenges to the TCK may be submitted?</title>
+
+ <para>Any test case (e.g., <literal>@Artifact</literal> class,
+ <literal>@Test</literal> method), test case configuration (e.g.,
+ validation.xml), test entities, annotations and other resources may be
+ challenged by an appeal.</para>
+
+ <para>What is generally not challengable are the assertions made by the
+ specification. The specification document is controlled by a separate
+ process and challenges to it should be handled through the JSR-303 EG by
+ sending an e-mail to <ulink
+ url="mailto:jsr299-comments@jcp.org">jsr303-comments(a)jcp.org</ulink>.</para>
+ </section>
+
+ <section>
+ <title>How these challenges are submitted?</title>
+
+ <para>To submit a challenge, a new issue should be created in the <ulink
+ url="https://jira.jboss.org/jira/browse/WBTCK">HV project</ulink> of the
+ JBoss JIRA using the Issue Type: Bug. The appellant should complete the
+ Summary, Component (TCK Appeal), Environment and Description Field only.
+ Any communication regarding the issue should be pursed in the comments of
+ the filed issue for accurate record.</para>
+
+ <para>To submit an issue in the JBoss JIRA, you must have a (free)
+ JBoss.com member account. You can create a member account using the <ulink
+ url="http://www.jboss.org/index.html?op=checkage&module=user">on-line
+ registration</ulink>.</para>
+
+ <para>If you wish to make a private challenge, you should follow the above
+ procedure, setting the Security Level to Private. Only the issue reporter,
+ TCK Project Lead and designates will be able to view the issue.</para>
+ </section>
+
+ <section>
+ <title>How and by whom challenges are addressed?</title>
+
+ <para>The challenges will be addressed in a timely fashion by the Bean
+ Validation TCK Project Lead, as designated by Specification Lead, Red Hat
+ Middleware LLC. or his/her designate. The appellant can also monitor the
+ process by following the issue report filed in the <ulink
+ url="https://jira.jboss.org/jira/browse/WBTCK">HV project</ulink> of the
+ JBoss JIRA.</para>
+
+ <para>The current TCK Project Lead is listed on the <ulink type=""
+ url="https://jira.jboss.org/jira/browse/WBTCK" userlevel="">HV Project
+ Summary Page</ulink> on the JBoss JIRA.</para>
+ </section>
+
+ <section>
+ <title>How accepted challenges to the TCK are managed?</title>
+
+ <para>Accepted challenges will be acknowledged via the filed issue's
+ comment section. Communication between the Bean Validation TCK Project
+ Lead and the appellant will take place via the issue comments. The issue's
+ status will be set to "Resolved" when the TCK project lead believes the
+ issue to be resolved. The appellant should, within 30 days, either close
+ the issue if they agree, or reopen the issue if they do not believe the
+ issue to be resolved.</para>
+
+ <para>Resolved issue not addressed for 30 days will be closed by the TCK
+ Project Lead. If the TCK Project Lead and appellant are unable to agree on
+ the issue resolution, it will be referred to the JSR-303 specification
+ lead or his/her designate.</para>
+ </section>
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/configuration.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/configuration.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/configuration.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="configuration">
+ <title>Configuration</title>
+
+ <para>This chapter lays out how to configure the TCK Harness by specifying
+ the SPI implementation classes, defining the target container connection
+ information, and various other switches. You then learn how to setup a TCK
+ runner project that executes the the TCK test suite, putting these settings
+ into practice. Finally, a detailed account of how the JBoss Test Harness
+ negotiates the execution of the tests in the container is given.</para>
+
+ <para>This chapter does not discuss in detail how to use the TCK in
+ standalone mode. The JBoss Test Harness guide provides more on running in
+ standalone mode.</para>
+
+ <section id="tck-harness-properties">
+ <title>TCK Harness Properties</title>
+
+ <para>The JBoss Test Harness allows the test suite to be launched in a
+ pluggable fashion. In order to execute the TCK, the JBoss Test Harness
+ must be configured by specifying implementations of the test launcher and
+ container APIs.</para>
+
+ <para>System properties and/or the resource
+ <code>META-INF/jboss-test-harness.properties</code>, a Java properties
+ file, are used to configure the JBoss Test Harness. You can read more
+ about configuring the JBoss Test Harness in <xref
+ linkend="test-harness-properties" />.</para>
+
+ <para>You should set the following properties:</para>
+
+ <table frame="all">
+ <title>Required JBoss Test Harness Configuration Properties</title>
+
+ <tgroup cols="2">
+ <colspec colname="property" colnum="1" colwidth="5*" />
+
+ <colspec colname="description" colnum="2" colwidth="2*" />
+
+ <thead>
+ <row>
+ <entry>Property = Required/Example Value</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry><literal>org.jboss.testharness.libraryDirectory=/path/to/extra/libraries
+ </literal></entry>
+
+ <entry>Directory containing extra JARs you want placed in artifact
+ library directory such as the porting package
+ implementation.</entry>
+ </row>
+
+ <row>
+ <entry><literal>org.jboss.testharness.standalone=false</literal></entry>
+
+ <entry>You must run the tests in-container to pass the TCK</entry>
+ </row>
+
+ <row>
+ <entry><literal>org.jboss.testharness.runIntegrationTests=true
+ </literal></entry>
+
+ <entry>You must run the integration tests to pass the TCK</entry>
+ </row>
+
+ <row>
+ <entry><literal>org.jboss.testharness.spi.Containers=com.acme.AcmeContainer
+ </literal></entry>
+
+ <entry>The container implementation for deploying and executing
+ in-container tests. See <xref
+ linkend="deployment-api-contributions" /></entry>
+ </row>
+
+ <row>
+ <entry><literal>org.jboss.testharness.api.TestLauncher=org.jboss.testharness.impl.runner.servlet.ServletTestLauncher
+ </literal></entry>
+
+ <entry>You should use the <literal>ServletTestLauncher</literal>
+ for Java EE 6 and Java EE 6 Web Profile.</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para>To run the full TCK you must additionally implement
+ <literal>org.jboss.testharness.spi.Containers</literal>, which handles
+ deploying the test artifact to the container. An implementations of this
+ API is already available for JBoss AS 5.1. Therefore, you only need to
+ implement this part of the porting package if you wish to use another
+ container.</para>
+
+ <note id="deployment-api-contributions">
+ <para>Red Hat Middleware LLC encourages CDI implementators to contribute
+ JBoss Test Harness Deployment API implementations for other containers
+ under the ASL license. Please contact the Bean Validation TCK
+ lead.</para>
+ </note>
+ </section>
+
+ <section>
+ <title>Configuring TestNG to execute the TCK</title>
+
+ <para>The JBoss Test Harness is built atop TestNG, and it's TestNG that is
+ responsible for selecting the tests to execute, the order of execution,
+ and reporting the results. Detailed TestNG documentation can be found at
+ <ulink
+ url="http://testng.org/doc/documentation-main.html">testng.org</ulink>.</para>
+
+ <para>The <literal>tck-tests.xml</literal> artifact provided in the TCK
+ distribution must be run by TestNG 5.9 (described by the TestNG
+ documenation as "with a <literal>testng.xml</literal> file") unmodified
+ for an implementation to pass the TCK. This file also allows tests to be
+ excluded from a run:</para>
+
+ <programlisting><suite name="JSR-299 TCK" verbose="2">
+ <test name="JSR-299 TCK">
+ ...
+ <classes>
+ <class name="org.jboss.jsr299.tck.tests.context.application.ApplicationContextTest">
+ <methods>
+ <exclude name="testApplicationScopeActiveDuringServiceMethod"/>
+ </methods>
+ </class>
+ </classes>
+ ...
+ </test>
+</suite></programlisting>
+
+ <para>TestNG provides extensive reporting information. Depending on the
+ build tool or IDE you use, the reporting will take a different format.
+ Please consult the TestNG documentation and the tool documentation for
+ more information.</para>
+ </section>
+
+ <section>
+ <title>Configuring your build environment to execute the TCK</title>
+
+ <para>It's beyond the scope of this guide to describe in how to set up
+ your build environment to run the TCK. The JBoss Test Harness guide
+ describes how Web Beans uses Maven 2 to execute the Bean Validation TCK.
+ See <xref linkend="test-suite-runner" />. The TestNG documentation
+ provides extensive information on launching TestNG using the Java, Ant,
+ Eclipse or IntellJ IDEA.</para>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-debugging.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-debugging.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-debugging.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<chapter id="eclipse-debugging">
+ <title>Debugging Tests in Eclipse</title>
+ <para>
+ This chapter explains how to debug standalone and integration tests from
+ the TCK test suite in Eclipse. You should be able to use the lessons
+ learned here to debug tests in an alternate IDE as well.
+ </para>
+ <section>
+ <title>Debugging a standalone test</title>
+ <para>
+ There is almost no difference in how you debug a standalone test
+ from how you run it. With the test class open in the Eclipse editor,
+ simply right click in the editor view and select Debug As > TestNG
+ Test. Eclipse will stop at any breakpoints you set just like it would
+ with any other local debug process.
+ </para>
+ <para>
+ If you plan to step into a class in a Web Beans implementation (or any
+ other dependent library), you must ensure that the source is properly
+ associated with the library. Below are the steps to follow to associate
+ the source of Web Beans with the TestNG debug configuration:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Select the Run > Debug Configurations... menu from the main
+ menubar
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the name of the test class in the TestNG category
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the Source tab
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Add... button on the right
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select Java Project
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Check the project the contains the class you want to debug
+ (e.g., webbeans-core)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click OK on the Project Selection window
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click Close on the Debug Configurations window
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ You'll have to complete those steps for any test class you are
+ debugging, though you only have to do it once (the debug configuration
+ hangs around indefinitely).
+ </para>
+ <para>
+ Again, running a test in standalone isn't enough to pass the TCK and
+ cannot be used to run or debug an integration test. Let's look at how
+ to debug a test running in the context of the container.
+ </para>
+ </section>
+ <section>
+ <title>Debugging an integration test</title>
+ <para>
+ In order to debug an integration test, or any test run using in-container
+ mode, the test must be configured to run in-container, as described in
+ <xref linkend="eclipse-in-container" />,
+ and you must attach the IDE debugger to the container. That puts the
+ debugger on both sides of the fence, so to speak.
+ </para>
+ <para>
+ Since setting up a test to run in-container has already been
+ covered, we'll look at how to attach the IDE debugger to the container,
+ and then move on launching the test in debug mode.
+ </para>
+ <section>
+ <title>Attaching the IDE debugger to the container</title>
+ <para>
+ There are two ways to attach the IDE debugger to the container.
+ You can either start the container in debug mode from within the
+ IDE, or you can attach the debugger over a socket connection to a
+ standalone container running with JPDA enabled.
+ </para>
+ <para>
+ The Eclipse Server Tools, a subproject of the Eclipse Web Tools
+ Project (WTP), has support for launching most major application
+ servers, including JBoss AS 5. However, if you are using JBoss AS,
+ you should consider using JBoss Tools instead, which offers tighter
+ integration with JBoss technologies. See either the
+ <ulink url="http://www.eclipse.org/webtools/server/server.php">Server Tools documentation</ulink>
+ or the
+ <ulink url="http://docs.jboss.org/tools/3.0.1.GA/en/as/html/index.html">JBoss Tools documentation</ulink>
+ for how to setup a container and start it in debug mode.
+ </para>
+ <para>
+ See
+ <ulink
+ url="http://maverikpro.wordpress.com/2007/11/26/remote-debug-a-web-application...">this blog entry</ulink>
+ to learn how to start JBoss AS with JPDA enabled and how to get the
+ Eclipse debugger to connect to the remote process.
+ </para>
+ </section>
+ <section>
+ <title>Launching the test in the debugger</title>
+ <para>
+ Once Eclipse is debugging the container, you can set a breakpoint in
+ the test and debug it just like a standalone test. Let's give it a
+ try.
+ </para>
+ <para>
+ Open a test annotated with <literal>@IntegrationTest</literal> in
+ the Eclipse editor, right click in the editor view, and select Debug
+ As > TestNG Test. This time when the IDE hits the breakpoint, it
+ halts the JVM thread of the container rather than the thread that
+ launched the test.
+ </para>
+ <para>
+ Remember that if you need to debug into dependent libraries, the
+ source code for those libraries will need to be registered with the
+ TestNG debug configuration as described in the first section in this
+ chapter.
+ </para>
+ </section>
+ </section>
+<!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-running.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-running.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/eclipse-running.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,447 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<chapter id="eclipse-running">
+ <title>Running Tests in Eclipse</title>
+ <para>
+ This chapter explains how to run individual tests using the Eclipse
+ TestNG plugin. It covers running non-integration tests in standalone mode
+ and integration tests (as well as non-integration tests) in in-container
+ mode. You should be able to use the lessons learned here to debug tests in
+ an alternate IDE as well.
+ </para>
+ <section>
+ <title>Leveraging Eclipse's plugin ecosystem</title>
+ <para>
+ Using an existing test harness (TestNG) allows the tests to be executed
+ and debugged in an Integrated Development Environment (IDE) using
+ available plugins. Using an IDE is also the easiest way to execute a
+ test class in isolation.
+
+ </para>
+ <para>
+ The TCK can be executed in any IDE for which there is a TestNG plugin
+ available. Running a test from the CDI TCK test suite using the Eclipse
+ TestNG plugin is almost as simple as running any other TestNG test. You
+ can also use the plugin to debug a test, which is described in the next
+ chapter.
+ </para>
+ <para>
+ Before running a test from the TCK test suite in Eclipse, you must have
+ the Eclipse <ulink url="http://testng.org">TestNG plugin</ulink> and
+ either the m2eclipse plugin or an Eclipse project generated use the
+ Maven 2 Eclipse plugin (<literal>maven-eclipse-plugin</literal>). Refer
+ to <xref linkend="eclipse-plugins" /> for more information on these
+ plugins.
+ </para>
+
+ <para>
+ With the m2eclipse plugin installed, Eclipse should recognize the
+ CDI TCK projects as valid Eclipse projects (or any Web Beans project
+ for that matter). Import them into the Eclipse workspace at this time.
+ You should also import the Web Beans projects if you want to debug into
+ that code, which is covered later.
+ </para>
+ <tip>
+ <para>
+ If you choose to use the Maven 2 Eclipse plugin
+ (<literal>maven-eclipse-plugin</literal>), you should execute the
+ plugin in both the tck and webbeans projects:
+ </para>
+ <programlisting><![CDATA[cd tck
+mvn clean eclipse:clean eclipse:eclipse -DdownloadSources -DdownloadJavadocs
+cd ../webbeans
+mvn clean eclipse:clean eclipse:eclipse -DdownloadSources -DdownloadJavadocs]]></programlisting>
+ </tip>
+ </section>
+ <section>
+ <title>Readying the Eclipse workspace</title>
+ <para>
+ When setting up your Ecilpse workspace, we recommended creating three
+ workings sets:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ <emphasis role="bold">Web Beans</emphasis> - Groups the CDI API
+ and the CDI RI (i.e., Web Beans) projects
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis role="bold">CDI TCK</emphasis> - Groups the CDI TCK
+ API and the test suite projects
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis role="bold">Web Beans JBoss TCK Runner</emphasis> -
+ Groups the porting package implementation and TCK runner projects
+ that are configured to certify Web Beans deployed on JBoss AS 5.1
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ The dependencies between the projects will either be established
+ automatically by the m2eclipse plugin, based on the dependency
+ information in the pom.xml files, or as generated by the <literal>mvn
+ eclipse:eclipse</literal> command.
+ </para>
+ <para>
+ Your workspace should appear as follows:
+ </para>
+ <programlisting><![CDATA[Web Beans
+ jsr299-api
+ webbeans-api
+ webbeans-core
+ webbeans-core-test
+ webbeans-logging
+ webbeans-parent
+ webbeans-spi
+ webbeans-version-matrix
+CDI TCK
+ jsr299-tck-api
+ jsr299-tck-impl
+ jsr299-tck-parent
+Web Beans JBoss TCK Runner
+ webbeans-jboss-tck-runner
+ webbeans-porting-package]]></programlisting>
+ <para>
+ The tests in the TCK test suite are located in the jsr299-tck-impl
+ project. You'll be working within this project in Eclipse when you are
+ developing tests. However, as you learned earlier, there are no references
+ to a CDI implementation in the TCK. So how can you execute an
+ individual test in Eclipse? The secret is that you need to establish a
+ link in Eclipse (not in Maven) between the jsr299-tck-impl project and
+ your TCK runner project, which in this case is
+ webbeans-jboss-tck-runner (the project in the jboss-tck-runner
+ directory).
+ </para>
+ <para>
+ Here are the steps to establish the link:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Right click on the jsr299-tck-impl project
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select Build Path > Configure Build Path...
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click on the Projects tab
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Add... button on the right
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Check the TCK runner project (e.g., webbeans-jboss-tck-runner)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Required Project Selection dialog
+ window
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Java Build Path window
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ Of course, the webbeans-jboss-tck-runner also depends on the
+ jsr299-tck-impl at runtime (so it can actually find the tests to
+ execute). But Eclipse doesn't distinguish between build-time and
+ runtime dependencies. As a result, we've created a circular dependency
+ between the projects. In all likelihood, Eclipse will struggle (if not
+ fail) to compile one or more projects. How can we break this cycle?
+ </para>
+ <para>
+ As it turns out, the TCK runner doesn't need to access the tests to
+ build. It only needs its classes, configurations and other dependenices
+ at runtime (when the TestNG plugin executes). Therefore, we can remove
+ the TCK runner's dependence on the jsr299-tck-impl project by following
+ these steps:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Right click on the webbeans-jboss-tck-runner project
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select Build Path > Configure Build Path...
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click on the Projects tab
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the TCK tests project (jsr299-tck-impl)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Remove button on the right
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Java Build Path window
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ You are now ready to execute an individual test class (or artifact).
+ Let's start with a test artifact capable of running in standalone mode.
+ </para>
+ </section>
+ <section id="eclipse-standalone">
+ <title>Running a test in standalone mode</title>
+ <para>
+ A standalone test artifact is a class which extends
+ <literal>AbstractJSR299Test</literal>, is annotated with
+ <literal>@Artifact</literal>, but is <emphasis
+ role="italic">not</emphasis> annotated with
+ <literal>@IntegrationTest</literal>. Select a standalone test artifact
+ and open it in the Eclipse editor. Now right click in the editor view
+ and select Run As > TestNG Test. The TestNG view should pop out and
+ you should see all the tests in that artifact pass (if all goes well).
+ </para>
+ <note>
+ <para>
+ If the TCK complains that there is a property missing, close all
+ the projects, open them again, and rebuild. The m2eclipse plugin can
+ be finicky getting everything built correctly the first time.
+ </para>
+ </note>
+ <para>
+ So far you have executed a test in standalone mode. That's not
+ sufficient to pass the TCK. The test must be executed using
+ in-container mode. Using in-container mode is also the only way to
+ execute a test annotated with <literal>@IntegrationTest</literal>
+ (that's what the annotation means) as it requires container resources.
+ </para>
+ <para>
+ Let's see what has to be done to execute an integration test. This
+ will result in the artifact being deployed to the container, which is
+ JBoss AS 5.1 if you are using the JBoss TCK runner.
+ </para>
+ </section>
+ <section id="eclipse-in-container">
+ <title>Running integration tests</title>
+ <para>
+ As you have learned, the JBoss test harness determines how to behave
+ based on the values of numerous system properties or properties defined
+ in META-INF/jboss-test-harness.properties classpath resources. If the
+ property named
+ <literal>org.jboss.testharness.standalone</literal>
+ is not defined, the harness assumes that the test is to be run in
+ standalone mode. In order to run the tests in the container, you need
+ to add a properties file to the classpath that sets the standalone
+ property to false and provides values for other properties required to
+ run an in-container test.
+ </para>
+ <para>
+ The JBoss TCK runner project conveniently provides the properties file
+ src/test/debug-resources/META-INF/jboss-test-harness.properties that
+ contains all of the necessary properties for in-container testing in
+ Eclipse. Assuming you followed the directory structure recommended in
+ <xref linkend="tck-environment"/>, you are good to go. Otherwise, you
+ may have to tune the
+ <literal>org.jboss.testharness.container.extraConfigurationDir</literal> and
+ <literal>org.jboss.testharness.libraryDirectory</literal> properties to
+ point to the relative location of the related projects. The properties
+ should be defined as follows:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <literal>org.jboss.testharness.container.extraConfigurationDir
+ </literal>
+ - the relative path from the jboss-tck-impl project to a
+ directory that contains a build.properties or
+ local.build.properties file defining the location of a JBoss AS
+ 5.1 installation in the
+ <literal>jboss.home</literal>
+ property
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>org.jboss.testharness.libraryDirectory</literal>
+ - the relative path from the jboss-tck-impl project to the
+ target/dependency/lib directory in the TCK runner project.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ The other properties in that file are defined as follows:
+ </para>
+ <programlisting>org.jboss.testharness.standalone=false
+orjboss.testharness.container.forceRestart=false
+orjboss.testharness.runIntegrationTests=true</programlisting>
+ <para>
+ You're now ready to execute an integration test. Select an integration
+ test (a class that extends <literal>AbstractJSR299Test</literal> and is
+ annotated with both <literal>@Artifact</literal> and
+ <literal>@IntegrationTest</literal>) and open it in your Eclipse
+ editor. Follow these steps to execute the class with the TestNG plugin:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Right click in the editor view and select Run As > TestNG Test
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Observe the test fail because of missing dependencies
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the Run > Run Configurations... menu from the main
+ menubar
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the name of the test class under the TestNG category
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the Classpath tab
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select User Entries in the tree
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Advanced... button on the right
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select Add Folders and click the OK button
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the webbeans-jboss-tck-runner/src/test/debug-resources
+ folder
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Folder Selection dialog window
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click on the webbeans-jboss-tck-runner entry
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Move the webbeans-jboss-tck-runner to the first entry using
+ the Up button
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Run button on the Run Configurations dialog window
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ When you run the test this time, it should pass. If you get a
+ failure that the container (e.g., JBoss AS 5.1) must be run with
+ assertions enabled, you need to stop the container and start it with
+ the -ea flag (or just leave it stopped and the test will start it
+ appropriately).
+ </para>
+ <para>
+ You can simply right click and select Run As > TestNG Test for
+ all subsequent runs for the reason cited earlier, the run configuration
+ for a class is retained indefinitely.
+ </para>
+ <para>
+ Alternatively, you can configure TestNG to execute all tests
+ in-container by default by adding the properties file in the
+ debug-resources folder to the project's classpath as follows:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Right click on the jsr299-tck-impl project
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Select Build Path > Configure Build Path...
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click on the Libraries tab
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the Add Class Folder... button on the right
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Check the webbeans-jboss-tck-runner/src/test/debug-resources
+ folder
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Class Folder Selection dialog
+ window
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Click the OK button on the Java Build Path window
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ Now you don't have to do any special configuration per test class.
+ </para>
+ <para>
+ You can stop the individual tests from running in-container by
+ reversing the steps above to remove the debug-resources folder from the
+ Eclipse classpath.
+ </para>
+ <para>
+ You have now mastered running the CDI TCK against Web Beans using
+ both Maven 2 and within Eclipse. Now you're likely interested in how to
+ debug a test so that you can efficiently investigate test failures.
+ </para>
+ </section>
+<!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/executing.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/executing.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/executing.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="executing">
+ <title>Executing the Test Suite</title>
+
+ <para>This chapter explains how to run the TCK on Hibernate Validator as
+ well as your own implementation. The Bean Validation TCK uses the Maven 2
+ TestNG plugin and the JBoss Test Harness to execute the test suite. Learning
+ to execute the test suite from Maven 2 is prerequisite knowlege for running
+ the tests in an IDE, such as Eclipse.</para>
+
+ <section>
+ <title>The Test Suite Runner</title>
+
+ <para>The test suite is executed by the Maven 2 TestNG plugin during the
+ test phase of the Maven 2 life cycle. The execution happens within a TCK
+ runner project (as opposed to the TCK project itself). Hibernate Validator
+ includes a TCK runner project that executes the Bean Validation TCK on
+ Hibernate Validator running inside JBoss AS 5.1. To execute the Bean
+ Validation TCK on your own Bean Validation implementation, you could
+ modify the TCK runner project included with Hibernate Validator to use
+ your Bean Validation implementation as described in <xref
+ linkend="configuration" />.</para>
+ </section>
+
+ <section>
+ <title>Running the Tests In Standalone Mode</title>
+
+ <para>To execute the TCK test suite against Web Beans, first switch to the
+ jboss-tck-runner directory in the extracted Web Beans distribution:</para>
+
+ <programlisting>cd ri/hibernate-validator-tck-runner</programlisting>
+
+ <note>
+ <para>These instructions assume you have extracted the CDI-related
+ software according to the recommendation given in <xref
+ linkend="tck-environment" />.</para>
+ </note>
+
+ <para>Then execute the Maven 2 life cycle through the test phase:</para>
+
+ <programlisting>mvn test</programlisting>
+
+ <para>Without any command-line flags, the test suite is run in standalone
+ mode, which means that any test class with the
+ <literal>@org.jboss.testharness.impl.packaging.IntegrationTest </literal>
+ annotation is skipped. This mode uses the
+ <literal>StandaloneContainers</literal> SPI to invoke the test artifact
+ within a mock Java EE life cycle and capture the results of the test.
+ However, passing the suite in this mode is not sufficient to pass the TCK
+ as a whole. The suite must be passed while executing using the
+ in-container mode.</para>
+ </section>
+
+ <section>
+ <title>Running the Tests In the Container</title>
+
+ <para>To execute the test suite using in-container mode with the JBoss TCK
+ runner, you first have to setup JBoss AS as described in the <xref
+ linkend="tck-in-jboss-as" /> callout.</para>
+
+ <para>Then, execute the TCK runner with Maven 2 as follows:</para>
+
+ <programlisting>mvn test -Dincontainer</programlisting>
+
+ <para>The presence of the <literal>incontainer</literal> property
+ activates a Maven 2 profile that assigns the
+ <literal>org.jboss.testharness.standalone</literal> system property to
+ <literal>false</literal> and the
+ <literal>org.jboss.testharness.runIntegrationTests</literal> system
+ property to <literal>true</literal>, hence activating the in-container
+ test mode. This time, all the test artifacts in the test suite are
+ executed.</para>
+
+ <para>The in-container profile will also start and stop the application
+ server automatically, a feature which the profile activates by setting the
+ <literal>org.jboss.testharness.container.forceRestart</literal> to
+ <literal>true</literal>.</para>
+
+ <para>The in-container mode uses the <literal>Containers</literal> SPI to
+ deploy the test artifact to the container and execute the test in a true
+ Java EE life cycle. The JBoss TCK runner has a dependency on the library
+ that provides an implementation of this interface for JBoss AS 5.1.</para>
+
+ <para>Since in-container tests are executed in a remote JVM, the results
+ of the test must be communicated back to the runner over a
+ container-supported protocol. The JBoss Test Harness provides
+ servlet-based communication over HTTP as described in <xref
+ linkend="incontainer-communication" />.</para>
+ </section>
+
+ <section>
+ <title>Dumping the Test Artifacts</title>
+
+ <para>As you have learned, when the test suite is executing using
+ in-container mode, each test class is packaged as a deployable artifact
+ and deployed to the container. The test is then executed within the
+ context of the deployed application. This leaves room for errors in
+ packaging. When investigating a test failure, you may find it helpful to
+ inspect the artifact after it's generated. The TCK can accommodate this
+ type of inspection by "dumping" the generated artifact to disk.</para>
+
+ <para>The feature just described is activated in the jboss-tck-runner
+ project by appending the <literal>dumpArtifacts</literal> command line
+ property to the end of the command that invokes the Maven 2 test
+ phase.</para>
+
+ <programlisting>mvn test-compile -DdumpArtifacts</programlisting>
+
+ <para>The directory where the artifacts get written is configured using
+ the <literal>org.jboss.testharness.outputDirectory</literal> property. The
+ <literal>dumpArtifacts</literal> profile in the jboss-tck-runner project
+ sets this value to the relative directory path
+ <literal>target/jsr303-artifacts</literal>.</para>
+
+ <para>You can read more about this feature in <xref
+ linkend="dumping-test-artifacts" />.</para>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Author_Group.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Author_Group.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Author_Group.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+
+
+<authorgroup>
+ <author>
+ <firstname>Pete</firstname>
+ <surname>Muir</surname>
+ <affiliation>
+ <jobtitle>JBoss Test Harness lead</jobtitle>
+ <orgname>Red Hat Middleware LLC</orgname>
+ </affiliation>
+ </author>
+ <author>
+ <firstname>Dan</firstname>
+ <surname>Allen</surname>
+ <affiliation>
+ <jobtitle>JBoss Test Harness developer</jobtitle>
+ <orgname>Red Hat Middleware LLC</orgname>
+ </affiliation>
+ </author>
+</authorgroup>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Info.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<bookinfo>
+ <copyright>
+ <year>2009</year>
+ <holder>
+ Red Hat Middleware LLC, and individual contributors listed as
+ authors.
+ </holder>
+ </copyright>
+
+ <title>JBoss Test Harness Refernce Guide</title>
+ <subtitle></subtitle>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Author_Group.xml" />
+</bookinfo>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Preface.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Preface.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/Book_Preface.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<preface id="book-preface">
+ <title>Preface</title>
+
+ <section id="book-organization">
+
+ <title>How This Book Is Organized</title>
+
+ <para>
+ Chapter 1 provides an introduction and explains the motiviations for
+ and goals of the test harness.
+ </para>
+ </section>
+</preface>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/configuration.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/configuration.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/configuration.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,224 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<chapter id="test-harness-configuration">
+ <title>Configuration</title>
+ <para>
+ This chapter lays out how to configure the JBoss Test Harness by
+ specifying the API implementation classes, defining the target container
+ connection information, and various other switches. Finally, a detailed
+ account of how the JBoss Test Harness negotiates the execution of the
+ tests in the container is given.
+ </para>
+ <section id="test-harness-properties">
+ <title>JBoss Test Harness Properties</title>
+ <para>
+ The JBoss Test Harness allows the test suite to be launched in a
+ pluggable fashion. In order to execute a test suite, the JBoss Test
+ Harness must be configured by specifying implementations of the test
+ launcher and container APIs.
+ </para>
+ <para>
+ System properties and/or the resource
+ <code>META-INF/jboss-test-harness.properties</code>,
+ a Java properties file, are used to configure the JBoss Test Harness.
+ The bootstrap configuration builder looks to the property
+ <literal>org.jboss.testharness.api.ConfigurationBuilder</literal>,
+ the first property listed in table 3.1, for the fully qualified class
+ name (FQCN) of a concrete configuration builder implementation to get
+ started. This implementation loads the remaining configuration settings
+ and produces a JBoss Test Harness configuration.
+ </para>
+ <para>
+ For you convenience, the default configuration builder implementation
+ <literal>org.jboss.testharness.impl.PropertiesBasedConfigurationBuilder
+ </literal> is provided, which collates all the JBoss Test Harness
+ configuration settings from system and Java properties. It does so by
+ aggregating the system properties with the properties defined in the
+ META-INF/jboss-test-harness.properties resource in any classpath entry
+ under a single properties map, allowing you to partition the
+ configuration settings as needed.
+ </para>
+ <para>
+ A complete list of configuration properties for the JBoss Test
+ Harness
+ has been itemized in
+ <xref linkend="test-harness-properties-list" />,
+ accompanied by the default value (if any) and a description for each
+ property.
+ </para>
+ <table frame="all" id="test-harness-properties-list" title="Test Harness Configuration Properties">
+ <title>JBoss Test Harness Configuration Properties</title>
+ <tgroup cols="2">
+ <colspec colnum="1" colname="property" colwidth="5*" />
+ <colspec colnum="2" colname="description" colwidth="2*" />
+ <thead>
+ <row>
+ <entry>Property = Default Value</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.api.ConfigurationBuilder=
+ </literal>
+ <literal>org.jboss.testharness.impl.PropertiesBasedConfigurationBuilder
+ </literal>
+ </entry>
+ <entry>
+ The configuration bootstrap class for the JBoss Test
+ Harness.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.testPackage=</literal>
+ </entry>
+ <entry>
+ The top-level Java package containing classes to be
+ tested. Used to determine which artifacts to dump to disk
+ only; not used during running of a suite.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.libraryDirectory=</literal>
+ </entry>
+ <entry>
+ Directory containing extra JARs which should be deployed
+ in
+ the artifact (for example in
+ <literal>WEB-INF/lib</literal>.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.standalone=true</literal>
+ </entry>
+ <entry>
+ Tests are run using standalone mode if true or using
+ in-container mode if false.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.runIntegrationTests=false
+ </literal>
+ </entry>
+ <entry>
+ If true, integration tests are run. In-container mode
+ must be activated.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.spi.Containers=</literal>
+ </entry>
+ <entry>
+ The deployment implementation for setting up and
+ tearing down the container and deploying and undeploying
+ in-container tests.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.host=localhost:8080
+ </literal>
+ </entry>
+ <entry>
+ The host and port on which the container is running.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.connectDelay=5000</literal>
+ </entry>
+ <entry>
+ The timeout (ms) when attempting to connect to the
+ container (e.g. via http).
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.api.TestLauncher=</literal>
+ </entry>
+ <entry>
+ The in-container test launcher, the built in
+ <literal>org.jboss.testharness.impl.runner.servlet.ServletTestLauncher
+ </literal>
+ is provided and suitable for any Servlet environment.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.container.\</literal>
+ <literal>deploymentExceptionTransformer=</literal>
+ </entry>
+ <entry>
+ Provides an interception feature for deployment
+ exceptions,
+ allowing them to be inspected and altered before
+ reporting
+ to the test harness for validation by the test
+ case.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.container.forceRestart=false
+ </literal>
+ </entry>
+ <entry>
+ Whether the container should be restarted before the
+ tests are executed.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.container.extraConfigurationDir=
+ </literal>
+ </entry>
+ <entry>
+ A directory containing a
+ <literal>build.properties</literal>
+ or
+ <literal>local.build.properties</literal>
+ files that define additional properties. Can be used to
+ provide runtime specific properties.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.spi.StandaloneContainers=
+ </literal>
+ </entry>
+ <entry>
+ The container implementation for executing standalone
+ tests.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>dumpArtifacts=false</literal>
+ </entry>
+ <entry>
+ Whether the test artifacts should be written to disk
+ for inspection.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>org.jboss.testharness.outputDirectory=</literal>
+ <literal>%java.io.tmpdir%/jsr-299-tck/</literal>
+ </entry>
+ <entry>
+ Directory where test artifacts will be written to disk, if
+ <literal>dumpArtifacts</literal>
+ is true.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/executing.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/executing.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/executing.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,228 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<chapter id="executing-test-harness">
+ <title>Executing a Test Suite</title>
+ <para>
+ This chapter explains how to execute and debug a test suite built using
+ the JBoss Test Harness.
+ </para>
+ <section id="test-suite-runner">
+ <title>Building a test suite runner using Maven 2</title>
+ <para>
+ The test suite runner project is the magic that makes everything come
+ together and allows you to execute the test suite. If you fully
+ understand how the JBoss Test Harness functions, and have a good grasp
+ on Maven 2, then it's not to difficult to understand how the test suite
+ runner project works. Regardless of your background, this guide covers
+ what you need to know to get up and running by studying the test suite
+ runner used to run the CDI TCK against the CDI RI, Web Beans.
+ </para>
+ <para>
+ The TCK runner for the Web Beans can be found in the jboss-tck-runner
+ directory in the Web Beans distribution. The dependencies of the TCK
+ runner project for Web Beans are listed in
+ <xref linkend="tck-runner-dependencies" />.
+ </para>
+ <table frame="all" id="tck-runner-dependencies" title="CDI TCK Runner dependencies">
+ <title>Web Beans JBoss TCK Runner Dependencies</title>
+ <tgroup cols="3">
+ <colspec colname="c1" />
+ <colspec colname="c2" />
+ <colspec colname="c3" />
+ <thead>
+ <row>
+ <entry>Group ID</entry>
+ <entry>Artifact ID</entry>
+ <entry>Version</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>org.jboss.webbeans</entry>
+ <entry>jsr299-api</entry>
+ <entry>1.0.0-SNAPSHOT</entry>
+ </row>
+ <row>
+ <entry>org.jboss.jsr299.tck</entry>
+ <entry>jsr299-tck-api</entry>
+ <entry>1.0.0-SNAPSHOT</entry>
+ </row>
+ <row>
+ <entry>org.jboss.jsr299.tck</entry>
+ <entry>jsr299-tck-impl</entry>
+ <entry>1.0.0-SNAPSHOT</entry>
+ </row>
+ <row>
+ <entry>org.jboss.webbeans</entry>
+ <entry>webbeans-core</entry>
+ <entry>1.0.0-SNAPSHOT</entry>
+ </row>
+ <row>
+ <entry>org.jboss.webbeans</entry>
+ <entry>webbeans-porting-package</entry>
+ <entry>1.0.0-SNAPSHOT</entry>
+ </row>
+ <row>
+ <entry>org.testng</entry>
+ <entry>testng (classifier: jdk15)</entry>
+ <entry>5.8</entry>
+ </row>
+ <row>
+ <entry>org.jboss.test-harness</entry>
+ <entry>jboss-test-harness-jboss-as-51</entry>
+ <entry>1.0.0.BETA3</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
+ You can find all of these artifacts in the <ulink
+ url="http://repository.jboss.org/maven2">JBoss Maven
+ repository</ulink>.
+ </para>
+ <para>
+ You should substituate the webbeans-core and webbeans-porting-package
+ artifacts from table 2.2.3 with your own artifacts. You'll also need to
+ replace the jboss-test-harness-jboss-as-51 artifact if you are not
+ testing your implementation on JBoss AS 5.1. The
+ jboss-test-harness-jboss-as-51 artifact contains implementations of the
+ <literal>Containers</literal>
+ SPI for the JBoss Test Harness for JBoss AS 5.1.
+ </para>
+ <note>
+ <para>
+ When running the test suite in the in-container mode, the tests
+ will run against libraries installed into the container. In this
+ project, Web Beans is only declared as a Maven dependency for when
+ the TCK test suite is being executed in standalone mode.
+ </para>
+ </note>
+
+ <programlisting role="xml"><![CDATA[<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <stripVersion>true</stripVersion>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.jboss.jsr299.tck</groupId>
+ <artifactId>jsr299-tck-impl</artifactId>
+ <type>xml</type>
+ <classifier>suite</classifier>
+ <overWrite>true</overWrite>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.jboss.webbeans</groupId>
+ <artifactId>
+ webbeans-porting-package
+ </artifactId>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/dependency/lib
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.jboss.webbeans</groupId>
+ <artifactId>webbeans-core-test</artifactId>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/dependency/lib
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>javax.el</groupId>
+ <artifactId>el-ri</artifactId>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/dependency/lib
+ </outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+</plugin>]]></programlisting>
+ <para>
+ The target folder for the copies of the dependencies (i.e., the JAR
+ files) is declared as the JBoss Test Harness library directory; this
+ results in these libraries being added to the test artifact using the
+ following property assignment:
+ </para>
+ <programlisting>org.jboss.testharness.libraryDirectory=target/dependency/lib</programlisting>
+ <para>
+ We also copy the test suite configuration from the
+ local Maven
+ repository (groupId=org.jboss.jsr299.tck,
+ artifactId=jsr299-tck-impl,
+ classifier=suite, type=xml,
+ version=1.0.0-SNAPSHOT) to a local
+ repository as the TestNG Maven
+ plugin expects a local file.
+ </para>
+ <para>
+ The TCK is executed using the Maven TestNG plugin. Maven 2 profiles are
+ used to control the properties that are set at the time of the
+ execution. For instance, the
+ <literal>incontainer</literal>
+ profile enables integration tests and disables standalone mode,
+ changing the default settings.
+ </para>
+ <para>
+ The jboss-tck-runner project also defines the JBoss Test Harness
+ extra configuration directory using the following property:
+ </para>
+ <programlisting>org.jboss.testharness.container.extraConfigurationDir=../jboss-as</programlisting>
+ <para>
+ The JBoss Test Harness looks in this directory for either a
+ build.properties or local.build.properties file that declares
+ additional configuration properties. In particular, the JBoss AS
+ Containers implementation looks here to find the
+ <literal>jboss.home</literal> property so it knows where the scripts
+ are located to start and stop JBoss AS.
+ </para>
+ </section>
+
+ <section id="dumping-test-artifacts">
+ <title>Dumping the Test Artifacts to Disk</title>
+ <para>
+ As you have learned, when the test suite is executing using
+ in-container mode, each test class is packaged as a deployable artifact
+ and deployed to the container. The test is then executed within the
+ context of the deployed application. This leaves room for errors in
+ packaging. When investigating a test failure, it's helpful to be able
+ to inspect the artifact after it is generated. The JBoss Test Harness
+ can accommodate this type of inspection by "dumping" the generated
+ artifact to disk.
+ </para>
+ <para>
+ If you want to write the artifacts to disk, and avoid executing the
+ test suite, you can simply execute the main method of the class
+ <literal>org.jboss.testharness.api.TCK</literal>.
+ For example you could use a Maven profile that is activated when the
+ <literal>dumpArtifacts</literal>
+ command line property is defined:
+ </para>
+ <programlisting>mvn test-compile -DdumpArtifacts</programlisting>
+ <para>
+ The output directory where the artifacts are written is defined by the
+ property
+ <literal>org.jboss.testharness.outputDirectory</literal>.
+ </para>
+ <para>
+ Once the artifact is written to disk, you have an option of manually
+ deploying it to the container. You can execute the tests in the artfact
+ by requesting the context path of the application in the browser. If
+ you want to execute an individual test method, specify the method name
+ in the
+ <literal>methodName</literal>
+ request parameter (e.g., ?methodName=testMethodName).
+ </para>
+ </section>
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/images/in-container-execution.png
===================================================================
(Binary files differ)
Property changes on: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/images/in-container-execution.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/introduction.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/introduction.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/introduction.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,286 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<chapter id="test-harness-introduction">
+ <title>Introduction (JBoss Test Harness)</title>
+
+ <para>
+ This chapter explains the purpose of the test harness and describes
+ its key features.
+ </para>
+ <para>
+ The JBoss Test Harness is a testing framework based on TestNG that
+ provides a series of extensions that allow runtime packaging and
+ deployment of Java EE artifacts (EAR or WAR) for in-container testing.
+ It's important to note that the JBoss Test Harness has no relation with,
+ or dependency on, the JBoss Application Server (JBoss AS).
+ </para>
+ <note>
+ <para>
+ You'll often see the term
+ <emphasis role="italic">in-container</emphasis>
+ used in this reference guide. This term refers to running the test
+ suite in any of the aforementioned environments, whilst
+ <emphasis role="italic">standalone</emphasis>
+ refers to running the tests outside the container via an
+ implementation-specific standalone bootstrap. The standalone mode only
+ runs those tests which the CDI RI can run without deployment in a Java
+ EE container.
+ </para>
+ </note>
+ <para>
+ The last thing Java developers want is yet another testing framework to
+ make their life more complicated. That's why the JBoss Test Harness is
+ built entirely upon TestNG. TestNG is one of two prominent test
+ frameworks for Java (the other being JUnit). Furthermore, what developers
+ want is a good integration with their Integrated Development Environment
+ (IDE). These days, if a tool doesn't have an IDE plugin, then it won't
+ get the attention it deserves. TestNG plugins are available for all major
+ IDEs and build tools (Ant and Maven 2). Again, a motivating factor for
+ extending TestNG.
+ </para>
+ <para>
+ Because it leverages the existing TestNG ecosystem, there is no need for
+ a special test launcher for the JBoss Test Harness. You simply use the
+ IDE or build tool of your choice (so long as it has TestNG support). You
+ also get reporting and debugging for free (various reporting plugins are
+ provided for TestNG).
+ </para>
+ <para>
+ You can read more about TestNG at
+ <ulink url="http://testng.org/doc/documentation-main.html">testng.org</ulink>.
+ </para>
+ <para>
+ The JBoss Test Harness supports the following features:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ Test activation via any method supported by the TestNG
+ configuration descriptor (package, group, class)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Exclusion of in-container tests in standalone mode
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Exclusion of individual tests labeled as under investigation
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Integration with any TestNG plugin (Eclipse, IntelliJ, Ant, Maven)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Automated reporting capability as provided by TestNG
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Standalone and in-container test mode
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Container pluggability
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Declarative packaging of additional resources and classes in
+ artifact
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Declarative deployment exception trapping
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Artifact dumping for failure and packaging analysis
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ A test is designated by a method annotated with
+ <literal>@org.testng.annotations.Test</literal>
+ in a class which extends
+ <literal>org.jboss.testharness.AbstractTest</literal>
+ and is annotated with
+ <literal>@org.jboss.testharness.impl.packaging.Artifact</literal>.
+ </para>
+ <note>
+ <para>
+ Test suites may often choose to extend <literal>AbstractTest</literal>
+ and require tests to extend that base class. In fact, both the CDI TCK
+ and the Bean Validation TCK provide base classes that extend
+ <literal>AbstractTest</literal> to provide functionality specific to
+ the needs of the TCK.
+ </para>
+ </note>
+ <para>
+ The
+ <literal>@Test</literal>
+ annotation is provided by TestNG, the
+ <literal>@Artifact</literal>
+ annotation is provided by the JBoss Test Harness and the
+ <literal>AbstractTest</literal>
+ is part of the JBoss Test Harness. There is a one-to-one mapping between a
+ TestNG test class and an artifact. The packaging type is defined by the
+ <literal>@org.jboss.testharness.impl.packaging.Packaging</literal>
+ annotation on the test class, defaulting to a WAR if not specified.
+ </para>
+ <para>
+ Prior to executing the tests for a given class, the JBoss Test Harness
+ packages the class as a deployable artifact (EAR or WAR), along with any
+ extra resources specified, and deploys the artifact to the container. The
+ harness provides test execution and result reporting via HTTP
+ communication to a simple Servlet using a thin layer over the TestNG test
+ launcher. The test harness can also catch and enforce expected deployment
+ exceptions. This setup and tear down activity is provided by the super
+ class
+ <literal>org.jboss.testharness.AbstractTest</literal>,
+ which all test classes must extend (directly or indirectly).
+ </para>
+ <para>
+ If the annotation
+ <literal>@org.jboss.testharness.impl.packaging.IntegrationTest
+ </literal>
+ is not present on the test class, then it means the test class can be
+ executed in standalone mode. In standalone mode, the deployable artifact
+ is assembled on the local classpath and the tests execute in the same JVM
+ as the launcher, just as though it were a regular TestNG test case. The
+ standalone mode is provided for convenience and efficiency, allowing you
+ the speed of mock-based testing and the confidence of an in-container test,
+ using the same test objects and tests.
+ </para>
+
+ <section id="in-container-communication">
+ <title>Negotiating the execution of an in-container test</title>
+ <para>
+ The basic procedure of an in-container test is as follows. The JBoss
+ Test Harness produces a deployable artifact from an
+ <literal>@Artifact</literal>
+ test class and any declared dependent classes, descriptors or other
+ resources. Then it deploys the artifact to the container using the
+ <literal>Containers</literal>
+ SPI, negotiates with the container to execute the test and return the
+ result and, finally, undeploys the artifact. TestNG collects the results
+ of all the tests run in the typical way and produces a report.
+ </para>
+ <graphic fileref="images/in-container-execution.png" align="center" />
+ <para>
+ The question is, how does the JBoss Test Harness negotiate with the
+ container to execute the test when TestNG is being invoked locally?
+ Technially the mechanism is pluggable, but JBoss Test Harness provides
+ a default implementation that uses HTTP communication that you will
+ likely use. Here's how the default implementation works.
+ </para>
+ <para>
+ The artifact generator bundles and registers (in the web.xml
+ descriptor) an
+ <literal>HttpServlet</literal>,
+ <literal>org.jboss.testharness.impl.runner.servlet.ServletTestRunner</literal>,
+ that responds to test execution GET requests. TestNG running on the
+ client side delegates to a test launcher (more on that in a moment)
+ which originates these text execution requests to transfer control to
+ the container JVM. The name of the test method to be executed is
+ specified in a request query parameter named
+ <literal>methodName</literal>.
+ </para>
+ <para>
+ When the test execution request is received, the servlet delegates to
+ an instance of
+ <literal>org.jboss.testharness.impl.runner.TestRunner</literal>,
+ passing it the name of the test method.
+ <literal>TestRunner</literal>
+ reads the name of the test class from the resource
+ META-INF/jboss-test-harness.properties, which is bundled in the
+ artifact by the artifact generator. It then combines the class name
+ and the method name to produce a TestNG test suite and runs the suite
+ (within the context of the container).
+ </para>
+ <para>
+ TestNG returns the results of the run as an
+ <literal>ITestResult</literal>
+ object.
+ <literal>ServletTestRunner</literal>
+ translates this object into a
+ <literal>org.jboss.testharness.api.TestResult</literal>
+ and passes it back to the test launcher on the client side by encoding
+ the translated object into the response. The object gets encoded as
+ either html or a serialized object, depending on the value of the
+ <literal>outputMode</literal>
+ request parameter that was passed to the servlet. Once the result has
+ been transfered to the client-side TestNG, TestNG wraps up the run of
+ the test as though it had been executed in the same JVM.
+ </para>
+ <para>
+ There's one piece missing. How does TestNG on the client side know to
+ submit a request to the
+ <literal>ServletTestRunner</literal>
+ servlet to get TestNG to execute the test in the container JVM? That's
+ the role of the test launcher.
+ </para>
+ <para>
+ The test launcher is the API that allows test suite to launch the test
+ in a pluggable fashion.
+ <literal>AbstractTest</literal>,
+ the super class of
+ <literal>AbtractJSR299Test</literal>,
+ implements
+ <literal>IHookable</literal>,
+ a TestNG interface which allows the execution of the test method to
+ be intercepted. Using that mechanism, <literal>AbstractTest</literal> delegates execution
+ of the test method (a method annotated with
+ <literal>@Test</literal>
+ in an
+ <literal>@Artifact</literal>
+ class) to an implementation of
+ <literal>org.jboss.testharness.api.TestLauncher</literal>
+ if the tests are being executed in-container. As you might anticipate,
+ the implementation is specified using a property with the same name as
+ the interface in a META-INF/jboss-test-launcher.properties resource.
+ The JBoss Test Harness provides a default implementation,
+ <literal>org.jboss.testharness.impl.runner.servlet.ServletTestLauncher</literal>,
+ that hooks into the HTTP communication infrastructure described
+ above. It invokes the
+ <literal>ServletTestRunner</literal>
+ servlet for each method annotated with
+ <literal>@Test</literal>
+ in the
+ <literal>@Artifact</literal>
+ that is not otherwise disabled.
+ </para>
+ <para>
+ If you wish to implement the runner yourself, you must return a
+ <literal>TestResult</literal> as a result of executing the method in
+ the container. You must also ensure that any exception which occurs
+ during deployment is wrapped as a
+ <literal>org.jboss.testharness.api.DeploymentException</literal>, and
+ that any communication problem is rethrown as an
+ <literal>IOException</literal>. The deployment exception may be
+ transformed by an implementation of the
+ <literal>org.jboss.testharness.api.DeploymentExceptionTransformer
+ </literal> interface, which is specified using the
+ <literal>org.jboss.testharness.container.deploymentExceptionTransformer
+ </literal> property. The default implementation passes on the original
+ exception unchanged. The implementation for JBoss AS used with the CDI
+ TCK, on the other hand, deciphers the exception thrown by the JBoss
+ deployer and converts it to one of the catagory exceptions defined in
+ the CDI TCK API.
+ </para>
+ <para>
+ So in short, JBoss Test Harness takes care of all the interfaces you
+ need to execute tests in-container except for the implementation of
+ the <literal>Containers</literal> SPI. That is, unless you are
+ deploying to one of the containers supported by the JBoss Test Harness
+ (TODO we need a table showing supported containers).
+ </para>
+ </section>
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/harness/master.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/harness/master.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/harness/master.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,8 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<book lang="en">
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Info.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Preface.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="introduction.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="configuration.xml"/>
+</book>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-emailable-report.png
===================================================================
(Binary files differ)
Property changes on: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-emailable-report.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-plugin-report.png
===================================================================
(Binary files differ)
Property changes on: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-plugin-report.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-suite-detail-report.png
===================================================================
(Binary files differ)
Property changes on: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-suite-detail-report.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-summary-report.png
===================================================================
(Binary files differ)
Property changes on: beanvalidation/tck/trunk/src/main/docbook/en-US/images/testng-summary-report.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/installation.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/installation.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/installation.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,228 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="installation">
+ <title>Installation</title>
+
+ <para>This chapter explains how to obtain the TCK and supporting software
+ and provides recommendations for how to install/extract it on your
+ system.</para>
+
+ <section>
+ <title>Obtaining the Software</title>
+
+ <para>You can obtain a release of the Bean Validation TCK project from the
+ from the <ulink url="http://seamframework.org/Download">download
+ page</ulink> on the Hibernate Validator website. The Bean Validation TCK
+ is distributed as a ZIP file, which contains the TCK artifacts (the test
+ suite binary and source, porting package API binary and source, the test
+ suite descriptor, the audit source and report) in <code>/artifacts</code>,
+ the TCK library dependencies in <code>/lib</code> and documentation in
+ <code>/lib</code>.</para>
+
+ <para>You can also download the currnet source code from <ulink
+ url="http://anonsvn.jboss.org/repos/hibernate/beanvalidation/tck/trunk/">JBoss
+ SVN repository</ulink>.</para>
+
+ <para>The TCK project is available in the JBoss Maven 2 repository as
+ org.hibernate.jsr303.tck<code>:</code>org.hibernate.jsr303.tck; the POM
+ defines all dependencies required to run the TCK.</para>
+
+ <para>Executing the TCK requires a Java EE 5 or better runtime environment
+ (i.e., application server), to which the test artifacts are deployed and
+ the individual tests are invoked. The TCK does not depend on any
+ particular Java EE implementation.</para>
+
+ <para>The JSR-303: Bean Validation reference implementation (RI) project
+ is named Hibernate Validator. You can obtain the latest Hibernate
+ Validator release from the <ulink
+ url="https://www.hibernate.org/6.html">download page</ulink> on Hibernate
+ website.</para>
+
+ <note>
+ <para>Hibernate Validator is not required for running the Bean
+ Validation TCK, but it can be used as a reference for familiarizing
+ yourself with the TCK before testing your own Bean Validation
+ implementation.</para>
+ </note>
+
+ <para>Naturally, to execute Java programs, you must have a Java SE runtime
+ environment. The TCK requires Java 5 or better, which you can obtain from
+ the <ulink url="http://java.sun.com">Java Software</ulink> website.</para>
+ </section>
+
+ <section id="tck-environment">
+ <title>The TCK Environment</title>
+
+ <para>The TCK requires the following two Java runtime environments:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>Java 5 or better</para>
+ </listitem>
+
+ <listitem>
+ <para>Java EE 5 or better (e.g., JBoss AS 5.x or GlassFish V3)</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>You should refer to vendor instructions for how to install the
+ runtime.</para>
+
+ <para>The rest of the TCK software can simply be extracted. It's
+ recommended that you create a folder named jsr303 to hold all of the
+ jsr303-related projects. Then, extract the TCK distribution into a
+ subfolder named tck. If you have downloaded the Hibernate Validator
+ distribution, extract it into a sibling folder named ri. The resulting
+ folder structure is shown here:</para>
+
+ <note>
+ <para>This layout is assumed through all descriptions in this reference
+ guide.</para>
+ </note>
+
+ <programlisting>jsr303/
+ ri/
+ tck/</programlisting>
+
+ <para>Each test class is treated as an individual artifact (hence the
+ <literal>@Artifact</literal> annotation on the class). All test methods
+ (i.e., methods annotated with <literal>@Test</literal>) in the test class
+ are run in the application, meaning bean discovery occurs exactly once per
+ artifact and the same BeanManager is used by each test method in the
+ class.</para>
+
+ <tip id="tck-in-jboss-as">
+ <title>Running the TCK against the Bean Validation RI (Hibernate
+ Validator) and JBoss AS</title>
+
+ <para>Web Beans is built as a modular library, and as such can be
+ retro-fitted to Java EE 5 products as required. JBoss AS 5.0 and above
+ releases bundle Web Beans. JBoss AS 5.0 also allows you to upgrade the
+ Web Beans module to the current release (though some functionality may
+ be disabled).</para>
+
+ <para>To install JBoss AS 5.1 and update to the latest Web Beans
+ release:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>First, you should download JBoss AS 5.1 from the JBoss AS
+ <ulink url="http://jboss.org/jbossas/downloads">project
+ page</ulink>.</para>
+ </listitem>
+
+ <listitem>
+ <para>Set the <literal>JBOSS_HOME</literal> environment variable to
+ the location of the JBoss AS software.</para>
+ </listitem>
+
+ <listitem>
+ <para>Change to the webbeans directory.</para>
+ </listitem>
+
+ <listitem>
+ <para>Make sure the <literal>jboss.home</literal> property in the
+ local.build.properties file in the jboss-as directory references a
+ JBoss AS 5.1 installation:</para>
+
+ <programlisting>jboss.home=/path/to/jboss-as-5.1</programlisting>
+ </listitem>
+
+ <listitem>
+ <para>Then, run Ant from the jboss-as directory to install the
+ deployer:</para>
+
+ <programlisting>ant update</programlisting>
+
+ <para>The libraries needed by the deployer are fetched from the
+ Maven 2 repository on demand.</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>Web Beans includes a TCK runner that executes the TCK using Web
+ Beans as the CDI implementation and JBoss AS as the Java EE runtime. To
+ run the tck:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>You need to install Maven. You can find documention on how to
+ install Maven 2 in the <ulink
+ url="http://www.sonatype.com/books/maven-book/reference/installation-sect-mave...">Maven:
+ The Definitive Guide</ulink> book published by Sonatype. Web Beans
+ bundles a copy of Maven in the <code>lib/maven</code>
+ directory.</para>
+ </listitem>
+
+ <listitem>
+ <para>Next, instruct Maven to run the TCK:</para>
+
+ <programlisting>cd jboss-tck-runner
+mvn test -Dincontainer</programlisting>
+ </listitem>
+
+ <listitem>
+ <para>TestNG will report, via Maven, the outcome of the run, and
+ report any failures on the console. Details can be found in
+ <code>target/surefire-reports/TestSuite.txt</code>.</para>
+ </listitem>
+ </itemizedlist>
+ </tip>
+ </section>
+
+ <section id="eclipse-plugins">
+ <title>Eclipse Plugins</title>
+
+ <para>Eclipse, or any other IDE, is not required to execute or pass the
+ TCK. However an implementor may wish to execute tests in an IDE to aid
+ debugging the tests. This section introduces two essential Eclipse
+ plugins, TestNG and Maven 2, and points you to resources explaining how to
+ install them.</para>
+
+ <section id="eclipse-testng-plugin">
+ <title>TestNG Plugin</title>
+
+ <para>The TCK is built on the JBoss Test Harness, which is in turn built
+ on TestNG. Therefore, having the TestNG plugin installed in Eclipse is
+ essential. Instructions for using the TestNG update site to add the
+ TestNG plugin to Eclipse are provided on the TestNG <ulink
+ url="http://testng.org/doc/download.html">download page</ulink>. You can
+ find a tutorial that explains how to use the TestNG plugin on the TestNG
+ <ulink url="http://testng.org/doc/eclipse.html">Eclipse
+ page</ulink>.</para>
+ </section>
+
+ <section id="m2eclipse-plugin">
+ <title>Maven 2 Plugin (m2eclipse)</title>
+
+ <para>Another useful plugin is m2eclipse. Both the TCK project and Web
+ Beans are use Maven 2. Therefore, to work with these projects in
+ Eclipse, you may wish to have native support for Maven 2 projects, which
+ the m2eclipse plugin provides. Instructions for using the m2eclipse
+ update site to add the m2eclipse plugin to Eclipse are provided on the
+ m2eclipse home page. For more, read the m2eclipse <ulink
+ url="http://www.sonatype.com/books/m2eclipse-book/reference">reference
+ guide</ulink>.</para>
+
+ <para>m2eclipse is still a rather young project dealing with a complex
+ domain and you may run into problems using it. If that is the case, you
+ can alternatively use the Eclipse plugin for Maven 2 to generate native
+ Eclipse projects from Maven 2 projects.</para>
+
+ <para>If you have Maven 2 installed, you have everything you need. Just
+ execute the following command from any Maven 2 project to produce the
+ Eclipse project files.</para>
+
+ <programlisting>mvn eclipse:eclipse</programlisting>
+ </section>
+
+ <para>Again, the Eclipse plugins are not required to execute the TCK, but
+ can be very helpful when validating an implementation against the TCK test
+ suite and especially when using the modules from the Hibernate Validator
+ project.</para>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/introduction.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/introduction.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/introduction.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,216 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="introduction">
+ <title>Introduction (Bean Validation TCK)</title>
+
+ <para>This chapter explains the purpose of a TCK and identifies the
+ foundation elements of the Bean Validation TCK.</para>
+
+ <section>
+ <title>TCK Primer</title>
+
+ <para>A TCK, or Technology Compatibility Kit, is one of the three required
+ pieces for any JSR (the other two being the specification document and the
+ reference implementation). The TCK is a set of tools and tests to verify
+ that an implementation of the technology conforms to the specification.
+ The tests are the primary component, but the tools serve an equally
+ critical role of providing a framework and/or set of SPIs for executing
+ the tests.</para>
+
+ <para>The tests in the TCK are derived from assertions in the written
+ specification document. The assertions are itemized in an XML document,
+ where they each get assigned a unique identifier, and materialize as a
+ suite of automated tests that collectively validate whether an
+ implementation complies with the aforementioned assertions, and in turn
+ the specification. For a particular implementation to be certified, all of
+ the required tests must pass (i.e., the provided test suite must be run
+ unmodified).</para>
+
+ <para>A TCK is entirely implementation agnostic. It should validate
+ assertions by consulting the specficiation's public API. </para>
+ </section>
+
+ <section>
+ <title>Compatibility Testing</title>
+
+ <para>The goal of any specification is to eliminate portability problems
+ so long as the program which uses the implementation also conforms to the
+ rules laid out in the specification.</para>
+
+ <para>Executing the TCK is a form of compatibility testing. It's important
+ to understand that compatibility testing is distinctly different from
+ product testing. The TCK is not concerned with robustness, performance or
+ ease of use, and therefore cannot vouch for how well an implementation
+ meets these criteria. What a TCK can do is to ensure the exactness of an
+ implementation as it relates to the specification.</para>
+
+ <para>Compatibility testing of any feature relies on both a complete
+ specification and a complete reference implementation. The reference
+ implementation demonstrates how each test can be passed and provides
+ additional context to the implementor during development for the
+ corresponding assertion.</para>
+
+ <section>
+ <title>Why Compatibility Is Important</title>
+
+ <para>Java platform compatibility is important to different groups
+ involved with Java technologies for different reasons:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>Compatibility testing is the means by which the JCP ensures
+ that the Java platform does not become fragmented as it's ported to
+ different operating systems and hardware.</para>
+ </listitem>
+
+ <listitem>
+ <para>Compatibility testing benefits developers working in the Java
+ programming language, enabling them to write applications once and
+ deploy them across heterogeneous computing environments without
+ porting.</para>
+ </listitem>
+
+ <listitem>
+ <para>Compatibility testing enables application users to obtain
+ applications from disparate sources and deploy them with
+ confidence.</para>
+ </listitem>
+
+ <listitem>
+ <para>Conformance testing benefits Java platform implementors by
+ ensuring the same extent of reliability for all Java platform
+ ports.</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>The Bean Validation specification goes to great lengths to ensure
+ that programs written for Java EE are compatible and the TCK is rigorous
+ about enforcing the rules the specification lays down.</para>
+ </section>
+ </section>
+
+ <section>
+ <title>About the Bean Validation TCK</title>
+
+ <para>The Bean Validation TCK is designed as a portable, configurable and
+ automated test suite for verifying the compatibility of an implementation
+ of the JSR-303: Bean Validation specification. The test suite is built
+ atop TestNG and provides a series of extensions that allow runtime
+ packaging and deployment of JEE artifacts for in-container testing (JBoss
+ Test Harness).</para>
+
+ <note>
+ <para>The Bean Validation TCK harness is based on the JBoss Test
+ harness, which provides most of the aforementioned functionality.</para>
+ </note>
+
+ <para>Each test class in the suite acts as a deployable unit. The
+ deployable units, or artifacts, are defined declaratively using
+ annotations. The artifact produced can be either a WAR or an EAR.</para>
+
+ <para>The declarative approach allows many of the tests to be executed in
+ a standalone implementation of Bean Validation, accounting for a boast in
+ developer productivity. However, an implementation is only valid if all
+ tests pass using the in-container execution mode. The standalone mode is
+ merely a developer convenience.</para>
+
+ <section>
+ <title>Bean Validation TCK Specifications and Requirements</title>
+
+ <para>This section lists the applicable requirements and specifications
+ for the Bean Validation TCK.</para>
+
+ <itemizedlist>
+ <listitem>
+ <para><emphasis role="bold">Bean Validation API</emphasis> - The
+ Java API defined in the Bean Validation specification and provided
+ by the reference implementation.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">JBoss Test Harness</emphasis> - The Bean
+ Validation TCK requires version 1.0.0 of the JBoss Test Harness. The
+ Harness is based on TestNG 5.x (<ulink
+ url="http://testng.org">http://testng.org</ulink>). You can read
+ more about the harness in <xref linkend="test-harness" />.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">TCK Audit Tool</emphasis> - An
+ itemization of the assertions in the specification documents which
+ are cross referenced by the individual tests. Describes how well the
+ TCK covers the specification.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Reference runtime</emphasis> - The
+ designated reference runtimes for compatibility testing of the Bean
+ Validation specification is the Sun Java Platform, Enterprise
+ Edition (Java EE) 6 reference implementation (RI). See details at
+ Java EE 6 (<ulink
+ url="http://java.sun.com/javaee/6/docs/api/">http://java.sun.com/javaee/6/docs/api/</ulink>).</para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <section>
+ <title>Bean Validation TCK Components</title>
+
+ <para>The Bean Validation TCK includes the following components:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para><emphasis role="bold">JBoss Test Harness 1.0.0</emphasis> and
+ related documentation.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">TestNG 5.9</emphasis>, the testing
+ framework on which the JBoss Test Harness is based and which
+ provides the extension points for selecting an executing the tests
+ in the test suite.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">The test suite</emphasis>, which is a
+ collection of TestNG tests, the TestNG test suite descriptor and
+ supplemental resources that configure CDI and other software
+ components.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">The TCK audit</emphasis> is used to list
+ out the assertions identified in the CDI specification. It matches
+ the assertions to testcases in the test suite by unique identifier
+ and produces a coverage report.</para>
+
+ <para>The audit document is provided along with the TCK. Each
+ assertion is defined with a reference to a chapter, section and
+ paragraph from the specification document, making it easy for the
+ implementor to locate the language in the specification document
+ that supports the feature being tested.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">TCK documentation</emphasis> accompanied
+ by release notes identifying updates between versions.</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>The Bean Validation TCK has been tested run on following
+ platforms:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>JBoss AS 5.0.0.GA using Sun Java SE 6 on Red Hat Enterprise
+ Linux 5.2</para>
+ </listitem>
+ </itemizedlist>
+ </section>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/master.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/master.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/master.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<book lang="en">
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Info.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Preface.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="part-background.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="part-execution.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="part-test-harness.xml" />
+<!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</book>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/part-background.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/part-background.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/part-background.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<part>
+ <title>Getting Acquainted with the TCK</title>
+
+ <partintro>
+ <para>The Bean Validation TCK must be used to ensure that your
+ implementation conforms to the Bean Validation specification. This part
+ introduces the TCK, gives some background about its purpose, states the
+ requirements for passing the TCK and outlines the appeals process.</para>
+
+ <para>In this part you will learn where to obtain the Bean Validation TCK
+ and supporting software. You are then presented with recommendations of
+ how to organize and configure the software so that you are ready to
+ execute the TCK.</para>
+
+ <para>Finally, it discusses the reporting provided by the TCK.</para>
+ </partintro>
+
+ <xi:include href="introduction.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="appeals-process.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="installation.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="configuration.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="reporting.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</part>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/part-execution.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/part-execution.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/part-execution.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<part>
+ <title>Executing and Debugging Tests</title>
+
+ <partintro>
+ <para>In this part you learn how to execute the Bean Validation TCK on the
+ Bean validation reference implementation (Hibernate Validator). First, you
+ are walked through the steps necessary to execute the test suite on
+ Hibernate Validator. Then you discover how to modify the TCK runner to
+ execute the test suite on your own implementation. Finally, you learn how
+ to debug tests from the test suite in Eclipse.</para>
+ </partintro>
+
+ <xi:include href="executing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="eclipse-running.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="eclipse-debugging.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</part>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/part-test-harness.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/part-test-harness.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/part-test-harness.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ ]>
+<part id="test-harness">
+ <title>JBoss Test Harness</title>
+ <partintro>
+ <para>
+ In this part you learn about the JBoss Test Harness through selected
+ chapters from the JBoss Test Harness Reference Guide. You can view the
+ entire JBoss Test Harness Reference Guide at <ulink url="">TODO</ulink>.
+ </para>
+ </partintro>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="harness/introduction.xml" />
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="harness/configuration.xml" />
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="harness/executing.xml" />
+<!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</part>
Added: beanvalidation/tck/trunk/src/main/docbook/en-US/reporting.xml
===================================================================
--- beanvalidation/tck/trunk/src/main/docbook/en-US/reporting.xml (rev 0)
+++ beanvalidation/tck/trunk/src/main/docbook/en-US/reporting.xml 2009-09-29 16:34:58 UTC (rev 17578)
@@ -0,0 +1,332 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter id="reporting">
+ <title>Reporting</title>
+
+ <para>This chapter covers the two types of reports that can be generated
+ from the TCK, an assertion coverage report and the test execution results.
+ The chapter also justifies why the TCK is good indicator of how accurately
+ an implementation conforms to the JSR-303 specification.</para>
+
+ <section>
+ <title>Bean Validation TCK Coverage Metrics</title>
+
+ <para>The Bean Validation TCK coverage has been measured as
+ follows:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para><emphasis role="bold">Assertion Breadth
+ Coverage</emphasis></para>
+
+ <para>The CDI TCK provides at least 75% coverage of identified
+ assertions with test cases.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Assertion Breadth Coverage
+ Variance</emphasis></para>
+
+ <para>The coverage of specification sub-sections shows at least a
+ normal distribution (centered around 75%).</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Assertion Depth Coverage</emphasis></para>
+
+ <para>The assertion depth coverage has not been measured, as, when an
+ assertion requires more than one testcase, these have been enumerated
+ in an assertion group and so are adequately described by the assertion
+ breadth coverage.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Method Coverage</emphasis></para>
+
+ <para>TODO</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">API Signature Coverage</emphasis></para>
+
+ <para>The CDI TCK covers 100% of all API public methods using the Java
+ CTT Sig Test tool.</para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <section>
+ <title>Bean Validation TCK Coverage Report</title>
+
+ <para>A specification can be distilled into a collection of assertions
+ that define the behavior of the software. This section introduces the Bean
+ Validation TCK coverage report, which documents the relationship between
+ the assertions that have been identified in the JSR-303 specification
+ document and the tests in the TCK test suite.</para>
+
+ <para>The structure of this report is controlled by the assertion
+ document, so we'll start there.</para>
+
+ <section>
+ <title>Bean Validation TCK Assertions</title>
+
+ <para>The Bean Validation TCK developers have analyzed the JSR-303
+ specification document and identified the assertions that are present in
+ each chapter. Here's an example of one such assertion found in section
+ 2.1:</para>
+
+ <blockquote>
+ Every constraint annotation must define a message element of type String
+ </blockquote>
+
+ <para>The assertions are listed in the XML file
+ src/main/resources/tck-audit.xml in the Bean Validation TCK
+ distribution. Each assertion is identified by the section of the
+ specification document in which it resides and assigned a unique
+ paragraph identifier to narrow down the location of the assertion
+ further. To continue with the example, the assertion shown above is
+ listed in the tck-audit.xml file using this XML fragment:</para>
+
+ <programlisting role="XML"><section id="2.1.1" title="Constraint definition properties">
+ ...
+ <assertion id="c">
+ <text>Every constraint annotation must define a message element of type String</text>
+ </assertion>
+ ...
+</section></programlisting>
+
+ <para>The strategy of the Bean Validation TCK is to write a test which
+ validates this assertion when run against an implementation. A test case
+ (a method annotated with <literal>@Test</literal> in an
+ <literal>@Artifact</literal> class) is correlated with an assertion
+ using the
+ <literal>@org.jboss.test.audit.annotations.SpecAssertion</literal>
+ annotation as follows:</para>
+
+ <programlisting role="JAVA">@Test
+@SpecAssertion(section = "2.1.1", id = "c")
+public void testConstraintDefinitionWithoutMessageParameter() {
+ try {
+ Validator validator = TestUtil.getValidatorUnderTest();
+ validator.validate( new DummyEntityNoMessage() );
+ fail( "The used constraint does not define a message parameter. The validation should have failed." );
+ }
+ catch ( ConstraintDefinitionException e ) {
+ // success
+}
+</programlisting>
+
+ <para>To help evaluate the distribution of coverage for these
+ assertions, the TCK provides a detailed coverage report. This report is
+ also useful to help implementors match tests with the language in the
+ specification that supports the behavior being tested.</para>
+ </section>
+
+ <section>
+ <title>Producing the Coverage Report</title>
+
+ <para>The coverage report is an HTML report generated as part of the TCK
+ project build. Specifically, it is generated by an annotation processor
+ that attaches to the compilation of the classes in the TCK test suite,
+ another tool from the JBoss Test Utils project. You can enable this
+ report by setting the commandline property tck-audit to true when
+ running the Maven 2 build in the tck directory.</para>
+
+ <programlisting>mvn clean install -Dtck-audit=true</programlisting>
+
+ <note>
+ <para>You must run clean first because the annotation processor
+ performs it's work when the test class is being compiled. If
+ compilation is unnecessary, then the assertions referenced in that
+ class will not be discovered.</para>
+ </note>
+
+ <para>The report is written to the file target/coverage.html in the same
+ project. The report has five sections:</para>
+
+ <orderedlist>
+ <listitem>
+ <para><emphasis role="bold">Chapter Summary</emphasis> - List the
+ chapters (that contain assertions) in the specification document
+ along with total assertions, tests and coverage percentage.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Section Summary</emphasis> - Lists the
+ sections (that contain assertions) in the specification document
+ along with total assertions, tests and coverage percentage.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Coverage Detail</emphasis> - Each
+ assertion and the test that covers it, if any.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Unmatched Tests</emphasis> - A list of
+ tests for which there is no matching assertion (useful during TCK
+ development).</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Unversioned Tests</emphasis> - A list of
+ tests for which there is no <literal>@SpecVersion</literal>
+ annotation on the test class (useful during TCK development).</para>
+ </listitem>
+ </orderedlist>
+
+ <para>The coverage report is color coded to indicate the status of an
+ assertion, or group of assertions. The status codes are as
+ follows:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para><emphasis role="bold">Covered</emphasis> - a test exists for
+ this assertion</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Not covered</emphasis> - no test exists
+ for this assertion</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Problematic</emphasis> - a test exists,
+ but is currently disabled. For example, this may be because the test
+ is under development</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis role="bold">Untestable</emphasis> - the assertion
+ has been deemed untestable, a note, explaining why, is normally
+ provided</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>For reasons provided in the <literal>tck-audit.xml</literal>
+ document and presented in the coverage report, some assertions are not
+ testable.</para>
+
+ <para>The coverage report does not give any indication as to whether the
+ tests are passing. That's where the TestNG reports come in.</para>
+ </section>
+
+ <section>
+ <title>TestNG Reports</title>
+
+ <para>As you by now, the CDI TCK test suite is really just a TestNG test
+ suite. That means an execution of the CDI TCK test suite produces all
+ the same reports that TestNG produces. This section will go over those
+ reports and show you were to go to find each of them.</para>
+
+ <section>
+ <title>Maven 2, Surefire and TestNG</title>
+
+ <para>When the CDI TCK test suite is executed during the Maven 2 test
+ phase of the TCK runner project, TestNG is invoked indirectly through
+ the Maven Surefire plugin. Surefire is a test execution abstraction
+ layer capable of executing a mix of tests written for JUnit, TestNG,
+ and other supported test frameworks.</para>
+
+ <para>Why is this relevant? It means two things. First, it means that
+ you are going to get a summary of the test run on the commandline.
+ Here's the output generated when the tests are run using standalone
+ mode.</para>
+
+ <programlisting>-------------------------------------------------------
+ T E S T S
+-------------------------------------------------------
+Running TestSuite
+Tests run: 237, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.062 sec
+
+Results :
+
+Tests run: 237, Failures: 0, Errors: 0, Skipped: 0
+</programlisting>
+
+ <note>
+ <para>The number of tests executed, the execution time, and the
+ output will differ when you run the tests using in-container mode as
+ the CDI TCK requires.</para>
+ </note>
+
+ <para>If the Maven reporting plugin that compliments Surefire is
+ configured properly, Maven will also generate a generic HTML test
+ result report. That report is written to the file test-report.html in
+ the target/surefire-reports directory of the TCK runner project. It
+ shows how many tests were run, how many failed and the success rate of
+ the test run.</para>
+
+ <para>The one drawback of the Maven Surefire report plugin is that it
+ buffers the test failures and puts them in the HTML report rather than
+ outputting them to the commandline. If you are running the test suite
+ to determine if there are any failures, it may be more useful to get
+ this information in the foreground. You can prevent the failures from
+ being redirected to the report using the following commandline
+ switch:</para>
+
+ <programlisting>mvn test -Dsurefire.useFile=false</programlisting>
+
+ <para>The information that the Surefire provides is fairly basic and
+ the detail pales in comparison to what the native TestNG reports
+ provide.</para>
+ </section>
+
+ <section>
+ <title>TestNG HTML Reports</title>
+
+ <para>TestNG produces several HTML reports for a given test run. All
+ the reports can be found in the target/surefire-reports directory in
+ the TCK runner project. Below is a list of the three types of
+ reports:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>Test Summary Report</para>
+ </listitem>
+
+ <listitem>
+ <para>Test Suite Detail Report</para>
+ </listitem>
+
+ <listitem>
+ <para>Emailable Report</para>
+ </listitem>
+ </itemizedlist>
+
+ <para>The first report, the test summary report, show below, is
+ written to the file index.html. It produces the same information as
+ the generic Surefire report.</para>
+
+ <graphic align="center" fileref="images/testng-summary-report.png" />
+
+ <para>The summary report links to the test suite detail report, which
+ has a wealth of information. It shows a complete list of test groups
+ along with the classes in each group, which groups were included and
+ excluded, and any exceptions that were raised, whether from a passed
+ or failed test. A partial view of the test suite detail report is
+ shown below.</para>
+
+ <graphic align="center"
+ fileref="images/testng-suite-detail-report.png" />
+
+ <para>The test suite detail report is very useful, but it borderlines
+ on complex. As an alternative, you can have a look at the emailable
+ report, which is a single HTML document that shows much of the same
+ information as the test suite detail report in a more compact layout.
+ A partial view of the emailable report is shown below.</para>
+
+ <graphic align="center" fileref="images/testng-emailable-report.png" />
+
+ <para>Now that you have seen two ways to get test results from the
+ Maven test execution, let's switch over to the IDE, specifically
+ Eclipse, and see how it presents TestNG test results.</para>
+ </section>
+ </section>
+ </section>
+
+ <!--
+vim: ts=3:sw=3:tw=80:set expandtab
+-->
+</chapter>
15 years, 4 months
Hibernate SVN: r17577 - in validator/trunk/hibernate-validator/src/main/docbook/en-US: modules and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-09-29 07:56:52 -0400 (Tue, 29 Sep 2009)
New Revision: 17577
Added:
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml
Modified:
validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml
Log:
HV-220
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-09-28 16:09:36 UTC (rev 17576)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -50,55 +50,9 @@
<toc></toc>
- <preface id="preface" revision="2">
- <title>Preface</title>
+ <xi:include href="modules/preface.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude"/>
- <para>Validating data is a common task that occurs throughout any
- application, from the presentation layer to the persistence layer. Often
- the same validation logic is implemented in each layer, proving time
- consuming and error-prone. To avoid duplication of these validations in
- each layer, developers often bundle validation logic directly into the
- domain model, cluttering domain classes with validation code which is
- really metadata about the class itself.</para>
-
- <mediaobject>
- <imageobject role="fo">
- <imagedata align="center" contentdepth="" contentwidth="150mm"
- fileref="application-layers.png" scalefit="" />
- </imageobject>
-
- <imageobject role="html">
- <imagedata depth="" fileref="application-layers.png" scalefit="1" />
- </imageobject>
- </mediaobject>
-
- <para>JSR 303 - Bean Validation - defines a metadata model and API for
- entity validation. The default metadata source is annotations, with the
- ability to override and extend the meta-data through the use of XML. The
- API is not tied to a specific application tier or programming model. It is
- specifically not tied to either the web tier or the persistence tier, and
- is available for both server-side application programming, as well as rich
- client Swing application developers.</para>
-
- <para><mediaobject>
- <imageobject role="fo">
- <imagedata align="center" contentdepth="" contentwidth="150mm"
- fileref="application-layers2.png" scalefit="" />
- </imageobject>
-
- <imageobject role="html">
- <imagedata depth="" fileref="application-layers2.png" scalefit="1" />
- </imageobject>
- </mediaobject></para>
-
- <para>Hibernate Validator is the reference implementation of this
- JSR.</para>
- </preface>
-
- <!-- For the alpha release we will just include the getting started section, since the others are work in progress -->
-
- <!--xi:include href="modules/introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /-->
-
<xi:include href="modules/gettingstarted.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
@@ -117,17 +71,6 @@
<xi:include href="modules/integration.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
- <chapter>
- <title id="chapter-further-reading">Further reading</title>
-
- <para>Last but not least, a few pointers to further information. A great
- source for examples is the Bean Validation TCK which can is available for
- anonymous access in the Hibernate <ulink
- url="http://anonsvn.jboss.org/repos/hibernate/validator/trunk">SVN
- repository</ulink>. Alternatively you can view the tests using <ulink
- url="http://fisheye.jboss.org/browse/Hibernate/beanvalidation/trunk/validation...">Hibernate's
- fisheye</ulink> installation. The JSR 303 specification itself is also a
- great way to deepen your understanding of Bean Validation resp. Hibernate
- Validator.</para>
- </chapter>
+ <xi:include href="modules/furtherreading.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
</book>
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml 2009-09-28 16:09:36 UTC (rev 17576)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/customconstraints.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -28,14 +28,11 @@
<chapter id="validator-customconstraints">
<title>Creating custom constraints</title>
- <para>Though the Bean Validation API defines a whole bunch of standard
- constraint annotations such as <classname>@NotNull</classname>,
- <classname>@Size</classname>, <classname>@Min</classname> or
- <classname>@AssertTrue</classname>, one can easily think of situations, for
- which these standard annotations won't suffice. But as the specification was
- designed with extensibility in mind, you are able to create custom
- constraints tailored to your specific validation requirements in a simple
- and timely manner.</para>
+ <para>Though the Bean Validation API defines a whole set of standard
+ constraint annotations one can easily think of situations in which these
+ standard annotations won't suffice. For these cases you are able to create
+ custom constraints tailored to your specific validation requirements in a
+ simple manner.</para>
<section id="validator-customconstraints-simple" revision="1">
<title>Creating a simple constraint</title>
@@ -49,8 +46,7 @@
</listitem>
<listitem>
- <para>Implement a validator, that's able to evaluate that
- annotation</para>
+ <para>Implement a validator</para>
</listitem>
<listitem>
@@ -64,28 +60,36 @@
<para>Let's write a constraint annotation, that can be used to express
that a given string shall either be upper case or lower case. We'll
- apply it later on to ensure, that the <property>licensePlate</property>
- field of the <classname>Car</classname> class from <xref
- linkend="validator-gettingstarted" /> is always an upper-case
- string.</para>
+ apply it later on to the <property>licensePlate</property> field of the
+ <classname>Car</classname> class from <xref
+ linkend="validator-gettingstarted" /> to ensure, that the field is
+ always an upper-case string.</para>
<para>First we need a way to express the two case modes. We might use
<classname>String</classname> constants, but a better way to go is to
use a Java 5 enum for that purpose:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Enum <classname>CaseMode</classname> to express upper vs. lower
+ case</title>
+ <programlisting>package com.mycompany;
+
public enum CaseMode {
UPPER,
LOWER;
}</programlisting>
+ </example>
<para>Now we can define the actual constraint annotation. If you've
never designed an annotation before, this may look a bit scary, but
actually it's not that hard:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Defining CheckCase constraint annotation</title>
+ <programlisting>package com.mycompany;
+
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@@ -111,6 +115,7 @@
CaseMode value();
}</programlisting>
+ </example>
<para>An annotation type is defined using the <code>@interface</code>
keyword. All attributes of an annotation type are declared in a
@@ -119,29 +124,31 @@
<itemizedlist>
<listitem>
- <para>an attribute "message" that returns the default key for
- creating error messages in case the constraint is violated</para>
+ <para>an attribute <property>message</property> that returns the
+ default key for creating error messages in case the constraint is
+ violated</para>
</listitem>
<listitem>
- <para>an attribute "groups" that allows the specification of
- validation groups, to which this constraint belongs (see <xref
- linkend="validator-usingvalidator-validationgroups" />). This must
- default to an empty array of type
+ <para>an attribute <property>groups</property> that allows the
+ specification of validation groups, to which this constraint belongs
+ (see <xref linkend="validator-usingvalidator-validationgroups" />).
+ This must default to an empty array of type
<classname>Class<?></classname>.</para>
</listitem>
<listitem>
- <para>an attribute "payload" that can be used by clients of the Bean
- Validation API to asign custom payload objects to a constraint. This
- attribute is not used by the API itself.</para>
+ <para>an attribute <classname>payload</classname> that can be used
+ by clients of the Bean Validation API to asign custom payload
+ objects to a constraint. This attribute is not used by the API
+ itself.</para>
</listitem>
</itemizedlist>
<para>Besides those three mandatory attributes we add another one
- allowing for the required case mode to be specified. The name "value" is
- a special one, which can be omitted upon using the annotation, if it is
- the only attribute specified, as e.g. in
+ allowing for the required case mode to be specified. The name
+ <property>value</property> is a special one, which can be omitted upon
+ using the annotation, if it is the only attribute specified, as e.g. in
<code>@CheckCase(CaseMode.UPPER)</code>.</para>
<para>In addition we annotate the annotation type with a couple of
@@ -183,8 +190,12 @@
To do so, we implement the interface ConstraintValidator as shown
below:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Implementing a constraint validator for the constraint
+ <classname>CheckCase</classname></title>
+ <programlisting>package com.mycompany;
+
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
@@ -208,12 +219,14 @@
}
}</programlisting>
+ </example>
<para>The <classname>ConstraintValidator</classname> interface defines
two type parameters, which we set in our implementation. The first one
specifies the annotation type to be validated (in our example
- CheckCase), the second one the type of elements, which the validator can
- handle (here String).</para>
+ <classname>CheckCase</classname>), the second one the type of elements,
+ which the validator can handle (here
+ <classname>String</classname>).</para>
<para>In case a constraint annotation is allowed at elements of
different types, a <classname>ConstraintValidator</classname> for each
@@ -223,7 +236,8 @@
<para>The implementation of the validator is straightforward. The
<methodname>initialize()</methodname> method gives us access to the
attribute values of the annotation to be validated. In the example we
- store the CaseMode in a field of the validator for further usage.</para>
+ store the <classname>CaseMode</classname> in a field of the validator
+ for further usage.</para>
<para>In the <methodname>isValid()</methodname> method we implement the
logic, that determines, whether a <classname>String</classname> is valid
@@ -244,13 +258,17 @@
<para>Finally we need to specify the error message, that shall be used,
in case a <classname>@CheckCase</classname> constraint is violated. To
- do so, we create a file named
- <filename>ValidationMessages.properties</filename> under
- <filename>src/main/resources</filename> with the following
- content:</para>
+ do so, we add the following to our custom
+ <filename>ValidationMessages.properties</filename> (see also <xref
+ linkend="section-message-interpolation" />)</para>
- <programlisting>com.mycompany.constraints.checkcase=Case mode must be {value}.</programlisting>
+ <example>
+ <title>Defining a custom error message for the
+ <classname>CheckCase</classname> constraint</title>
+ <programlisting>com.mycompany.constraints.CheckCase.message=Case mode must be {value}.</programlisting>
+ </example>
+
<para>If a validation error occurs, the validation runtime will use the
default value, that we specified for the message attribute of the
<classname>@CheckCase</classname> annotation to look up the error
@@ -266,8 +284,12 @@
<property>licensePlate</property> field shall only contain upper-case
strings:</para>
- <programlisting>package com.mycompany;
+ <example id="example-car-with-checkcase">
+ <title>Applying the <classname>CheckCase</classname>
+ constraint</title>
+ <programlisting>package com.mycompany;
+
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
@@ -295,13 +317,18 @@
//getters and setters ...
}</programlisting>
+ </example>
<para>Finally let's demonstrate in a little test that the
<classname>@CheckCase</classname> constraint is properly
validated:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Testcase demonstrating the <classname>CheckCase</classname>
+ validation</title>
+ <programlisting>package com.mycompany;
+
import static org.junit.Assert.*;
import java.util.Set;
@@ -348,6 +375,7 @@
assertEquals(0, constraintViolations.size());
}
}</programlisting>
+ </example>
</section>
</section>
@@ -355,9 +383,10 @@
<title>Constraint composition</title>
<para>Looking at the <property>licensePlate</property> field of the
- <classname>Car</classname> class, we see three constraint annotations
- already. In complexer scenarios, where even more constraints could be
- applied to one element, this might become a bit confusing easily.
+ <classname>Car</classname> class in <xref
+ linkend="example-car-with-checkcase" />, we see three constraint
+ annotations already. In complexer scenarios, where even more constraints
+ could be applied to one element, this might become a bit confusing easily.
Furthermore, if we had a <property>licensePlate</property> field in
another class, we would have to copy all constraint declarations to the
other class as well, violating the DRY principle.</para>
@@ -368,8 +397,12 @@
<classname>@NotNull</classname>, <classname>@Size</classname> and
<classname>@CheckCase</classname>:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Creating a composing constraint
+ <classname>ValidLicensePlate</classname></title>
+ <programlisting>package com.mycompany;
+
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@@ -398,6 +431,7 @@
Class<? extends Payload>[] payload() default {};
}</programlisting>
+ </example>
<para>To do so, we just have to annotate the constraint declaration with
its comprising constraints (btw. that's exactly why we allowed annotation
@@ -412,8 +446,12 @@
previous version, where we declared the three constraints directly at the
field itself:</para>
- <programlisting>package com.mycompany;
+ <example>
+ <title>Application of composing constraint
+ <classname>ValidLicensePlate</classname></title>
+ <programlisting>package com.mycompany;
+
public class Car {
@ValidLicensePlate
@@ -422,6 +460,7 @@
//...
}</programlisting>
+ </example>
<para>The set of <classname>ConstraintViolations</classname> retrieved
when validating a <classname>Car</classname> instance will contain an
@@ -432,7 +471,10 @@
<classname>@ReportAsSingleViolation</classname> meta constraint can be
used as follows:</para>
- <programlisting>//...
+ <example>
+ <title>Usage of <classname>@ReportAsSingleViolation</classname></title>
+
+ <programlisting>//...
@ReportAsSingleViolation
public @interface ValidLicensePlate {
@@ -443,5 +485,6 @@
Class<? extends Payload>[] payload() default {};
}</programlisting>
+ </example>
</section>
</chapter>
Added: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml (rev 0)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/furtherreading.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- $Id: bootstrapping.xml 17523 2009-09-16 15:51:58Z hardy.ferentschik $ -->
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ -->
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<chapter>
+ <title id="chapter-further-reading">Further reading</title>
+
+ <para>Last but not least, a few pointers to further information. A great
+ source for examples is the Bean Validation TCK which can is available for
+ anonymous access in the Hibernate <ulink
+ url="http://anonsvn.jboss.org/repos/hibernate/validator/trunk">SVN
+ repository</ulink>. Alternatively you can view the tests using <ulink
+ url="http://fisheye.jboss.org/browse/Hibernate/beanvalidation/trunk/validation...">Hibernate's
+ fisheye</ulink> installation. <ulink
+ url="http://jcp.org/en/jsr/detail?id=303">The JSR 303</ulink> specification
+ itself is also a great way to deepen your understanding of Bean Validation
+ resp. Hibernate Validator.</para>
+
+ <para>If you have any furhter questions to Hibernate Validator or want to
+ share some of your use cases have a look at the <ulink
+ url="http://www.hibernate.org/469.html">Hibernate Validator Wiki</ulink> and
+ the <ulink url="https://forum.hibernate.org/viewforum.php?f=9">Hibernate
+ Validator Forum</ulink>.</para>
+
+ <para>In case you would like to report a bug use <ulink
+ url="http://opensource.atlassian.com/projects/hibernate/browse/HV">Hibernate's
+ Jira</ulink> instance. Feedback is always welcome!</para>
+</chapter>
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-09-28 16:09:36 UTC (rev 17576)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -48,7 +48,11 @@
<listitem>
<para>A properly configured remote repository. Add the following to your
- <filename>settings.xml</filename>: <programlisting><repositories>
+ <filename>settings.xml</filename>: <example>
+ <title>Configuring the JBoss Maven repository in
+ <filename>settings.xml</filename></title>
+
+ <programlisting><repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.com/maven2</url>
@@ -59,8 +63,9 @@
<enabled>false</enabled>
</snapshots>
</repository>
-</repositories></programlisting>More information about
- <filename>settings.xml</filename> can be found in the <ulink
+</repositories></programlisting>
+ </example>More information about <filename>settings.xml</filename> can
+ be found in the <ulink
url="http://maven.apache.org/ref/2.0.8/maven-settings/settings.html">Maven
Local Settings Model</ulink>.</para>
</listitem>
@@ -72,12 +77,17 @@
<para>Start by creating new Maven project using the Maven archetype plugin
as follows:</para>
- <para><programlisting>mvn archetype:generate \
+ <para><example>
+ <title>Using Maven's archetype plugin to create a sample project using
+ Hibernate Validator</title>
+
+ <programlisting>mvn archetype:generate \
-DarchetypeCatalog=http://repository.jboss.com/maven2/archetype-catalog.xml \
-DgroupId=com.mycompany \
-DartifactId=beanvalidation-gettingstarted \
-Dversion=1.0-SNAPSHOT \
- -Dpackage=com.mycompany</programlisting></para>
+ -Dpackage=com.mycompany</programlisting>
+ </example></para>
<para>When presented with the list of available archetypes in the JBoss
Maven Repository select the
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml 2009-09-28 16:09:36 UTC (rev 17576)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/integration.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -36,19 +36,23 @@
<section id="validator-checkconstraints-db" revision="2">
<title>Database schema-level validation</title>
- <para>Out of the box, Hibernate Annotations will translate the constraints
- you have defined for your entities into mapping metadata. For example, if
- a property of your entity is annotated <literal>@NotNull</literal>, its
- columns will be declared as <literal>not null</literal> in the DDL schema
- generated by Hibernate.</para>
+ <para>Out of the box, Hibernate Annotations (as of Hibernate 3.5.x) will
+ translate the constraints you have defined for your entities into mapping
+ metadata. For example, if a property of your entity is annotated
+ <literal>@NotNull</literal>, its columns will be declared as <literal>not
+ null</literal> in the DDL schema generated by Hibernate.</para>
- <para>Using hbm2ddl, domain model constraints will be expressed into the
- database schema.</para>
-
<para>If, for some reason, the feature needs to be disabled, set
<literal>hibernate.validator.apply_to_ddl</literal> to
<literal>false</literal>. See also <xref
- linkend="table-builtin-constraints" /></para>
+ linkend="table-builtin-constraints" />.</para>
+
+ <para>You can also limit the DDL constraint generation to a subset of the
+ defined constraints by setting the property
+ <property>org.hibernate.validator.group.ddl</property>. The property
+ specifies the comma seperated, fully specified classnames of the groups a
+ constraint has to be part of in order to be considered for DDL schema
+ generation.</para>
</section>
<section id="validator-checkconstraints-orm">
@@ -61,24 +65,36 @@
<title>Hibernate event-based validation</title>
<para>Hibernate Validator has a built-in Hibernate event listener -
- <classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>
- - which is part of Hibernate Annotations. Whenever a
- <literal>PreInsertEvent</literal> or <literal>PreUpdateEvent</literal>
- occurs, the listener will verify all constraints of the entity instance
- and throw an exception if any constraint is violated. Basically, objects
- will be checked before any inserts and before any updates are made by
- Hibernate. This includes changes applied by cascade! This is the most
- convenient and the easiest way to activate the validation process. On
- constraint violation, the event will raise a runtime
+ <ulink
+ url="http://fisheye.jboss.org/browse/Hibernate/core/trunk/annotations/src/main..."><classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname></ulink>
+ - which is part of Hibernate Annotations (as of Hibernate 3.5.x).
+ Whenever a <literal>PreInsertEvent</literal>,
+ <literal>PreUpdateEvent</literal> or
+ <classname>PreDeleteEvent</classname> occurs, the listener will verify
+ all constraints of the entity instance and throw an exception if any
+ constraint is violated. Per default objects will be checked before any
+ inserts or updates are made by Hibernate. Pre deletion events will per
+ default not trigger a validation. You can configure the groups to be
+ validated per event type using the properties
+ <property>javax.persistence.validation.group.pre-persist</property>,
+ <property>javax.persistence.validation.group.pre-update</property> and
+ <property>javax.persistence.validation.group.pre-remove</property>. The
+ values of these properties are the comma seperated, fully specified
+ class names of the groups to validate. <xref
+ linkend="example-beanvalidationeventlistener-config" /> shows the
+ default values for these properties. In this case they could also be
+ omitted.</para>
+
+ <para>On constraint violation, the event will raise a runtime
<classname>ConstraintViolationException</classname> which contains a set
of <literal>ConstraintViolation</literal>s describing each
failure.</para>
<para>If Hibernate Validator is present in the classpath, Hibernate
- Annotations (or Hibernate EntityManager) will use it transparently. If,
- for some reason, you want to disable this integration, set
- <literal>hibernate.validator.autoregister_listeners</literal> to
- false</para>
+ Annotations (or Hibernate EntityManager) will use it transparently. To
+ avoid validation even though Hibernate Validator is in the classpath set
+ <property>javax.persistence.validation.mode</property> to
+ <constant>none</constant>.</para>
<para><note>
<para>If the beans are not annotated with validation annotations,
@@ -89,86 +105,77 @@
Core, use the following configuration in
<literal>hibernate.cfg.xml</literal>:</para>
- <programlisting><hibernate-configuration>
- ...
+ <example id="example-beanvalidationeventlistener-config">
+ <title>Manual configuration of
+ <classname>BeanValidationEvenListener</classname></title>
+
+ <programlisting><hibernate-configuration>
+ <session-factory>
+ ...
+ <property name="javax.persistence.validation.group.pre-persist">javax.validation.Default</property>
+ <property name="javax.persistence.validation.group.pre-update">javax.validation.Default</property>
+ <property name="javax.persistence.validation.group.pre-remove"></property>
+ </session-factory>
<event type="pre-update">
- <listener
- class="<classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>"/>
+ <listener class="<classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>"/>
</event>
<event type="pre-insert">
- <listener
- class="<classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>"/>
+ <listener class="<classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>"/>
</event>
+ <event type="pre-delete">
+ <listener class="<classname>org.hibernate.cfg.beanvalidation.BeanValidationEventListener</classname>"/>
+ </event>
</hibernate-configuration></programlisting>
+ </example>
</section>
- <!--
- <section id="validator-checkconstraints-orm-jpaevent">
- <title>Java Persistence event-based validation</title>
+ <section>
+ <title>JPA </title>
- <para>Hibernate Validator is not tied to Hibernate for event based
- validation: a Java Persistence entity listener is available. Whenever an
- listened entity is persisted or updated, Hibernate Validator will verify
- all constraints of the entity instance and throw an exception if any
- constraint is violated. Basically, objects will be checked before any
- inserts and before any updates made by the Java Persistence provider.
- This includes changes applied by cascade! On constraint violation, the
- event will raise a runtime <classname>InvalidStateException</classname>
- which contains an array of <literal>InvalidValue</literal>s describing
- each failure.</para>
+ <para>If you are using JPA 2 and Hibernate Validator is in the classpath
+ the JPA2 specification requires that Bean Validation gets enabled. The
+ properties
+ <property>javax.persistence.validation.group.pre-persist</property>,
+ <property>javax.persistence.validation.group.pre-update</property> and
+ <property>javax.persistence.validation.group.pre-remove</property> as
+ described in <xref
+ linkend="validator-checkconstraints-orm-hibernateevent" /> can in this
+ case be configured in <filename>persistence.xml</filename>.
+ <filename>persistence.xml</filename> also defines a node validation-mode
+ while can be set to <constant>AUTO</constant>,
+ <constant>CALLBACK</constant>, <constant>NONE</constant>. The default is
+ <constant>AUTO</constant>. </para>
- <para>Here is how to make a class validatable:</para>
-
- <programlisting>@Entity
-@EntityListeners( JPAValidateListener.class )
-public class Submarine {
- ...
-}</programlisting>
-
- <para><note>
- <para>Compared to the Hibernate event, the Java Persistence listener
- has two drawbacks. You need to define the entity listener on every
- validatable entity. The DDL generated by your provider will not
- reflect the constraints.</para>
- </note></para>
+ <para>In a JPA 1 you will have to create and register Hibernate
+ Validator yourself. In case you are using Hibernate EntityManager you
+ can add a customized version of the
+ <classname>BeanValidationEventListener</classname> described in <xref
+ linkend="validator-checkconstraints-orm-hibernateevent" /> to your
+ project and register it manually.</para>
</section>
- -->
</section>
<section id="section-presentation-layer">
<title>Presentation layer validation</title>
- <para>When working with JSF and <productname>JBoss Seam</productname>, one
- can triggers the validation process at the presentation layer using Seam's
- JSF tags <literal><s:validate></literal> and
- <literal><s:validateAll/></literal>, letting the constraints be
- expressed on the model, and the violations presented in the view</para>
+ <para>When working with JSF2 or <productname>JBoss Seam</productname> and
+ Hibernate Validator (Bean Validation) is present in the runtime
+ environment validation is triggered for every field in the application.
+ <xref linkend="example-jsf" /> shows an example of the f:validateBean tag
+ in a JSF page. For more information refer to the Seam documentation or the
+ JSF 2 specification.</para>
- <programlisting><h:form>
- <div>
- <h:messages/>
- </div>
- <emphasis role="bold"><s:validateAll></emphasis>
- <div>
- Country:
- <h:inputText value="#{location.country}" required="true"/>
- </div>
- <div>
- Zip code:
- <h:inputText value="#{location.zip}" required="true"/>
- </div>
- <div>
- <h:commandButton/>
- </div>
- <emphasis role="bold"></s:validateAll></emphasis>
-</h:form></programlisting>
+ <example id="example-jsf2">
+ <title>Usage of Bean Validation within JSF2</title>
- <para>Going even further, and adding <productname>Ajax4JSF</productname>
- to the loop will bring client side validation with just a couple of
- additional JSF tags, again without validation definition
- duplication.</para>
-
- <para>Check the <ulink url="http://www.jboss.com/products/seam">JBoss
- Seam</ulink> documentation for more information.</para>
+ <programlisting><h:form>
+ <emphasis role="bold"><f:validateBean></emphasis>
+ <h:inputText value=”#{model.property}” />
+ <h:selectOneRadio value=”#{model.radioProperty}” > ... </h:selectOneRadio>
+ <!-- other input components here -->
+ <emphasis role="bold"></f:validateBean></emphasis>
+</h:form>
+</programlisting>
+ </example>
</section>
</chapter>
Added: validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml (rev 0)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/preface.xml 2009-09-29 11:56:52 UTC (rev 17577)
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- $Id: bootstrapping.xml 17523 2009-09-16 15:51:58Z hardy.ferentschik $ -->
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ -->
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+ <preface id="preface" revision="2">
+ <title>Preface</title>
+
+ <para>Validating data is a common task that occurs throughout any
+ application, from the presentation layer to the persistence layer. Often
+ the same validation logic is implemented in each layer, proving time
+ consuming and error-prone. To avoid duplication of these validations in
+ each layer, developers often bundle validation logic directly into the
+ domain model, cluttering domain classes with validation code which is
+ really metadata about the class itself.</para>
+
+ <mediaobject>
+ <imageobject role="fo">
+ <imagedata align="center" contentdepth="" contentwidth="150mm"
+ fileref="application-layers.png" scalefit="" />
+ </imageobject>
+
+ <imageobject role="html">
+ <imagedata depth="" fileref="application-layers.png" scalefit="1" />
+ </imageobject>
+ </mediaobject>
+
+ <para>JSR 303 - Bean Validation - defines a metadata model and API for
+ entity validation. The default metadata source is annotations, with the
+ ability to override and extend the meta-data through the use of XML. The
+ API is not tied to a specific application tier or programming model. It is
+ specifically not tied to either the web tier or the persistence tier, and
+ is available for both server-side application programming, as well as rich
+ client Swing application developers.</para>
+
+ <para><mediaobject>
+ <imageobject role="fo">
+ <imagedata align="center" contentdepth="" contentwidth="150mm"
+ fileref="application-layers2.png" scalefit="" />
+ </imageobject>
+
+ <imageobject role="html">
+ <imagedata depth="" fileref="application-layers2.png" scalefit="1" />
+ </imageobject>
+ </mediaobject></para>
+
+ <para>Hibernate Validator is the reference implementation of this
+ JSR.</para>
+ </preface>
+
+
15 years, 4 months