/************************************************************************* * * * SignServer: The OpenSource Automated Signing Server * * * * This software 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 any later version. * * * * See terms of license at gnu.org. * * * *************************************************************************/ package org.signserver.server.config.entities; import java.io.Serializable; import javax.persistence.*; /** * Entity Bean storing the global configuration dynamically * * Information stored: *
* propertyKey : String (PrimaryKey) * propertyValue : String ** * @version $Id: GlobalConfigurationDataBean.java 3178 2013-01-11 10:54:05Z netmackan $ * */ @Entity @Table(name = "GlobalConfigData") public class GlobalConfigurationDataBean implements Serializable { @Id private String propertyKey; @Lob @Column(length = 1048576) private String propertyValue; public String getPropertyKey() { return propertyKey; } public void setPropertyKey(String propertyKey) { this.propertyKey = propertyKey; } public String getPropertyValue() { return propertyValue; } public void setPropertyValue(String propertyValue) { this.propertyValue = propertyValue; } }