Skip to content

Commit

Permalink
HV-94: Create a group subpackage.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpollet committed Feb 8, 2011
1 parent 608c3a9 commit bd4740c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator;
package org.hibernate.validator.group;

import java.util.List;

Expand Down
Expand Up @@ -14,12 +14,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator;
package org.hibernate.validator.group;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

Expand Down
Expand Up @@ -41,8 +41,8 @@

import org.slf4j.Logger;

import org.hibernate.validator.DefaultGroupSequenceProvider;
import org.hibernate.validator.GroupSequenceProvider;
import org.hibernate.validator.group.DefaultGroupSequenceProvider;
import org.hibernate.validator.group.GroupSequenceProvider;
import org.hibernate.validator.util.LoggerFactory;
import org.hibernate.validator.util.ReflectionHelper;

Expand Down Expand Up @@ -101,7 +101,7 @@ public final class BeanMetaDataImpl<T> implements BeanMetaData<T> {

/**
* The default group sequence provider.
* @see org.hibernate.validator.GroupSequenceProvider
* @see org.hibernate.validator.group.GroupSequenceProvider
* @see DefaultGroupSequenceProvider
*/
private DefaultGroupSequenceProvider<T> defaultGroupSequenceProvider;
Expand Down
Expand Up @@ -28,8 +28,8 @@
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

import org.hibernate.validator.DefaultGroupSequenceProvider;
import org.hibernate.validator.GroupSequenceProvider;
import org.hibernate.validator.group.DefaultGroupSequenceProvider;
import org.hibernate.validator.group.GroupSequenceProvider;

import static org.hibernate.validator.test.util.TestUtil.assertCorrectConstraintViolationMessages;
import static org.hibernate.validator.test.util.TestUtil.assertNumberOfViolations;
Expand Down
Expand Up @@ -19,7 +19,7 @@
import java.util.ArrayList;
import java.util.List;

import org.hibernate.validator.DefaultGroupSequenceProvider;
import org.hibernate.validator.group.DefaultGroupSequenceProvider;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
Expand Down
Expand Up @@ -18,7 +18,7 @@

import javax.validation.constraints.Pattern;

import org.hibernate.validator.GroupSequenceProvider;
import org.hibernate.validator.group.GroupSequenceProvider;
import org.hibernate.validator.constraints.Length;

/**
Expand Down

0 comments on commit bd4740c

Please sign in to comment.