View source | Discuss this page | Page history | Printable version   

ERP/2.50/Developers Guide/Reference/Entity Model/ADSystemInformation

ADSystemInformation

To the database table (AD_System_Info) of this entity.

Back to the entity model.

Properties

Note:

Property Column Constraints Type Description
id* AD_System_Info_ID Mandatory
Max Length: 32
java.lang.String
client AD_Client_ID Mandatory ADClient A Client is a company or a legal entity. You cannot share data between Clients.
organization AD_Org_ID Mandatory Organization An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.
active IsActive Mandatory java.lang.Boolean There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reporting. There are two reasons for de-activating and not deleting records:

(1) The system requires the record for auditing purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are existing invoices for it. By de-activating the Business Partner you prevent it from being used in future transactions.

creationDate Created Mandatory java.util.Date The Created field indicates the date that this record was created.
createdBy Createdby Mandatory ADUser The Created By field indicates the user who created this record.
updated Updated Mandatory java.util.Date The Updated field indicates the date that this record was updated.
updatedBy Updatedby Mandatory ADUser The Updated By field indicates the user who updated this record.
systemIdentifier# System_Identifier Max Length: 60 java.lang.String Unique ID identying this instance of Openbravo.
enableHeartbeat Isheartbeatactive java.lang.Boolean Disable Heartbeat process
postponeDate Postpone_Date java.util.Date Date set when user selects 'Later'
proxyRequired Isproxyrequired java.lang.Boolean Proxy configuration required to access internet.
proxyServer Proxy_Server Max Length: 100 java.lang.String Proxy server name.
proxyPort Proxy_Port java.lang.Long Proxy port on the proxy server.
testHeartbeat Testproxy Max Length: 60 java.lang.String Test the current proxy configuration.
antVersion ANT_Version Max Length: 20 java.lang.String The version of Ant used to build the application.
openbravoVersion# OB_Version Max Length: 20 java.lang.String The version of this installed Openbravo instance
openbravoInstallMode OB_Installmode Max Length: 20 java.lang.String The method used to install Openbravo.
codeRevision Code_Revision Max Length: 12 java.lang.String The code revision of the installed system
servletContainer Servlet_Container Max Length: 20 java.lang.String The type of servlet container Openbravo runs in.
servletContainerVersion Servlet_Container_Version Max Length: 20 java.lang.String The version of Servlet Container Openbravo runs in.
webServer Webserver Max Length: 20 java.lang.String The Web Server being used by Openbravo
webServerVersion Webserver_Version Max Length: 20 java.lang.String The version of Web Server
customizationAllowed Customization_Allowed Mandatory java.lang.Boolean In order to customize the CORE module, it's necessary to create an industry template. Checking this field the industry template is auto-generated.
lastBuild Last_Build java.util.Date Indicates the last time the system was built, its purpose is to add the ability of knowing which are the modifications done since that time in order to determinate the objects that need to be re-created.
lastDBUpdate Last_DBUpdate java.util.Date Indicates the last time the database was updated using dbsm its purpose is to add the ability of knowing which are the modifications done since that time in order to determinate if it is necessary to export them or not.
dBChecksum DB_Checksum Max Length: 32 java.lang.String Database checksum maintains a checksum for the whole database structure, it is used just in PostgreSQL databases to know if it was modified after the last update from xml files.
yourCompanyLoginImage Your_Company_Login_Image ADImage Default Company Login image
yourItServiceLoginImage Your_It_Service_Login_Image ADImage
yourCompanyMenuImage Your_Company_Menu_Image ADImage
yourCompanyBigImage Your_Company_Big_Image ADImage
yourCompanyDocumentImage Your_Company_Document_Image ADImage
supportContact Support_Contact Max Length: 200 java.lang.String IT service support contact
systemStatus System_Status Max Length: 60 java.lang.String
maturityUpdate Maturity_Update Mandatory
Max Length: 60
java.lang.String Defines the minimum accepted maturity status of modules when they are scanned for update.
maturitySearch Maturity_Search Mandatory
Max Length: 60
java.lang.String Defines the minimum accepted maturity status of modules when they are searched for installation.
requiresProxyAuthentication IsProxy_Authenticated Mandatory java.lang.Boolean Check this field in case the proxy requires authenticated user/password
proxyUser Proxy_User Max Length: 100 java.lang.String User for the authenticated proxy
proxyPassword Proxy_Password Max Length: 100 java.lang.String Password for the authenticated proxy
instancePurpose Instance_Purpose Max Length: 60 java.lang.String Determines which is the purpose of the Openbravo ERP instance
isusageauditenabled IsUsageAuditEnabled Mandatory java.lang.Boolean When the Usage Audit is enabled each request to the backend is stored on the audit table (AD_Session_Usage_Audit). For each request is stored the object_id, the module_id, the session_id and the command.

