Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 19 20 package org.efs.openreports.objects; 21 22 import java.io.Serializable ; 23 24 public class ORProperty implements Serializable  25 { 26 public static final String DATE_FORMAT = "date.format"; 27 public static final String BASE_DIRECTORY = "base.directory"; 28 public static final String MAIL_SMTP_HOST = "mail.smtp.host"; 29 public static final String MAIL_SMTP_AUTH = "mail.smtp.auth"; 30 public static final String MAIL_AUTH_USER = "mail.auth.user"; 31 public static final String MAIL_AUTH_PASSWORD = "mail.auth.password"; 32 public static final String TEMP_DIRECTORY = "temp.directory"; 33 public static final String QUERYREPORT_MAXROWS = "queryreport.maxrows"; 34 35 private static final long serialVersionUID = 806285455871073093L; 36 37 private Integer id; 38 private String key; 39 private String value; 40 41 public ORProperty() 42 { 43 } 44 45 public Integer getId() 46 { 47 return id; 48 } 49 50 public void setId(Integer id) 51 { 52 this.id = id; 53 } 54 55 public String getKey() 56 { 57 return key; 58 } 59 60 public void setKey(String key) 61 { 62 this.key = key; 63 } 64 65 public String getValue() 66 { 67 return value; 68 } 69 70 public void setValue(String value) 71 { 72 this.value = value; 73 } 74 75 }
| Popular Tags
|