Remove Validation and LDAP features

This commit is contained in:
Robin Bygrave
2013-04-09 00:05:42 +12:00
parent fb28c641d0
commit 9f624ec2bf
27 changed files with 132 additions and 609 deletions
@@ -3,10 +3,10 @@ package com.avaje.tests.model.basic;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import com.avaje.ebean.annotation.CacheStrategy;
import com.avaje.ebean.annotation.CacheTuning;
import com.avaje.ebean.validation.Length;
/**
* Country entity bean.
@@ -18,10 +18,10 @@ import com.avaje.ebean.validation.Length;
public class Country {
@Id
@Length(max=2)
@Size(max=2)
String code;
@Length(max=60)
@Size(max=60)
String name;
public String toString() {