If the Heartbeat is also enabled the number of requests per module on the last 30 days is sent on each beat.

changeInstancePurpose Change_Instance_Purpose java.lang.Boolean Button to change the purpose of Community Edition instances.
showCommunityBranding Show_Community_Branding Mandatory java.lang.Boolean Sets whether the Community Branding is shown to all users or only to the System Administrator.
productionBannerImage Production_Banner_Image_ID ADImage Image used to be shown on instances with Production purpose.

There is an example image on the Login folder of the Default skin.

showForgeLogoInLogin ShowForgeLogo Mandatory java.lang.Boolean Show Openbravo Forge Logo in Login window.
yourCompanyURL YourCompanyURL Max Length: 200 java.lang.String URL of your Comapany. This info is used to make linkable the Comapany logo in the login page.
enableCustomQueries IsCustomQueryEnabled Mandatory java.lang.Boolean The Custom Queries are queries that can be sent by the Heartbeat server to be executed on the Openbravo ERP instance. This queries are used the get more extended information about the usage of the instance.

By disabling this option standard beats will be sent to HeartBeat server, but not these Custom Queries.

Java Entity Class

 
/*
 *************************************************************************
 * The contents of this file are subject to the Openbravo  Public  License
 * Version  1.1  (the  "License"),  being   the  Mozilla   Public  License
 * Version 1.1  with a permitted attribution clause; you may not  use this
 * file except in compliance with the License. You  may  obtain  a copy of
 * the License at http://www.openbravo.com/legal/license.html
 * Software distributed under the License  is  distributed  on  an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific  language  governing  rights  and  limitations
 * under the License.
 * The Original Code is Openbravo ERP.
 * The Initial Developer of the Original Code is Openbravo SLU
 * All portions are Copyright (C) 2008-2010 Openbravo SLU
 * All Rights Reserved.
 * Contributor(s):  ______________________________________.
 ************************************************************************
*/
package org.openbravo.model.ad.system;
 
import org.openbravo.base.structure.ActiveEnabled;
import org.openbravo.base.structure.BaseOBObject;
import org.openbravo.base.structure.ClientEnabled;
import org.openbravo.base.structure.OrganizationEnabled;
import org.openbravo.base.structure.Traceable;
import org.openbravo.model.ad.access.User;
import org.openbravo.model.ad.utility.Image;
import org.openbravo.model.common.enterprise.Organization;
 
import java.lang.Boolean;
import java.lang.Long;
import java.lang.String;
 
import java.util.Date;
 
/**
 * Entity class for entity ADSystemInformation (stored in table AD_System_Info).
 *
 * NOTE: This class should not be instantiated directly. To instantiate this
 * class the {@link org.openbravo.base.provider.OBProvider} should be used.
 */
