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.
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:
- Properties marked with a * are part of the Id of the Entity.
- Properties marked with a # are part of the Identifier of the Entity.
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 | |
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 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_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); } /** * 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); } }