Formatting

Former-commit-id: 223555f416
restapi
Jens Pelzetter 2020-05-25 20:29:25 +02:00
parent ec09fd98e4
commit 141ce9f5a8
1 changed files with 14 additions and 2 deletions

View File

@ -18,15 +18,27 @@
*/ */
package org.libreccm.configuration; package org.libreccm.configuration;
import org.hibernate.validator.constraints.NotBlank;
import javax.persistence.*;
import javax.validation.constraints.Pattern; import javax.validation.constraints.Pattern;
import java.io.Serializable; import java.io.Serializable;
import java.util.Objects; import java.util.Objects;
import static org.libreccm.core.CoreConstants.DB_SCHEMA; import static org.libreccm.core.CoreConstants.DB_SCHEMA;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.validation.constraints.NotBlank;
/** /**
* Abstract base class for all settings. * Abstract base class for all settings.
* *