public class SystemInformation extends BaseOBObject implements Traceable,
    ClientEnabled, OrganizationEnabled, ActiveEnabled {
    private static final long serialVersionUID = 1L;
    public static final String TABLE_NAME = "AD_System_Info";
    public static final String ADSystemInformation = "ADSystemInformation";
    public static final String PROPERTY_ID = "id";
    public static final String PROPERTY_CLIENT = "client";
    public static final String PROPERTY_ORGANIZATION = "organization";
    public static final String PROPERTY_ACTIVE = "active";
    public static final String PROPERTY_CREATIONDATE = "creationDate";
    public static final String PROPERTY_CREATEDBY = "createdBy";
    public static final String PROPERTY_UPDATED = "updated";
    public static final String PROPERTY_UPDATEDBY = "updatedBy";
    public static final String PROPERTY_SYSTEMIDENTIFIER = "systemIdentifier";
    public static final String PROPERTY_ENABLEHEARTBEAT = "enableHeartbeat";
    public static final String PROPERTY_POSTPONEDATE = "postponeDate";
    public static final String PROPERTY_PROXYREQUIRED = "proxyRequired";
    public static final String PROPERTY_PROXYSERVER = "proxyServer";
    public static final String PROPERTY_PROXYPORT = "proxyPort";
    public static final String PROPERTY_TESTHEARTBEAT = "testHeartbeat";
    public static final String PROPERTY_ANTVERSION = "antVersion";
    public static final String PROPERTY_OPENBRAVOVERSION = "openbravoVersion";
    public static final String PROPERTY_OPENBRAVOINSTALLMODE =
        "openbravoInstallMode";
    public static final String PROPERTY_CODEREVISION = "codeRevision";
    public static final String PROPERTY_SERVLETCONTAINER = "servletContainer";
    public static final String PROPERTY_SERVLETCONTAINERVERSION =
        "servletContainerVersion";
    public static final String PROPERTY_WEBSERVER = "webServer";
    public static final String PROPERTY_WEBSERVERVERSION = "webServerVersion";
    public static final String PROPERTY_CUSTOMIZATIONALLOWED =
        "customizationAllowed";
    public static final String PROPERTY_LASTBUILD = "lastBuild";
    public static final String PROPERTY_LASTDBUPDATE = "lastDBUpdate";
    public static final String PROPERTY_DBCHECKSUM = "dBChecksum";
    public static final String PROPERTY_YOURCOMPANYLOGINIMAGE =
        "yourCompanyLoginImage";
    public static final String PROPERTY_YOURITSERVICELOGINIMAGE =
        "yourItServiceLoginImage";
    public static final String PROPERTY_YOURCOMPANYMENUIMAGE =
        "yourCompanyMenuImage";
    public static final String PROPERTY_YOURCOMPANYBIGIMAGE =
        "yourCompanyBigImage";
    public static final String PROPERTY_YOURCOMPANYDOCUMENTIMAGE =
        "yourCompanyDocumentImage";
    public static final String PROPERTY_SUPPORTCONTACT = "supportContact";
    public static final String PROPERTY_SYSTEMSTATUS = "systemStatus";
    public static final String PROPERTY_MATURITYUPDATE = "maturityUpdate";
    public static final String PROPERTY_MATURITYSEARCH = "maturitySearch";
    public static final String PROPERTY_REQUIRESPROXYAUTHENTICATION =
        "requiresProxyAuthentication";
    public static final String PROPERTY_PROXYUSER = "proxyUser";
    public static final String PROPERTY_PROXYPASSWORD = "proxyPassword";
    public static final String PROPERTY_INSTANCEPURPOSE = "instancePurpose";
    public static final String PROPERTY_ISUSAGEAUDITENABLED =
        "isusageauditenabled";
    public static final String PROPERTY_CHANGEINSTANCEPURPOSE =
        "changeInstancePurpose";
    public static final String PROPERTY_SHOWCOMMUNITYBRANDING =
        "showCommunityBranding";
    public static final String PROPERTY_PRODUCTIONBANNERIMAGE =
        "productionBannerImage";
    public static final String PROPERTY_SHOWFORGELOGOINLOGIN =
        "showForgeLogoInLogin";
    public static final String PROPERTY_YOURCOMPANYURL = "yourCompanyURL";
    public static final String PROPERTY_ENABLECUSTOMQUERIES =
        "enableCustomQueries";
 
    public SystemInformation() {
        setDefaultValue(PROPERTY_ACTIVE, true);
        setDefaultValue(PROPERTY_CREATIONDATE, new Date());
        setDefaultValue(PROPERTY_UPDATED, new Date());
        setDefaultValue(PROPERTY_ENABLEHEARTBEAT, false);
        setDefaultValue(PROPERTY_PROXYREQUIRED, false);
        setDefaultValue(PROPERTY_TESTHEARTBEAT, "N");
        setDefaultValue(PROPERTY_CODEREVISION, "0");
        setDefaultValue(PROPERTY_CUSTOMIZATIONALLOWED, false);
        setDefaultValue(PROPERTY_LASTBUILD, new Date());
        setDefaultValue(PROPERTY_LASTDBUPDATE, new Date());
        setDefaultValue(PROPERTY_MATURITYUPDATE, "500");
        setDefaultValue(PROPERTY_MATURITYSEARCH, "500");
        setDefaultValue(PROPERTY_REQUIRESPROXYAUTHENTICATION, false);
        setDefaultValue(PROPERTY_ISUSAGEAUDITENABLED, true);
        setDefaultValue(PROPERTY_CHANGEINSTANCEPURPOSE, true);
        setDefaultValue(PROPERTY_SHOWCOMMUNITYBRANDING, true);
        setDefaultValue(PROPERTY_SHOWFORGELOGOINLOGIN, true);
        setDefaultValue(PROPERTY_ENABLECUSTOMQUERIES, true);
    }
 
    @Override
    public String getEntityName() {
        return ADSystemInformation;
    }
 
    public String getId() {
        return (String) get(PROPERTY_ID);
    }
 
    public void setId(String id) {
        set(PROPERTY_ID, id);
    }
 
    public Client getClient() {
        return (Client) get(PROPERTY_CLIENT);
    }
 
    public void setClient(Client client) {
        set(PROPERTY_CLIENT, client);
    }
 
    public Organization getOrganization() {
        return (Organization) get(PROPERTY_ORGANIZATION);
    }
 
    public void setOrganization(Organization organization) {
        set(PROPERTY_ORGANIZATION, organization);
    }
 
    public Boolean isActive() {
        return (Boolean) get(PROPERTY_ACTIVE);
    }
 
    public void setActive(Boolean active) {
        set(PROPERTY_ACTIVE, active);
    }
 
    public Date getCreationDate() {
        return (Date) get(PROPERTY_CREATIONDATE);
    }
 
    public void setCreationDate(Date creationDate) {
        set(PROPERTY_CREATIONDATE, creationDate);
    }
 
    public User getCreatedBy() {
        return (User) get(PROPERTY_CREATEDBY);
    }
 
    public void setCreatedBy(User createdBy) {
        set(PROPERTY_CREATEDBY, createdBy);
    }
 
    public Date getUpdated() {
        return (Date) get(PROPERTY_UPDATED);
    }
 
    public void setUpdated(Date updated) {
        set(PROPERTY_UPDATED, updated);
    }
 
    public User getUpdatedBy() {
        return (User) get(PROPERTY_UPDATEDBY);
    }
 
    public void setUpdatedBy(User updatedBy) {
        set(PROPERTY_UPDATEDBY, updatedBy);
    }
 
    public String getSystemIdentifier() {
        return (String) get(PROPERTY_SYSTEMIDENTIFIER);
    }
 
    public void setSystemIdentifier(String systemIdentifier) {
        set(PROPERTY_SYSTEMIDENTIFIER, systemIdentifier);
    }
 
    public Boolean isEnableHeartbeat() {
        return (Boolean) get(PROPERTY_ENABLEHEARTBEAT);
    }
 
    public void setEnableHeartbeat(Boolean enableHeartbeat) {
        set(PROPERTY_ENABLEHEARTBEAT, enableHeartbeat);
    }
 
    public Date getPostponeDate() {
        return (Date) get(PROPERTY_POSTPONEDATE);
    }
 
    public void setPostponeDate(Date postponeDate) {
        set(PROPERTY_POSTPONEDATE, postponeDate);
    }
 
    public Boolean isProxyRequired() {
        return (Boolean) get(PROPERTY_PROXYREQUIRED);
    }
 
    public void setProxyRequired(Boolean proxyRequired) {
        set(PROPERTY_PROXYREQUIRED, proxyRequired);
    }
 
    public String getProxyServer() {
        return (String) get(PROPERTY_PROXYSERVER);
    }
 
    public void setProxyServer(String proxyServer) {
        set(PROPERTY_PROXYSERVER, proxyServer);
    }
 
    public Long getProxyPort() {
        return (Long) get(PROPERTY_PROXYPORT);
    }
 
    public void setProxyPort(Long proxyPort) {
        set(PROPERTY_PROXYPORT, proxyPort);
    }
 
    public String getTestHeartbeat() {
        return (String) get(PROPERTY_TESTHEARTBEAT);
    }
 
    public void setTestHeartbeat(String testHeartbeat) {
        set(PROPERTY_TESTHEARTBEAT, testHeartbeat);
    }
 
    public String getAntVersion() {
        return (String) get(PROPERTY_ANTVERSION);
    }
 
    public void setAntVersion(String antVersion) {
        set(PROPERTY_ANTVERSION, antVersion);
    }
 
    public String getOpenbravoVersion() {
        return (String) get(PROPERTY_OPENBRAVOVERSION);
    }
 
    public void setOpenbravoVersion(String openbravoVersion) {
        set(PROPERTY_OPENBRAVOVERSION, openbravoVersion);
    }
 
    public String getOpenbravoInstallMode() {
        return (String) get(PROPERTY_OPENBRAVOINSTALLMODE);
    }
 
    public void setOpenbravoInstallMode(String openbravoInstallMode) {
        set(PROPERTY_OPENBRAVOINSTALLMODE, openbravoInstallMode);
    }
 
    public String getCodeRevision() {
        return (String) get(PROPERTY_CODEREVISION);
    }
 
    public void setCodeRevision(String codeRevision) {
        set(PROPERTY_CODEREVISION, codeRevision);
    }
 
    public String getServletContainer() {
        return (String) get(PROPERTY_SERVLETCONTAINER);
    }
 
    public void setServletContainer(String servletContainer) {
        set(PROPERTY_SERVLETCONTAINER, servletContainer);
    }
 
    public String getServletContainerVersion() {
        return (String) get(PROPERTY_SERVLETCONTAINERVERSION);
    }
 
    public void setServletContainerVersion(String servletContainerVersion) {
        set(PROPERTY_SERVLETCONTAINERVERSION, servletContainerVersion);
    }
 
    public String getWebServer() {
        return (String) get(PROPERTY_WEBSERVER);
    }
 
    public void setWebServer(String webServer) {
        set(PROPERTY_WEBSERVER, webServer);
    }
 
    public String getWebServerVersion() {
        return (String) get(PROPERTY_WEBSERVERVERSION);
    }
 
    public void setWebServerVersion(String webServerVersion) {
        set(PROPERTY_WEBSERVERVERSION, webServerVersion);
    }
 
    public Boolean isCustomizationAllowed() {
        return (Boolean) get(PROPERTY_CUSTOMIZATIONALLOWED);
    }
 
    public void setCustomizationAllowed(Boolean customizationAllowed) {
        set(PROPERTY_CUSTOMIZATIONALLOWED, customizationAllowed);
    }
 
    public Date getLastBuild() {
        return (Date) get(PROPERTY_LASTBUILD);
    }
 
    public void setLastBuild(Date lastBuild) {
        set(PROPERTY_LASTBUILD, lastBuild);
    }
 
    public Date getLastDBUpdate() {
        return (Date) get(PROPERTY_LASTDBUPDATE);
    }
 
    public void setLastDBUpdate(Date lastDBUpdate) {
        set(PROPERTY_LASTDBUPDATE, lastDBUpdate);
    }
 
    public String getDBChecksum() {
        return (String) get(PROPERTY_DBCHECKSUM);
    }
 
    public void setDBChecksum(String dBChecksum) {
        set(PROPERTY_DBCHECKSUM, dBChecksum);
    }
 
    public Image getYourCompanyLoginImage() {
        return (Image) get(PROPERTY_YOURCOMPANYLOGINIMAGE);
    }
 
    public void setYourCompanyLoginImage(Image yourCompanyLoginImage) {
        set(PROPERTY_YOURCOMPANYLOGINIMAGE, yourCompanyLoginImage);
    }
 
    public Image getYourItServiceLoginImage() {
        return (Image) get(PROPERTY_YOURITSERVICELOGINIMAGE);
    }
 
    public void setYourItServiceLoginImage(Image yourItServiceLoginImage) {
        set(PROPERTY_YOURITSERVICELOGINIMAGE, yourItServiceLoginImage);
    }
 
    public Image getYourCompanyMenuImage() {
        return (Image) get(PROPERTY_YOURCOMPANYMENUIMAGE);
    }
 
    public void setYourCompanyMenuImage(Image yourCompanyMenuImage) {
        set(PROPERTY_YOURCOMPANYMENUIMAGE, yourCompanyMenuImage);
    }
 
    public Image getYourCompanyBigImage() {
        return (Image) get(PROPERTY_YOURCOMPANYBIGIMAGE);
    }
 
    public void setYourCompanyBigImage(Image yourCompanyBigImage) {
        set(PROPERTY_YOURCOMPANYBIGIMAGE, yourCompanyBigImage);
    }
 
    public Image getYourCompanyDocumentImage() {
        return (Image) get(PROPERTY_YOURCOMPANYDOCUMENTIMAGE);
    }
 
    public void setYourCompanyDocumentImage(Image yourCompanyDocumentImage) {
        set(PROPERTY_YOURCOMPANYDOCUMENTIMAGE, yourCompanyDocumentImage);
    }
 
    public String getSupportContact() {
        return (String) get(PROPERTY_SUPPORTCONTACT);
    }
 
    public void setSupportContact(String supportContact) {
        set(PROPERTY_SUPPORTCONTACT, supportContact);
    }
 
    public String getSystemStatus() {
        return (String) get(PROPERTY_SYSTEMSTATUS);
    }
 
    public void setSystemStatus(String systemStatus) {
        set(PROPERTY_SYSTEMSTATUS, systemStatus);
    }
 
    public String getMaturityUpdate() {
        return (String) get(PROPERTY_MATURITYUPDATE);
    }
 
    public void setMaturityUpdate(String maturityUpdate) {
        set(PROPERTY_MATURITYUPDATE, maturityUpdate);
    }
 
    public String getMaturitySearch() {
        return (String) get(PROPERTY_MATURITYSEARCH);
    }
 
    public void setMaturitySearch(String maturitySearch) {
        set(PROPERTY_MATURITYSEARCH, maturitySearch);
    }
 
    public Boolean isRequiresProxyAuthentication() {
        return (Boolean) get(PROPERTY_REQUIRESPROXYAUTHENTICATION);
    }
 
    public void setRequiresProxyAuthentication(
        Boolean requiresProxyAuthentication) {
        set(PROPERTY_REQUIRESPROXYAUTHENTICATION, requiresProxyAuthentication);
    }
 
    public String getProxyUser() {
        return (String) get(PROPERTY_PROXYUSER);
    }
 
    public void setProxyUser(String proxyUser) {
        set(PROPERTY_PROXYUSER, proxyUser);
    }
 
    public String getProxyPassword() {
        return (String) get(PROPERTY_PROXYPASSWORD);
    }
 
    public void setProxyPassword(String proxyPassword) {
        set(PROPERTY_PROXYPASSWORD, proxyPassword);
    }
 
    public String getInstancePurpose() {
        return (String) get(PROPERTY_INSTANCEPURPOSE);
    }
 
    public void setInstancePurpose(String instancePurpose) {
        set(PROPERTY_INSTANCEPURPOSE, instancePurpose);
    }
 
    public Boolean isUsageauditenabled() {
        return (Boolean) get(PROPERTY_ISUSAGEAUDITENABLED);
    }
 
    public void setUsageauditenabled(Boolean isusageauditenabled) {
        set(PROPERTY_ISUSAGEAUDITENABLED, isusageauditenabled);
    }
 
    public Boolean isChangeInstancePurpose() {
        return (Boolean) get(PROPERTY_CHANGEINSTANCEPURPOSE);
    }
 
    public void setChangeInstancePurpose(Boolean changeInstancePurpose) {
        set(PROPERTY_CHANGEINSTANCEPURPOSE, changeInstancePurpose);
    }
 
    public Boolean isShowCommunityBranding() {
        return (Boolean) get(PROPERTY_SHOWCOMMUNITYBRANDING);
    }
 
    public void setShowCommunityBranding(Boolean showCommunityBranding) {
        set(PROPERTY_SHOWCOMMUNITYBRANDING, showCommunityBranding);
    }
 
    public Image getProductionBannerImage() {
        return (Image) get(PROPERTY_PRODUCTIONBANNERIMAGE);
    }
 
    public void setProductionBannerImage(Image productionBannerImage) {
        set(PROPERTY_PRODUCTIONBANNERIMAGE, productionBannerImage);
    }
 
    public Boolean isShowForgeLogoInLogin() {
        return (Boolean) get(PROPERTY_SHOWFORGELOGOINLOGIN);
    }
 
    public void setShowForgeLogoInLogin(Boolean showForgeLogoInLogin) {
        set(PROPERTY_SHOWFORGELOGOINLOGIN, showForgeLogoInLogin);
    }
 
    public String getYourCompanyURL() {
        return (String) get(PROPERTY_YOURCOMPANYURL);
    }
 
    public void setYourCompanyURL(String yourCompanyURL) {
        set(PROPERTY_YOURCOMPANYURL, yourCompanyURL);
    }
 
    public Boolean isEnableCustomQueries() {
        return (Boolean) get(PROPERTY_ENABLECUSTOMQUERIES);
    }
 
    public void setEnableCustomQueries(Boolean enableCustomQueries) {
        set(PROPERTY_ENABLECUSTOMQUERIES, enableCustomQueries);
    }
}

Retrieved from "http://wiki.openbravo.com/wiki/ERP/2.50/Developers_Guide/Reference/Entity_Model/ADSystemInformation"

This page has been accessed 2,153 times. This page was last modified on 2 July 2011, at 21:51. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.