/* * Copyright 2015-Present Entando S.r.l. (http://www.entando.com) All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library 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. */ package org.entando.entando.aps.system.init.model.servdb; import com.j256.ormlite.field.DataType; import com.j256.ormlite.field.DatabaseField; import com.j256.ormlite.table.DatabaseTable; /** * @author E.Santoboni */ @DatabaseTable(tableName = Permission.TABLE_NAME) public class Permission { public Permission() {} @DatabaseField(columnName = "permissionname", dataType = DataType.STRING, width = 30, canBeNull = false, id = true) private String _groupName; @DatabaseField(columnName = "descr", dataType = DataType.STRING, width = 50, canBeNull = false) private String _description; public static final String TABLE_NAME = "authpermissions"; } /* CREATE TABLE authpermissions ( permissionname character varying(30) NOT NULL, descr character varying(50), CONSTRAINT authpermissions_pkey PRIMARY KEY (permissionname ) ) */