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

ERP/3.0/Developers Guide/Reference/Entity Model/C ExtBP Config Property

This article is protected against manual editing because it is automatically generated from Openbravo meta-data. Learn more about writing and translating such documents.
Back button.png   Back to ERP/3.0/Developers_Guide/Reference/Entity_Model#C_ExtBP_Config_Property


C_ExtBP_Config_Property

A property is like a Map which matches an external API key with an Openbravo AD_Message_ID. It defines the data type and any other related configuration

To the database table (C_ExtBP_Config_Property) of this entity.

Properties

Note:

Property Column Constraints Type Description
id* C_Extbp_Config_Property_ID Mandatory
Max Length: 32
java.lang.String CRM Connector Property
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
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.
externalBusinessPartnerIntegrationConfiguration C_Extbp_Config_ID Mandatory
C_ExtBP_Config Configuration to connect to the CRM system API, and which also defines the properties and filters used by Openbravo to map with the external system information.
apiKey# ApiKey Mandatory
Max Length: 200
java.lang.String Identifier of a concrete property into the external system
message# AD_Message_ID ADMessage Information and Error messages
reference AD_Reference Mandatory
Max Length: 60
java.lang.String The Reference indicates the type of reference field
usedAsRecordIdentifier IsIdentifier Mandatory
java.lang.Boolean The Identifier checkbox indicates that this column is part of the identifier or key for this table
identifierSequenceNumber Identifier_Seqno java.lang.Long The sequence indicates the order for the properties within the identifier
displayInDetail IsDisplayedInDetail Mandatory
java.lang.Boolean If checked, the property will be shown in the detail view
detailSequenceNumber Detail_Seqno java.lang.Long Sequence to display the property in detail view
displayInList IsDisplayedInList Mandatory
java.lang.Boolean If checked, the property will be shown in the results list view
listSequenceNumber List_Seqno java.lang.Long Sequence to display the property in the results list view
editable IsEditable Mandatory
java.lang.Boolean It checked, the property can be edited
keyColumn IsKey Mandatory
java.lang.Boolean The key column must also be display sequence 0 in the field definition and may be hidden.
keySequenceNumber Key_Seqno java.lang.Long It allows to specify the right order when several properties are part of the key
section Sectionmessage_ID ADMessage
mandatory Ismandatory Mandatory
java.lang.Boolean The Mandatory checkbox indicates if the field is required for a record to be save to the database.
translatable Istranslatable Mandatory
java.lang.Boolean
text Text Max Length: 2000
java.lang.String The Text field stores the user entered information.
categoryKey IsCategoryKey Mandatory
java.lang.Boolean If checked, the property will be used as category key.
categoryKeySequenceNumber CategoryKey_Seqno java.lang.Long Sequence in the category key
isdefaultemail Isdefaultemail Mandatory
java.lang.Boolean If enabled, this record will be used to retrieve the default Email of the customer
detailColspan Detail_Colspan Min: 1
Max: 7
java.lang.Long
listColspan List_Colspan Min: 1
Max: 7
java.lang.Long
isbirthdaydate Isbirthdaydate Mandatory
java.lang.Boolean If enabled, this record will be used as birthday date of the customer
displayInCreate Isdisplayedincreate Mandatory
java.lang.Boolean If checked, the property will be shown in the create view
displayInEdit Isdisplayedinedit Mandatory
java.lang.Boolean If checked, the property will be shown in the edit view
createSequenceNumber Create_Seqno java.lang.Long Sequence to display the property in create view
editSequenceNumber Edit_Seqno java.lang.Long Sequence to display the property in edit view
sectionCreate Sectionmessagecreate_ID ADMessage
sectionEdit Sectionmessageedit_ID ADMessage
createColspan Create_Colspan java.lang.Long
editColspan Edit_Colspan java.lang.Long
isdefaultphone Isdefaultphone Mandatory
java.lang.Boolean If checked, this will be used as the default Phone number of the customer when present.
isAddressProperty IsAddressProperty Mandatory
java.lang.Boolean Defines if a property is considered for address only flows
isDefaultAddress IsDefaultAddress Mandatory
java.lang.Boolean If enabled, this record will be used to retrieve the default Address of the customer
isDisplayedInCustomersWindow IsDisplayedInCustomersWindow Mandatory
java.lang.Boolean If checked, the property will be shown in the Customers Window
customersWindowSeqNo CustomersWindow_SeqNo java.lang.Long Sequence to display the property in Customers Window
useAsMarketingConsentForEmail Isemailmarketingconsent Mandatory
java.lang.Boolean If enabled, the customer gives his marketing consent
identifierscanningaction Identifierscanningaction Mandatory
java.lang.Boolean Use as identifier for scanning action
crmBusinessProperty crmBusinessProperty Max Length: 60
java.lang.String Semantic field type for the CRM property
extBPConfigPropOptList C_ExtBP_Config_Prop_Opt


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-2020 Openbravo SLU
  * All Rights Reserved.
  * Contributor(s):  ______________________________________.
  ************************************************************************
 */
 package org.openbravo.model.externalbpartner;
 
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
 
 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.system.Client;
 import org.openbravo.model.ad.ui.Message;
 import org.openbravo.model.common.enterprise.Organization;
 /**
  * Entity class for entity C_ExtBP_Config_Property (stored in table C_ExtBP_Config_Property).
  * <br>
  * Help: {@literal A property is like a Map which matches an external API key with an Openbravo
      *       AD_Message_ID. It defines the data type and any other related configuration}
  * <br>
  * NOTE: This class should not be instantiated directly. To instantiate this
  * class the {@link org.openbravo.base.provider.OBProvider} should be used.
  */
 public class ExternalBusinessPartnerConfigProperty extends BaseOBObject implements Traceable, ClientEnabled, OrganizationEnabled, ActiveEnabled {
     private static final long serialVersionUID = 1L;
     public static final String TABLE_NAME = "C_ExtBP_Config_Property";
     public static final String ENTITY_NAME = "C_ExtBP_Config_Property";
 
     /**
      * Property id stored in column C_Extbp_Config_Property_ID in table C_ExtBP_Config_Property<br>
      * Help: {@literal CRM Connector Property}
      * 
      */
     public static final String PROPERTY_ID = "id";
 
     /**
      * Property client stored in column AD_Client_ID in table C_ExtBP_Config_Property 
      * @see ClientEnabled 
      * 
      */
     public static final String PROPERTY_CLIENT = "client";
 
     /**
      * Property organization stored in column AD_Org_ID in table C_ExtBP_Config_Property 
      * @see OrganizationEnabled 
      * 
      */
     public static final String PROPERTY_ORGANIZATION = "organization";
 
     /**
      * Property active stored in column Isactive in table C_ExtBP_Config_Property 
      * @see ActiveEnabled 
      * 
      */
     public static final String PROPERTY_ACTIVE = "active";
 
     /**
      * Property creationDate stored in column Created in table C_ExtBP_Config_Property 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_CREATIONDATE = "creationDate";
 
     /**
      * Property createdBy stored in column Createdby in table C_ExtBP_Config_Property 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_CREATEDBY = "createdBy";
 
     /**
      * Property updated stored in column Updated in table C_ExtBP_Config_Property 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_UPDATED = "updated";
 
     /**
      * Property updatedBy stored in column Updatedby in table C_ExtBP_Config_Property 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_UPDATEDBY = "updatedBy";
 
     /**
      * Property externalBusinessPartnerIntegrationConfiguration stored in column C_Extbp_Config_ID in table C_ExtBP_Config_Property<br>
      * Help: {@literal Configuration to connect to the CRM system API, and which also defines the properties and
      *       filters used by Openbravo to map with the external system information.}
      * 
      */
     public static final String PROPERTY_EXTERNALBUSINESSPARTNERINTEGRATIONCONFIGURATION = "externalBusinessPartnerIntegrationConfiguration";
 
     /**
      * Property apiKey stored in column ApiKey in table C_ExtBP_Config_Property 
      * 
      */
     public static final String PROPERTY_APIKEY = "apiKey";
 
     /**
      * Property message stored in column AD_Message_ID in table C_ExtBP_Config_Property<br>
      * Help: {@literal Information and Error messages}
      * 
      */
     public static final String PROPERTY_MESSAGE = "message";
 
     /**
      * Property reference stored in column AD_Reference in table C_ExtBP_Config_Property<br>
      * Help: {@literal The Reference indicates the type of reference field}
      * 
      */
     public static final String PROPERTY_REFERENCE = "reference";
 
     /**
      * Property usedAsRecordIdentifier stored in column IsIdentifier in table C_ExtBP_Config_Property<br>
      * Help: {@literal The Identifier checkbox indicates that this column is part of the identifier or key for
      *       this table}
      * 
      */
     public static final String PROPERTY_USEDASRECORDIDENTIFIER = "usedAsRecordIdentifier";
 
     /**
      * Property identifierSequenceNumber stored in column Identifier_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal The sequence indicates the order for the properties within the identifier}
      * 
      */
     public static final String PROPERTY_IDENTIFIERSEQUENCENUMBER = "identifierSequenceNumber";
 
     /**
      * Property displayInDetail stored in column IsDisplayedInDetail in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be shown in the detail view}
      * 
      */
     public static final String PROPERTY_DISPLAYINDETAIL = "displayInDetail";
 
     /**
      * Property detailSequenceNumber stored in column Detail_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence to display the property in detail view}
      * 
      */
     public static final String PROPERTY_DETAILSEQUENCENUMBER = "detailSequenceNumber";
 
     /**
      * Property displayInList stored in column IsDisplayedInList in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be shown in the results list view}
      * 
      */
     public static final String PROPERTY_DISPLAYINLIST = "displayInList";
 
     /**
      * Property listSequenceNumber stored in column List_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence to display the property in the results list view}
      * 
      */
     public static final String PROPERTY_LISTSEQUENCENUMBER = "listSequenceNumber";
 
     /**
      * Property editable stored in column IsEditable in table C_ExtBP_Config_Property<br>
      * Help: {@literal It checked, the property can be edited}
      * 
      */
     public static final String PROPERTY_EDITABLE = "editable";
 
     /**
      * Property keyColumn stored in column IsKey in table C_ExtBP_Config_Property<br>
      * Help: {@literal The key column must also be display sequence 0 in the field definition and may be hidden.}
      * 
      */
     public static final String PROPERTY_KEYCOLUMN = "keyColumn";
 
     /**
      * Property keySequenceNumber stored in column Key_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal It allows to specify the right order when several properties are part of the key}
      * 
      */
     public static final String PROPERTY_KEYSEQUENCENUMBER = "keySequenceNumber";
 
     /**
      * Property section stored in column Sectionmessage_ID in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_SECTION = "section";
 
     /**
      * Property mandatory stored in column Ismandatory in table C_ExtBP_Config_Property<br>
      * Help: {@literal The Mandatory checkbox indicates if the field is required for a record to be save to the
      *       database.}
      * 
      */
     public static final String PROPERTY_MANDATORY = "mandatory";
 
     /**
      * Property translatable stored in column Istranslatable in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_TRANSLATABLE = "translatable";
 
     /**
      * Property text stored in column Text in table C_ExtBP_Config_Property<br>
      * Help: {@literal The Text field stores the user entered information.}
      * 
      */
     public static final String PROPERTY_TEXT = "text";
 
     /**
      * Property categoryKey stored in column IsCategoryKey in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be used as category key.}
      * 
      */
     public static final String PROPERTY_CATEGORYKEY = "categoryKey";
 
     /**
      * Property categoryKeySequenceNumber stored in column CategoryKey_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence in the category key}
      * 
      */
     public static final String PROPERTY_CATEGORYKEYSEQUENCENUMBER = "categoryKeySequenceNumber";
 
     /**
      * Property isdefaultemail stored in column Isdefaultemail in table C_ExtBP_Config_Property<br>
      * Help: {@literal If enabled, this record will be used to retrieve the default Email of the customer}
      * 
      */
     public static final String PROPERTY_ISDEFAULTEMAIL = "isdefaultemail";
 
     /**
      * Property detailColspan stored in column Detail_Colspan in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_DETAILCOLSPAN = "detailColspan";
 
     /**
      * Property listColspan stored in column List_Colspan in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_LISTCOLSPAN = "listColspan";
 
     /**
      * Property isbirthdaydate stored in column Isbirthdaydate in table C_ExtBP_Config_Property<br>
      * Help: {@literal If enabled, this record will be used as birthday date of the customer}
      * 
      */
     public static final String PROPERTY_ISBIRTHDAYDATE = "isbirthdaydate";
 
     /**
      * Property displayInCreate stored in column Isdisplayedincreate in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be shown in the create view}
      * 
      */
     public static final String PROPERTY_DISPLAYINCREATE = "displayInCreate";
 
     /**
      * Property displayInEdit stored in column Isdisplayedinedit in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be shown in the edit view}
      * 
      */
     public static final String PROPERTY_DISPLAYINEDIT = "displayInEdit";
 
     /**
      * Property createSequenceNumber stored in column Create_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence to display the property in create view}
      * 
      */
     public static final String PROPERTY_CREATESEQUENCENUMBER = "createSequenceNumber";
 
     /**
      * Property editSequenceNumber stored in column Edit_Seqno in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence to display the property in edit view}
      * 
      */
     public static final String PROPERTY_EDITSEQUENCENUMBER = "editSequenceNumber";
 
     /**
      * Property sectionCreate stored in column Sectionmessagecreate_ID in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_SECTIONCREATE = "sectionCreate";
 
     /**
      * Property sectionEdit stored in column Sectionmessageedit_ID in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_SECTIONEDIT = "sectionEdit";
 
     /**
      * Property createColspan stored in column Create_Colspan in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_CREATECOLSPAN = "createColspan";
 
     /**
      * Property editColspan stored in column Edit_Colspan in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_EDITCOLSPAN = "editColspan";
 
     /**
      * Property isdefaultphone stored in column Isdefaultphone in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, this will be used as the default Phone number of the customer when present.}
      * 
      */
     public static final String PROPERTY_ISDEFAULTPHONE = "isdefaultphone";
 
     /**
      * Property isAddressProperty stored in column IsAddressProperty in table C_ExtBP_Config_Property<br>
      * Help: {@literal Defines if a property is considered for address only flows}
      * 
      */
     public static final String PROPERTY_ISADDRESSPROPERTY = "isAddressProperty";
 
     /**
      * Property isDefaultAddress stored in column IsDefaultAddress in table C_ExtBP_Config_Property<br>
      * Help: {@literal If enabled, this record will be used to retrieve the default Address of the customer}
      * 
      */
     public static final String PROPERTY_ISDEFAULTADDRESS = "isDefaultAddress";
 
     /**
      * Property isDisplayedInCustomersWindow stored in column IsDisplayedInCustomersWindow in table C_ExtBP_Config_Property<br>
      * Help: {@literal If checked, the property will be shown in the Customers Window}
      * 
      */
     public static final String PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW = "isDisplayedInCustomersWindow";
 
     /**
      * Property customersWindowSeqNo stored in column CustomersWindow_SeqNo in table C_ExtBP_Config_Property<br>
      * Help: {@literal Sequence to display the property in Customers Window}
      * 
      */
     public static final String PROPERTY_CUSTOMERSWINDOWSEQNO = "customersWindowSeqNo";
 
     /**
      * Property useAsMarketingConsentForEmail stored in column Isemailmarketingconsent in table C_ExtBP_Config_Property<br>
      * Help: {@literal If enabled, the customer gives his marketing consent}
      * 
      */
     public static final String PROPERTY_USEASMARKETINGCONSENTFOREMAIL = "useAsMarketingConsentForEmail";
 
     /**
      * Property identifierscanningaction stored in column Identifierscanningaction in table C_ExtBP_Config_Property<br>
      * Help: {@literal Use as identifier for scanning action}
      * 
      */
     public static final String PROPERTY_IDENTIFIERSCANNINGACTION = "identifierscanningaction";
 
     /**
      * Property crmBusinessProperty stored in column crmBusinessProperty in table C_ExtBP_Config_Property<br>
      * Help: {@literal Semantic field type for the CRM property}
      * 
      */
     public static final String PROPERTY_CRMBUSINESSPROPERTY = "crmBusinessProperty";
 
     /**
      * Property extBPConfigPropOptList stored in table C_ExtBP_Config_Property
      * 
      */
     public static final String PROPERTY_EXTBPCONFIGPROPOPTLIST = "extBPConfigPropOptList";
 
 
     public ExternalBusinessPartnerConfigProperty() {
         setDefaultValue(PROPERTY_ACTIVE, true);
         setDefaultValue(PROPERTY_USEDASRECORDIDENTIFIER, false);
         setDefaultValue(PROPERTY_DISPLAYINDETAIL, false);
         setDefaultValue(PROPERTY_DISPLAYINLIST, false);
         setDefaultValue(PROPERTY_EDITABLE, true);
         setDefaultValue(PROPERTY_KEYCOLUMN, false);
         setDefaultValue(PROPERTY_MANDATORY, true);
         setDefaultValue(PROPERTY_TRANSLATABLE, true);
         setDefaultValue(PROPERTY_CATEGORYKEY, false);
         setDefaultValue(PROPERTY_ISDEFAULTEMAIL, false);
         setDefaultValue(PROPERTY_DETAILCOLSPAN, (long) 1);
         setDefaultValue(PROPERTY_LISTCOLSPAN, (long) 1);
         setDefaultValue(PROPERTY_ISBIRTHDAYDATE, false);
         setDefaultValue(PROPERTY_DISPLAYINCREATE, false);
         setDefaultValue(PROPERTY_DISPLAYINEDIT, false);
         setDefaultValue(PROPERTY_CREATECOLSPAN, (long) 1);
         setDefaultValue(PROPERTY_EDITCOLSPAN, (long) 1);
         setDefaultValue(PROPERTY_ISDEFAULTPHONE, false);
         setDefaultValue(PROPERTY_ISADDRESSPROPERTY, false);
         setDefaultValue(PROPERTY_ISDEFAULTADDRESS, false);
         setDefaultValue(PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW, false);
         setDefaultValue(PROPERTY_USEASMARKETINGCONSENTFOREMAIL, false);
         setDefaultValue(PROPERTY_IDENTIFIERSCANNINGACTION, false);
         setDefaultValue(PROPERTY_EXTBPCONFIGPROPOPTLIST, new ArrayList<Object>());
     }
 
     @Override
     public String getEntityName() {
         return ENTITY_NAME;
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ID
      * 
      */
     public String getId() {
         return (String) get(PROPERTY_ID);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ID
      * 
      */
     public void setId(String id) {
         set(PROPERTY_ID, id);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CLIENT
      * 
      */
     public Client getClient() {
         return (Client) get(PROPERTY_CLIENT);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CLIENT
      * 
      */
     public void setClient(Client client) {
         set(PROPERTY_CLIENT, client);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ORGANIZATION
      * 
      */
     public Organization getOrganization() {
         return (Organization) get(PROPERTY_ORGANIZATION);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ORGANIZATION
      * 
      */
     public void setOrganization(Organization organization) {
         set(PROPERTY_ORGANIZATION, organization);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ACTIVE
      * 
      */
     public Boolean isActive() {
         return (Boolean) get(PROPERTY_ACTIVE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ACTIVE
      * 
      */
     public void setActive(Boolean active) {
         set(PROPERTY_ACTIVE, active);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATIONDATE
      * 
      */
     public Date getCreationDate() {
         return (Date) get(PROPERTY_CREATIONDATE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATIONDATE
      * 
      */
     public void setCreationDate(Date creationDate) {
         set(PROPERTY_CREATIONDATE, creationDate);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATEDBY
      * 
      */
     public User getCreatedBy() {
         return (User) get(PROPERTY_CREATEDBY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATEDBY
      * 
      */
     public void setCreatedBy(User createdBy) {
         set(PROPERTY_CREATEDBY, createdBy);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_UPDATED
      * 
      */
     public Date getUpdated() {
         return (Date) get(PROPERTY_UPDATED);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_UPDATED
      * 
      */
     public void setUpdated(Date updated) {
         set(PROPERTY_UPDATED, updated);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_UPDATEDBY
      * 
      */
     public User getUpdatedBy() {
         return (User) get(PROPERTY_UPDATEDBY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_UPDATEDBY
      * 
      */
     public void setUpdatedBy(User updatedBy) {
         set(PROPERTY_UPDATEDBY, updatedBy);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EXTERNALBUSINESSPARTNERINTEGRATIONCONFIGURATION
      * 
      */
     public ExternalBusinessPartnerConfig getExternalBusinessPartnerIntegrationConfiguration() {
         return (ExternalBusinessPartnerConfig) get(PROPERTY_EXTERNALBUSINESSPARTNERINTEGRATIONCONFIGURATION);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EXTERNALBUSINESSPARTNERINTEGRATIONCONFIGURATION
      * 
      */
     public void setExternalBusinessPartnerIntegrationConfiguration(ExternalBusinessPartnerConfig externalBusinessPartnerIntegrationConfiguration) {
         set(PROPERTY_EXTERNALBUSINESSPARTNERINTEGRATIONCONFIGURATION, externalBusinessPartnerIntegrationConfiguration);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_APIKEY
      * 
      */
     public String getApiKey() {
         return (String) get(PROPERTY_APIKEY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_APIKEY
      * 
      */
     public void setApiKey(String apiKey) {
         set(PROPERTY_APIKEY, apiKey);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_MESSAGE
      * 
      */
     public Message getMessage() {
         return (Message) get(PROPERTY_MESSAGE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_MESSAGE
      * 
      */
     public void setMessage(Message message) {
         set(PROPERTY_MESSAGE, message);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_REFERENCE
      * 
      */
     public String getReference() {
         return (String) get(PROPERTY_REFERENCE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_REFERENCE
      * 
      */
     public void setReference(String reference) {
         set(PROPERTY_REFERENCE, reference);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_USEDASRECORDIDENTIFIER
      * 
      */
     public Boolean isUsedAsRecordIdentifier() {
         return (Boolean) get(PROPERTY_USEDASRECORDIDENTIFIER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_USEDASRECORDIDENTIFIER
      * 
      */
     public void setUsedAsRecordIdentifier(Boolean usedAsRecordIdentifier) {
         set(PROPERTY_USEDASRECORDIDENTIFIER, usedAsRecordIdentifier);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_IDENTIFIERSEQUENCENUMBER
      * 
      */
     public Long getIdentifierSequenceNumber() {
         return (Long) get(PROPERTY_IDENTIFIERSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_IDENTIFIERSEQUENCENUMBER
      * 
      */
     public void setIdentifierSequenceNumber(Long identifierSequenceNumber) {
         set(PROPERTY_IDENTIFIERSEQUENCENUMBER, identifierSequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINDETAIL
      * 
      */
     public Boolean isDisplayInDetail() {
         return (Boolean) get(PROPERTY_DISPLAYINDETAIL);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINDETAIL
      * 
      */
     public void setDisplayInDetail(Boolean displayInDetail) {
         set(PROPERTY_DISPLAYINDETAIL, displayInDetail);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DETAILSEQUENCENUMBER
      * 
      */
     public Long getDetailSequenceNumber() {
         return (Long) get(PROPERTY_DETAILSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DETAILSEQUENCENUMBER
      * 
      */
     public void setDetailSequenceNumber(Long detailSequenceNumber) {
         set(PROPERTY_DETAILSEQUENCENUMBER, detailSequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINLIST
      * 
      */
     public Boolean isDisplayInList() {
         return (Boolean) get(PROPERTY_DISPLAYINLIST);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINLIST
      * 
      */
     public void setDisplayInList(Boolean displayInList) {
         set(PROPERTY_DISPLAYINLIST, displayInList);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_LISTSEQUENCENUMBER
      * 
      */
     public Long getListSequenceNumber() {
         return (Long) get(PROPERTY_LISTSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_LISTSEQUENCENUMBER
      * 
      */
     public void setListSequenceNumber(Long listSequenceNumber) {
         set(PROPERTY_LISTSEQUENCENUMBER, listSequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITABLE
      * 
      */
     public Boolean isEditable() {
         return (Boolean) get(PROPERTY_EDITABLE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITABLE
      * 
      */
     public void setEditable(Boolean editable) {
         set(PROPERTY_EDITABLE, editable);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_KEYCOLUMN
      * 
      */
     public Boolean isKeyColumn() {
         return (Boolean) get(PROPERTY_KEYCOLUMN);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_KEYCOLUMN
      * 
      */
     public void setKeyColumn(Boolean keyColumn) {
         set(PROPERTY_KEYCOLUMN, keyColumn);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_KEYSEQUENCENUMBER
      * 
      */
     public Long getKeySequenceNumber() {
         return (Long) get(PROPERTY_KEYSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_KEYSEQUENCENUMBER
      * 
      */
     public void setKeySequenceNumber(Long keySequenceNumber) {
         set(PROPERTY_KEYSEQUENCENUMBER, keySequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTION
      * 
      */
     public Message getSection() {
         return (Message) get(PROPERTY_SECTION);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTION
      * 
      */
     public void setSection(Message section) {
         set(PROPERTY_SECTION, section);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_MANDATORY
      * 
      */
     public Boolean isMandatory() {
         return (Boolean) get(PROPERTY_MANDATORY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_MANDATORY
      * 
      */
     public void setMandatory(Boolean mandatory) {
         set(PROPERTY_MANDATORY, mandatory);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_TRANSLATABLE
      * 
      */
     public Boolean isTranslatable() {
         return (Boolean) get(PROPERTY_TRANSLATABLE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_TRANSLATABLE
      * 
      */
     public void setTranslatable(Boolean translatable) {
         set(PROPERTY_TRANSLATABLE, translatable);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_TEXT
      * 
      */
     public String getText() {
         return (String) get(PROPERTY_TEXT);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_TEXT
      * 
      */
     public void setText(String text) {
         set(PROPERTY_TEXT, text);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CATEGORYKEY
      * 
      */
     public Boolean isCategoryKey() {
         return (Boolean) get(PROPERTY_CATEGORYKEY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CATEGORYKEY
      * 
      */
     public void setCategoryKey(Boolean categoryKey) {
         set(PROPERTY_CATEGORYKEY, categoryKey);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CATEGORYKEYSEQUENCENUMBER
      * 
      */
     public Long getCategoryKeySequenceNumber() {
         return (Long) get(PROPERTY_CATEGORYKEYSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CATEGORYKEYSEQUENCENUMBER
      * 
      */
     public void setCategoryKeySequenceNumber(Long categoryKeySequenceNumber) {
         set(PROPERTY_CATEGORYKEYSEQUENCENUMBER, categoryKeySequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTEMAIL
      * 
      */
     public Boolean isDefaultemail() {
         return (Boolean) get(PROPERTY_ISDEFAULTEMAIL);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTEMAIL
      * 
      */
     public void setDefaultemail(Boolean isdefaultemail) {
         set(PROPERTY_ISDEFAULTEMAIL, isdefaultemail);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DETAILCOLSPAN
      * 
      */
     public Long getDetailColspan() {
         return (Long) get(PROPERTY_DETAILCOLSPAN);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DETAILCOLSPAN
      * 
      */
     public void setDetailColspan(Long detailColspan) {
         set(PROPERTY_DETAILCOLSPAN, detailColspan);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_LISTCOLSPAN
      * 
      */
     public Long getListColspan() {
         return (Long) get(PROPERTY_LISTCOLSPAN);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_LISTCOLSPAN
      * 
      */
     public void setListColspan(Long listColspan) {
         set(PROPERTY_LISTCOLSPAN, listColspan);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISBIRTHDAYDATE
      * 
      */
     public Boolean isBirthdaydate() {
         return (Boolean) get(PROPERTY_ISBIRTHDAYDATE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISBIRTHDAYDATE
      * 
      */
     public void setBirthdaydate(Boolean isbirthdaydate) {
         set(PROPERTY_ISBIRTHDAYDATE, isbirthdaydate);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINCREATE
      * 
      */
     public Boolean isDisplayInCreate() {
         return (Boolean) get(PROPERTY_DISPLAYINCREATE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINCREATE
      * 
      */
     public void setDisplayInCreate(Boolean displayInCreate) {
         set(PROPERTY_DISPLAYINCREATE, displayInCreate);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINEDIT
      * 
      */
     public Boolean isDisplayInEdit() {
         return (Boolean) get(PROPERTY_DISPLAYINEDIT);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_DISPLAYINEDIT
      * 
      */
     public void setDisplayInEdit(Boolean displayInEdit) {
         set(PROPERTY_DISPLAYINEDIT, displayInEdit);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATESEQUENCENUMBER
      * 
      */
     public Long getCreateSequenceNumber() {
         return (Long) get(PROPERTY_CREATESEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATESEQUENCENUMBER
      * 
      */
     public void setCreateSequenceNumber(Long createSequenceNumber) {
         set(PROPERTY_CREATESEQUENCENUMBER, createSequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITSEQUENCENUMBER
      * 
      */
     public Long getEditSequenceNumber() {
         return (Long) get(PROPERTY_EDITSEQUENCENUMBER);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITSEQUENCENUMBER
      * 
      */
     public void setEditSequenceNumber(Long editSequenceNumber) {
         set(PROPERTY_EDITSEQUENCENUMBER, editSequenceNumber);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTIONCREATE
      * 
      */
     public Message getSectionCreate() {
         return (Message) get(PROPERTY_SECTIONCREATE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTIONCREATE
      * 
      */
     public void setSectionCreate(Message sectionCreate) {
         set(PROPERTY_SECTIONCREATE, sectionCreate);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTIONEDIT
      * 
      */
     public Message getSectionEdit() {
         return (Message) get(PROPERTY_SECTIONEDIT);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_SECTIONEDIT
      * 
      */
     public void setSectionEdit(Message sectionEdit) {
         set(PROPERTY_SECTIONEDIT, sectionEdit);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATECOLSPAN
      * 
      */
     public Long getCreateColspan() {
         return (Long) get(PROPERTY_CREATECOLSPAN);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CREATECOLSPAN
      * 
      */
     public void setCreateColspan(Long createColspan) {
         set(PROPERTY_CREATECOLSPAN, createColspan);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITCOLSPAN
      * 
      */
     public Long getEditColspan() {
         return (Long) get(PROPERTY_EDITCOLSPAN);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_EDITCOLSPAN
      * 
      */
     public void setEditColspan(Long editColspan) {
         set(PROPERTY_EDITCOLSPAN, editColspan);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTPHONE
      * 
      */
     public Boolean isDefaultphone() {
         return (Boolean) get(PROPERTY_ISDEFAULTPHONE);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTPHONE
      * 
      */
     public void setDefaultphone(Boolean isdefaultphone) {
         set(PROPERTY_ISDEFAULTPHONE, isdefaultphone);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISADDRESSPROPERTY
      * 
      */
     public Boolean isAddressProperty() {
         return (Boolean) get(PROPERTY_ISADDRESSPROPERTY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISADDRESSPROPERTY
      * 
      */
     public void setAddressProperty(Boolean isAddressProperty) {
         set(PROPERTY_ISADDRESSPROPERTY, isAddressProperty);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTADDRESS
      * 
      */
     public Boolean isDefaultAddress() {
         return (Boolean) get(PROPERTY_ISDEFAULTADDRESS);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDEFAULTADDRESS
      * 
      */
     public void setDefaultAddress(Boolean isDefaultAddress) {
         set(PROPERTY_ISDEFAULTADDRESS, isDefaultAddress);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW
      * 
      */
     public Boolean isDisplayedInCustomersWindow() {
         return (Boolean) get(PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW
      * 
      */
     public void setDisplayedInCustomersWindow(Boolean isDisplayedInCustomersWindow) {
         set(PROPERTY_ISDISPLAYEDINCUSTOMERSWINDOW, isDisplayedInCustomersWindow);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CUSTOMERSWINDOWSEQNO
      * 
      */
     public Long getCustomersWindowSeqNo() {
         return (Long) get(PROPERTY_CUSTOMERSWINDOWSEQNO);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CUSTOMERSWINDOWSEQNO
      * 
      */
     public void setCustomersWindowSeqNo(Long customersWindowSeqNo) {
         set(PROPERTY_CUSTOMERSWINDOWSEQNO, customersWindowSeqNo);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_USEASMARKETINGCONSENTFOREMAIL
      * 
      */
     public Boolean isUseAsMarketingConsentForEmail() {
         return (Boolean) get(PROPERTY_USEASMARKETINGCONSENTFOREMAIL);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_USEASMARKETINGCONSENTFOREMAIL
      * 
      */
     public void setUseAsMarketingConsentForEmail(Boolean useAsMarketingConsentForEmail) {
         set(PROPERTY_USEASMARKETINGCONSENTFOREMAIL, useAsMarketingConsentForEmail);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_IDENTIFIERSCANNINGACTION
      * 
      */
     public Boolean isIdentifierscanningaction() {
         return (Boolean) get(PROPERTY_IDENTIFIERSCANNINGACTION);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_IDENTIFIERSCANNINGACTION
      * 
      */
     public void setIdentifierscanningaction(Boolean identifierscanningaction) {
         set(PROPERTY_IDENTIFIERSCANNINGACTION, identifierscanningaction);
     }
 
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CRMBUSINESSPROPERTY
      * 
      */
     public String getCrmBusinessProperty() {
         return (String) get(PROPERTY_CRMBUSINESSPROPERTY);
     }
     /**
      * @see ExternalBusinessPartnerConfigProperty#PROPERTY_CRMBUSINESSPROPERTY
      * 
      */
     public void setCrmBusinessProperty(String crmBusinessProperty) {
         set(PROPERTY_CRMBUSINESSPROPERTY, crmBusinessProperty);
     }
 
     /**
      * Help: {@literal A property option is a value accepted by a certain property}<br>
      * @see ExternalBusinessPartnerConfigPropertyOption
      * 
      */
     @SuppressWarnings("unchecked")
     public List<ExternalBusinessPartnerConfigPropertyOption> getExtBPConfigPropOptList() {
       return (List<ExternalBusinessPartnerConfigPropertyOption>) get(PROPERTY_EXTBPCONFIGPROPOPTLIST);
     }
 
     /**
      * Help: {@literal A property option is a value accepted by a certain property}<br>
      * @see ExternalBusinessPartnerConfigPropertyOption
      * 
      */
     public void setExtBPConfigPropOptList(List<ExternalBusinessPartnerConfigPropertyOption> extBPConfigPropOptList) {
         set(PROPERTY_EXTBPCONFIGPROPOPTLIST, extBPConfigPropOptList);
     }
 
 }

Retrieved from "http://wiki.openbravo.com/wiki/ERP/3.0/Developers_Guide/Reference/Entity_Model/C_ExtBP_Config_Property"

This page has been accessed 577 times. This page was last modified on 4 September 2023, at 01:55. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.