id
int32
0
165k
repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
54,000
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java
CommerceOrderPaymentPersistenceImpl.clearCache
@Override public void clearCache(CommerceOrderPayment commerceOrderPayment) { entityCache.removeResult(CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED, CommerceOrderPaymentImpl.class, commerceOrderPayment.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCa...
java
@Override public void clearCache(CommerceOrderPayment commerceOrderPayment) { entityCache.removeResult(CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED, CommerceOrderPaymentImpl.class, commerceOrderPayment.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCa...
[ "@", "Override", "public", "void", "clearCache", "(", "CommerceOrderPayment", "commerceOrderPayment", ")", "{", "entityCache", ".", "removeResult", "(", "CommerceOrderPaymentModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceOrderPaymentImpl", ".", "class", ",", "comm...
Clears the cache for the commerce order payment. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "commerce", "order", "payment", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java#L682-L689
54,001
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java
CommerceOrderPaymentPersistenceImpl.findAll
@Override public List<CommerceOrderPayment> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CommerceOrderPayment> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CommerceOrderPayment", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the commerce order payments. @return the commerce order payments
[ "Returns", "all", "the", "commerce", "order", "payments", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java#L1121-L1124
54,002
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java
CPDefinitionSpecificationOptionValueWrapper.getValue
@Override public String getValue(java.util.Locale locale) { return _cpDefinitionSpecificationOptionValue.getValue(locale); }
java
@Override public String getValue(java.util.Locale locale) { return _cpDefinitionSpecificationOptionValue.getValue(locale); }
[ "@", "Override", "public", "String", "getValue", "(", "java", ".", "util", ".", "Locale", "locale", ")", "{", "return", "_cpDefinitionSpecificationOptionValue", ".", "getValue", "(", "locale", ")", ";", "}" ]
Returns the localized value of this cp definition specification option value in the language. Uses the default language if no localization exists for the requested language. @param locale the locale of the language @return the localized value of this cp definition specification option value
[ "Returns", "the", "localized", "value", "of", "this", "cp", "definition", "specification", "option", "value", "in", "the", "language", ".", "Uses", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java#L388-L391
54,003
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java
CPDefinitionSpecificationOptionValueWrapper.getValue
@Override public String getValue(String languageId, boolean useDefault) { return _cpDefinitionSpecificationOptionValue.getValue(languageId, useDefault); }
java
@Override public String getValue(String languageId, boolean useDefault) { return _cpDefinitionSpecificationOptionValue.getValue(languageId, useDefault); }
[ "@", "Override", "public", "String", "getValue", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_cpDefinitionSpecificationOptionValue", ".", "getValue", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized value of this cp definition specification option value in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requ...
[ "Returns", "the", "localized", "value", "of", "this", "cp", "definition", "specification", "option", "value", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language",...
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java#L423-L427
54,004
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java
CPDefinitionSpecificationOptionValueWrapper.setValue
@Override public void setValue(String value, java.util.Locale locale) { _cpDefinitionSpecificationOptionValue.setValue(value, locale); }
java
@Override public void setValue(String value, java.util.Locale locale) { _cpDefinitionSpecificationOptionValue.setValue(value, locale); }
[ "@", "Override", "public", "void", "setValue", "(", "String", "value", ",", "java", ".", "util", ".", "Locale", "locale", ")", "{", "_cpDefinitionSpecificationOptionValue", ".", "setValue", "(", "value", ",", "locale", ")", ";", "}" ]
Sets the localized value of this cp definition specification option value in the language. @param value the localized value of this cp definition specification option value @param locale the locale of the language
[ "Sets", "the", "localized", "value", "of", "this", "cp", "definition", "specification", "option", "value", "in", "the", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java#L685-L688
54,005
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java
CPDefinitionSpecificationOptionValueWrapper.setValueMap
@Override public void setValueMap(Map<java.util.Locale, String> valueMap) { _cpDefinitionSpecificationOptionValue.setValueMap(valueMap); }
java
@Override public void setValueMap(Map<java.util.Locale, String> valueMap) { _cpDefinitionSpecificationOptionValue.setValueMap(valueMap); }
[ "@", "Override", "public", "void", "setValueMap", "(", "Map", "<", "java", ".", "util", ".", "Locale", ",", "String", ">", "valueMap", ")", "{", "_cpDefinitionSpecificationOptionValue", ".", "setValueMap", "(", "valueMap", ")", ";", "}" ]
Sets the localized values of this cp definition specification option value from the map of locales and localized values. @param valueMap the locales and localized values of this cp definition specification option value
[ "Sets", "the", "localized", "values", "of", "this", "cp", "definition", "specification", "option", "value", "from", "the", "map", "of", "locales", "and", "localized", "values", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java#L714-L717
54,006
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java
CPDefinitionSpecificationOptionValueWrapper.setValueMap
@Override public void setValueMap(Map<java.util.Locale, String> valueMap, java.util.Locale defaultLocale) { _cpDefinitionSpecificationOptionValue.setValueMap(valueMap, defaultLocale); }
java
@Override public void setValueMap(Map<java.util.Locale, String> valueMap, java.util.Locale defaultLocale) { _cpDefinitionSpecificationOptionValue.setValueMap(valueMap, defaultLocale); }
[ "@", "Override", "public", "void", "setValueMap", "(", "Map", "<", "java", ".", "util", ".", "Locale", ",", "String", ">", "valueMap", ",", "java", ".", "util", ".", "Locale", "defaultLocale", ")", "{", "_cpDefinitionSpecificationOptionValue", ".", "setValueMa...
Sets the localized values of this cp definition specification option value from the map of locales and localized values, and sets the default locale. @param valueMap the locales and localized values of this cp definition specification option value @param defaultLocale the default locale
[ "Sets", "the", "localized", "values", "of", "this", "cp", "definition", "specification", "option", "value", "from", "the", "map", "of", "locales", "and", "localized", "values", "and", "sets", "the", "default", "locale", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionSpecificationOptionValueWrapper.java#L725-L730
54,007
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java
CPDisplayLayoutLocalServiceBaseImpl.deleteCPDisplayLayout
@Indexable(type = IndexableType.DELETE) @Override public CPDisplayLayout deleteCPDisplayLayout(long CPDisplayLayoutId) throws PortalException { return cpDisplayLayoutPersistence.remove(CPDisplayLayoutId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CPDisplayLayout deleteCPDisplayLayout(long CPDisplayLayoutId) throws PortalException { return cpDisplayLayoutPersistence.remove(CPDisplayLayoutId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CPDisplayLayout", "deleteCPDisplayLayout", "(", "long", "CPDisplayLayoutId", ")", "throws", "PortalException", "{", "return", "cpDisplayLayoutPersistence", ".", "remov...
Deletes the cp display layout with the primary key from the database. Also notifies the appropriate model listeners. @param CPDisplayLayoutId the primary key of the cp display layout @return the cp display layout that was removed @throws PortalException if a cp display layout with the primary key could not be found
[ "Deletes", "the", "cp", "display", "layout", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java#L141-L146
54,008
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java
CPDisplayLayoutLocalServiceBaseImpl.deleteCPDisplayLayout
@Indexable(type = IndexableType.DELETE) @Override public CPDisplayLayout deleteCPDisplayLayout( CPDisplayLayout cpDisplayLayout) { return cpDisplayLayoutPersistence.remove(cpDisplayLayout); }
java
@Indexable(type = IndexableType.DELETE) @Override public CPDisplayLayout deleteCPDisplayLayout( CPDisplayLayout cpDisplayLayout) { return cpDisplayLayoutPersistence.remove(cpDisplayLayout); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CPDisplayLayout", "deleteCPDisplayLayout", "(", "CPDisplayLayout", "cpDisplayLayout", ")", "{", "return", "cpDisplayLayoutPersistence", ".", "remove", "(", "cpDisplayL...
Deletes the cp display layout from the database. Also notifies the appropriate model listeners. @param cpDisplayLayout the cp display layout @return the cp display layout that was removed
[ "Deletes", "the", "cp", "display", "layout", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java#L154-L159
54,009
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java
CPDisplayLayoutLocalServiceBaseImpl.getCPDisplayLayoutsByUuidAndCompanyId
@Override public List<CPDisplayLayout> getCPDisplayLayoutsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CPDisplayLayout> orderByComparator) { return cpDisplayLayoutPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
java
@Override public List<CPDisplayLayout> getCPDisplayLayoutsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CPDisplayLayout> orderByComparator) { return cpDisplayLayoutPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
[ "@", "Override", "public", "List", "<", "CPDisplayLayout", ">", "getCPDisplayLayoutsByUuidAndCompanyId", "(", "String", "uuid", ",", "long", "companyId", ",", "int", "start", ",", "int", "end", ",", "OrderByComparator", "<", "CPDisplayLayout", ">", "orderByComparato...
Returns a range of cp display layouts matching the UUID and company. @param uuid the UUID of the cp display layouts @param companyId the primary key of the company @param start the lower bound of the range of cp display layouts @param end the upper bound of the range of cp display layouts (not inclusive) @param orderB...
[ "Returns", "a", "range", "of", "cp", "display", "layouts", "matching", "the", "UUID", "and", "company", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDisplayLayoutLocalServiceBaseImpl.java#L417-L423
54,010
liferay/com-liferay-commerce
commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRuleServiceBaseImpl.java
CommerceDiscountRuleServiceBaseImpl.setCommerceDiscountRelService
public void setCommerceDiscountRelService( com.liferay.commerce.discount.service.CommerceDiscountRelService commerceDiscountRelService) { this.commerceDiscountRelService = commerceDiscountRelService; }
java
public void setCommerceDiscountRelService( com.liferay.commerce.discount.service.CommerceDiscountRelService commerceDiscountRelService) { this.commerceDiscountRelService = commerceDiscountRelService; }
[ "public", "void", "setCommerceDiscountRelService", "(", "com", ".", "liferay", ".", "commerce", ".", "discount", ".", "service", ".", "CommerceDiscountRelService", "commerceDiscountRelService", ")", "{", "this", ".", "commerceDiscountRelService", "=", "commerceDiscountRel...
Sets the commerce discount rel remote service. @param commerceDiscountRelService the commerce discount rel remote service
[ "Sets", "the", "commerce", "discount", "rel", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRuleServiceBaseImpl.java#L151-L154
54,011
liferay/com-liferay-commerce
commerce-tax-api/src/main/java/com/liferay/commerce/tax/service/CommerceTaxMethodLocalServiceWrapper.java
CommerceTaxMethodLocalServiceWrapper.getCommerceTaxMethod
@Override public com.liferay.commerce.tax.model.CommerceTaxMethod getCommerceTaxMethod( long commerceTaxMethodId) throws com.liferay.portal.kernel.exception.PortalException { return _commerceTaxMethodLocalService.getCommerceTaxMethod(commerceTaxMethodId); }
java
@Override public com.liferay.commerce.tax.model.CommerceTaxMethod getCommerceTaxMethod( long commerceTaxMethodId) throws com.liferay.portal.kernel.exception.PortalException { return _commerceTaxMethodLocalService.getCommerceTaxMethod(commerceTaxMethodId); }
[ "@", "Override", "public", "com", ".", "liferay", ".", "commerce", ".", "tax", ".", "model", ".", "CommerceTaxMethod", "getCommerceTaxMethod", "(", "long", "commerceTaxMethodId", ")", "throws", "com", ".", "liferay", ".", "portal", ".", "kernel", ".", "excepti...
Returns the commerce tax method with the primary key. @param commerceTaxMethodId the primary key of the commerce tax method @return the commerce tax method @throws PortalException if a commerce tax method with the primary key could not be found
[ "Returns", "the", "commerce", "tax", "method", "with", "the", "primary", "key", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-tax-api/src/main/java/com/liferay/commerce/tax/service/CommerceTaxMethodLocalServiceWrapper.java#L225-L230
54,012
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java
CPInstanceLocalServiceBaseImpl.deleteCPInstance
@Indexable(type = IndexableType.DELETE) @Override public CPInstance deleteCPInstance(long CPInstanceId) throws PortalException { return cpInstancePersistence.remove(CPInstanceId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CPInstance deleteCPInstance(long CPInstanceId) throws PortalException { return cpInstancePersistence.remove(CPInstanceId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CPInstance", "deleteCPInstance", "(", "long", "CPInstanceId", ")", "throws", "PortalException", "{", "return", "cpInstancePersistence", ".", "remove", "(", "CPInst...
Deletes the cp instance with the primary key from the database. Also notifies the appropriate model listeners. @param CPInstanceId the primary key of the cp instance @return the cp instance that was removed @throws PortalException if a cp instance with the primary key could not be found
[ "Deletes", "the", "cp", "instance", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java#L151-L156
54,013
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java
CPInstanceLocalServiceBaseImpl.getCPInstancesByUuidAndCompanyId
@Override public List<CPInstance> getCPInstancesByUuidAndCompanyId(String uuid, long companyId, int start, int end, OrderByComparator<CPInstance> orderByComparator) { return cpInstancePersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
java
@Override public List<CPInstance> getCPInstancesByUuidAndCompanyId(String uuid, long companyId, int start, int end, OrderByComparator<CPInstance> orderByComparator) { return cpInstancePersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
[ "@", "Override", "public", "List", "<", "CPInstance", ">", "getCPInstancesByUuidAndCompanyId", "(", "String", "uuid", ",", "long", "companyId", ",", "int", "start", ",", "int", "end", ",", "OrderByComparator", "<", "CPInstance", ">", "orderByComparator", ")", "{...
Returns a range of cp instances matching the UUID and company. @param uuid the UUID of the cp instances @param companyId the primary key of the company @param start the lower bound of the range of cp instances @param end the upper bound of the range of cp instances (not inclusive) @param orderByComparator the comparat...
[ "Returns", "a", "range", "of", "cp", "instances", "matching", "the", "UUID", "and", "company", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java#L472-L478
54,014
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java
CPInstanceLocalServiceBaseImpl.setWorkflowInstanceLinkLocalService
public void setWorkflowInstanceLinkLocalService( com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) { this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService; }
java
public void setWorkflowInstanceLinkLocalService( com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) { this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService; }
[ "public", "void", "setWorkflowInstanceLinkLocalService", "(", "com", ".", "liferay", ".", "portal", ".", "kernel", ".", "service", ".", "WorkflowInstanceLinkLocalService", "workflowInstanceLinkLocalService", ")", "{", "this", ".", "workflowInstanceLinkLocalService", "=", ...
Sets the workflow instance link local service. @param workflowInstanceLinkLocalService the workflow instance link local service
[ "Sets", "the", "workflow", "instance", "link", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPInstanceLocalServiceBaseImpl.java#L1452-L1455
54,015
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPMeasurementUnitServiceBaseImpl.java
CPMeasurementUnitServiceBaseImpl.setCPTaxCategoryService
public void setCPTaxCategoryService( com.liferay.commerce.product.service.CPTaxCategoryService cpTaxCategoryService) { this.cpTaxCategoryService = cpTaxCategoryService; }
java
public void setCPTaxCategoryService( com.liferay.commerce.product.service.CPTaxCategoryService cpTaxCategoryService) { this.cpTaxCategoryService = cpTaxCategoryService; }
[ "public", "void", "setCPTaxCategoryService", "(", "com", ".", "liferay", ".", "commerce", ".", "product", ".", "service", ".", "CPTaxCategoryService", "cpTaxCategoryService", ")", "{", "this", ".", "cpTaxCategoryService", "=", "cpTaxCategoryService", ";", "}" ]
Sets the cp tax category remote service. @param cpTaxCategoryService the cp tax category remote service
[ "Sets", "the", "cp", "tax", "category", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPMeasurementUnitServiceBaseImpl.java#L1151-L1154
54,016
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java
CommerceUserSegmentCriterionServiceBaseImpl.setCommerceUserSegmentCriterionLocalService
public void setCommerceUserSegmentCriterionLocalService( com.liferay.commerce.user.segment.service.CommerceUserSegmentCriterionLocalService commerceUserSegmentCriterionLocalService) { this.commerceUserSegmentCriterionLocalService = commerceUserSegmentCriterionLocalService; }
java
public void setCommerceUserSegmentCriterionLocalService( com.liferay.commerce.user.segment.service.CommerceUserSegmentCriterionLocalService commerceUserSegmentCriterionLocalService) { this.commerceUserSegmentCriterionLocalService = commerceUserSegmentCriterionLocalService; }
[ "public", "void", "setCommerceUserSegmentCriterionLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "user", ".", "segment", ".", "service", ".", "CommerceUserSegmentCriterionLocalService", "commerceUserSegmentCriterionLocalService", ")", "{", "this", ".", "...
Sets the commerce user segment criterion local service. @param commerceUserSegmentCriterionLocalService the commerce user segment criterion local service
[ "Sets", "the", "commerce", "user", "segment", "criterion", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java#L74-L77
54,017
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java
CommerceUserSegmentCriterionServiceBaseImpl.setCommerceUserSegmentEntryLocalService
public void setCommerceUserSegmentEntryLocalService( com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryLocalService commerceUserSegmentEntryLocalService) { this.commerceUserSegmentEntryLocalService = commerceUserSegmentEntryLocalService; }
java
public void setCommerceUserSegmentEntryLocalService( com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryLocalService commerceUserSegmentEntryLocalService) { this.commerceUserSegmentEntryLocalService = commerceUserSegmentEntryLocalService; }
[ "public", "void", "setCommerceUserSegmentEntryLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "user", ".", "segment", ".", "service", ".", "CommerceUserSegmentEntryLocalService", "commerceUserSegmentEntryLocalService", ")", "{", "this", ".", "commerceUser...
Sets the commerce user segment entry local service. @param commerceUserSegmentEntryLocalService the commerce user segment entry local service
[ "Sets", "the", "commerce", "user", "segment", "entry", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java#L131-L134
54,018
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java
CommerceUserSegmentCriterionServiceBaseImpl.setCommerceUserSegmentEntryService
public void setCommerceUserSegmentEntryService( com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryService commerceUserSegmentEntryService) { this.commerceUserSegmentEntryService = commerceUserSegmentEntryService; }
java
public void setCommerceUserSegmentEntryService( com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryService commerceUserSegmentEntryService) { this.commerceUserSegmentEntryService = commerceUserSegmentEntryService; }
[ "public", "void", "setCommerceUserSegmentEntryService", "(", "com", ".", "liferay", ".", "commerce", ".", "user", ".", "segment", ".", "service", ".", "CommerceUserSegmentEntryService", "commerceUserSegmentEntryService", ")", "{", "this", ".", "commerceUserSegmentEntrySer...
Sets the commerce user segment entry remote service. @param commerceUserSegmentEntryService the commerce user segment entry remote service
[ "Sets", "the", "commerce", "user", "segment", "entry", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/base/CommerceUserSegmentCriterionServiceBaseImpl.java#L150-L153
54,019
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java
CommerceNotificationAttachmentLocalServiceBaseImpl.deleteCommerceNotificationAttachment
@Indexable(type = IndexableType.DELETE) @Override public CommerceNotificationAttachment deleteCommerceNotificationAttachment( CommerceNotificationAttachment commerceNotificationAttachment) { return commerceNotificationAttachmentPersistence.remove(commerceNotificationAttachment); }
java
@Indexable(type = IndexableType.DELETE) @Override public CommerceNotificationAttachment deleteCommerceNotificationAttachment( CommerceNotificationAttachment commerceNotificationAttachment) { return commerceNotificationAttachmentPersistence.remove(commerceNotificationAttachment); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CommerceNotificationAttachment", "deleteCommerceNotificationAttachment", "(", "CommerceNotificationAttachment", "commerceNotificationAttachment", ")", "{", "return", "commerce...
Deletes the commerce notification attachment from the database. Also notifies the appropriate model listeners. @param commerceNotificationAttachment the commerce notification attachment @return the commerce notification attachment that was removed
[ "Deletes", "the", "commerce", "notification", "attachment", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java#L136-L141
54,020
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java
CommerceNotificationAttachmentLocalServiceBaseImpl.setCommerceNotificationTemplateUserSegmentRelLocalService
public void setCommerceNotificationTemplateUserSegmentRelLocalService( com.liferay.commerce.notification.service.CommerceNotificationTemplateUserSegmentRelLocalService commerceNotificationTemplateUserSegmentRelLocalService) { this.commerceNotificationTemplateUserSegmentRelLocalService = commerceNotificationTemplate...
java
public void setCommerceNotificationTemplateUserSegmentRelLocalService( com.liferay.commerce.notification.service.CommerceNotificationTemplateUserSegmentRelLocalService commerceNotificationTemplateUserSegmentRelLocalService) { this.commerceNotificationTemplateUserSegmentRelLocalService = commerceNotificationTemplate...
[ "public", "void", "setCommerceNotificationTemplateUserSegmentRelLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "notification", ".", "service", ".", "CommerceNotificationTemplateUserSegmentRelLocalService", "commerceNotificationTemplateUserSegmentRelLocalService", ")...
Sets the commerce notification template user segment rel local service. @param commerceNotificationTemplateUserSegmentRelLocalService the commerce notification template user segment rel local service
[ "Sets", "the", "commerce", "notification", "template", "user", "segment", "rel", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java#L580-L583
54,021
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java
CommerceNotificationAttachmentLocalServiceBaseImpl.setDLAppLocalService
public void setDLAppLocalService( com.liferay.document.library.kernel.service.DLAppLocalService dlAppLocalService) { this.dlAppLocalService = dlAppLocalService; }
java
public void setDLAppLocalService( com.liferay.document.library.kernel.service.DLAppLocalService dlAppLocalService) { this.dlAppLocalService = dlAppLocalService; }
[ "public", "void", "setDLAppLocalService", "(", "com", ".", "liferay", ".", "document", ".", "library", ".", "kernel", ".", "service", ".", "DLAppLocalService", "dlAppLocalService", ")", "{", "this", ".", "dlAppLocalService", "=", "dlAppLocalService", ";", "}" ]
Sets the dl app local service. @param dlAppLocalService the dl app local service
[ "Sets", "the", "dl", "app", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationAttachmentLocalServiceBaseImpl.java#L731-L734
54,022
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceEntryLocalService
public void setCommercePriceEntryLocalService( com.liferay.commerce.price.list.service.CommercePriceEntryLocalService commercePriceEntryLocalService) { this.commercePriceEntryLocalService = commercePriceEntryLocalService; }
java
public void setCommercePriceEntryLocalService( com.liferay.commerce.price.list.service.CommercePriceEntryLocalService commercePriceEntryLocalService) { this.commercePriceEntryLocalService = commercePriceEntryLocalService; }
[ "public", "void", "setCommercePriceEntryLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceEntryLocalService", "commercePriceEntryLocalService", ")", "{", "this", ".", "commercePriceEntryLocalService",...
Sets the commerce price entry local service. @param commercePriceEntryLocalService the commerce price entry local service
[ "Sets", "the", "commerce", "price", "entry", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L78-L81
54,023
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceEntryService
public void setCommercePriceEntryService( com.liferay.commerce.price.list.service.CommercePriceEntryService commercePriceEntryService) { this.commercePriceEntryService = commercePriceEntryService; }
java
public void setCommercePriceEntryService( com.liferay.commerce.price.list.service.CommercePriceEntryService commercePriceEntryService) { this.commercePriceEntryService = commercePriceEntryService; }
[ "public", "void", "setCommercePriceEntryService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceEntryService", "commercePriceEntryService", ")", "{", "this", ".", "commercePriceEntryService", "=", "commerceP...
Sets the commerce price entry remote service. @param commercePriceEntryService the commerce price entry remote service
[ "Sets", "the", "commerce", "price", "entry", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L97-L100
54,024
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceListLocalService
public void setCommercePriceListLocalService( com.liferay.commerce.price.list.service.CommercePriceListLocalService commercePriceListLocalService) { this.commercePriceListLocalService = commercePriceListLocalService; }
java
public void setCommercePriceListLocalService( com.liferay.commerce.price.list.service.CommercePriceListLocalService commercePriceListLocalService) { this.commercePriceListLocalService = commercePriceListLocalService; }
[ "public", "void", "setCommercePriceListLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceListLocalService", "commercePriceListLocalService", ")", "{", "this", ".", "commercePriceListLocalService", "...
Sets the commerce price list local service. @param commercePriceListLocalService the commerce price list local service
[ "Sets", "the", "commerce", "price", "list", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L135-L138
54,025
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceListService
public void setCommercePriceListService( com.liferay.commerce.price.list.service.CommercePriceListService commercePriceListService) { this.commercePriceListService = commercePriceListService; }
java
public void setCommercePriceListService( com.liferay.commerce.price.list.service.CommercePriceListService commercePriceListService) { this.commercePriceListService = commercePriceListService; }
[ "public", "void", "setCommercePriceListService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceListService", "commercePriceListService", ")", "{", "this", ".", "commercePriceListService", "=", "commercePrice...
Sets the commerce price list remote service. @param commercePriceListService the commerce price list remote service
[ "Sets", "the", "commerce", "price", "list", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L154-L157
54,026
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceListAccountRelLocalService
public void setCommercePriceListAccountRelLocalService( com.liferay.commerce.price.list.service.CommercePriceListAccountRelLocalService commercePriceListAccountRelLocalService) { this.commercePriceListAccountRelLocalService = commercePriceListAccountRelLocalService; }
java
public void setCommercePriceListAccountRelLocalService( com.liferay.commerce.price.list.service.CommercePriceListAccountRelLocalService commercePriceListAccountRelLocalService) { this.commercePriceListAccountRelLocalService = commercePriceListAccountRelLocalService; }
[ "public", "void", "setCommercePriceListAccountRelLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceListAccountRelLocalService", "commercePriceListAccountRelLocalService", ")", "{", "this", ".", "comme...
Sets the commerce price list account rel local service. @param commercePriceListAccountRelLocalService the commerce price list account rel local service
[ "Sets", "the", "commerce", "price", "list", "account", "rel", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L211-L214
54,027
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceListUserSegmentEntryRelLocalService
public void setCommercePriceListUserSegmentEntryRelLocalService( com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelLocalService commercePriceListUserSegmentEntryRelLocalService) { this.commercePriceListUserSegmentEntryRelLocalService = commercePriceListUserSegmentEntryRelLocalService; }
java
public void setCommercePriceListUserSegmentEntryRelLocalService( com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelLocalService commercePriceListUserSegmentEntryRelLocalService) { this.commercePriceListUserSegmentEntryRelLocalService = commercePriceListUserSegmentEntryRelLocalService; }
[ "public", "void", "setCommercePriceListUserSegmentEntryRelLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceListUserSegmentEntryRelLocalService", "commercePriceListUserSegmentEntryRelLocalService", ")", "{"...
Sets the commerce price list user segment entry rel local service. @param commercePriceListUserSegmentEntryRelLocalService the commerce price list user segment entry rel local service
[ "Sets", "the", "commerce", "price", "list", "user", "segment", "entry", "rel", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L268-L271
54,028
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommercePriceListUserSegmentEntryRelService
public void setCommercePriceListUserSegmentEntryRelService( com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelService commercePriceListUserSegmentEntryRelService) { this.commercePriceListUserSegmentEntryRelService = commercePriceListUserSegmentEntryRelService; }
java
public void setCommercePriceListUserSegmentEntryRelService( com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelService commercePriceListUserSegmentEntryRelService) { this.commercePriceListUserSegmentEntryRelService = commercePriceListUserSegmentEntryRelService; }
[ "public", "void", "setCommercePriceListUserSegmentEntryRelService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommercePriceListUserSegmentEntryRelService", "commercePriceListUserSegmentEntryRelService", ")", "{", "this", "...
Sets the commerce price list user segment entry rel remote service. @param commercePriceListUserSegmentEntryRelService the commerce price list user segment entry rel remote service
[ "Sets", "the", "commerce", "price", "list", "user", "segment", "entry", "rel", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L287-L290
54,029
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommerceTierPriceEntryLocalService
public void setCommerceTierPriceEntryLocalService( com.liferay.commerce.price.list.service.CommerceTierPriceEntryLocalService commerceTierPriceEntryLocalService) { this.commerceTierPriceEntryLocalService = commerceTierPriceEntryLocalService; }
java
public void setCommerceTierPriceEntryLocalService( com.liferay.commerce.price.list.service.CommerceTierPriceEntryLocalService commerceTierPriceEntryLocalService) { this.commerceTierPriceEntryLocalService = commerceTierPriceEntryLocalService; }
[ "public", "void", "setCommerceTierPriceEntryLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommerceTierPriceEntryLocalService", "commerceTierPriceEntryLocalService", ")", "{", "this", ".", "commerceTierPriceEnt...
Sets the commerce tier price entry local service. @param commerceTierPriceEntryLocalService the commerce tier price entry local service
[ "Sets", "the", "commerce", "tier", "price", "entry", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L325-L328
54,030
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java
CommercePriceListAccountRelServiceBaseImpl.setCommerceTierPriceEntryService
public void setCommerceTierPriceEntryService( com.liferay.commerce.price.list.service.CommerceTierPriceEntryService commerceTierPriceEntryService) { this.commerceTierPriceEntryService = commerceTierPriceEntryService; }
java
public void setCommerceTierPriceEntryService( com.liferay.commerce.price.list.service.CommerceTierPriceEntryService commerceTierPriceEntryService) { this.commerceTierPriceEntryService = commerceTierPriceEntryService; }
[ "public", "void", "setCommerceTierPriceEntryService", "(", "com", ".", "liferay", ".", "commerce", ".", "price", ".", "list", ".", "service", ".", "CommerceTierPriceEntryService", "commerceTierPriceEntryService", ")", "{", "this", ".", "commerceTierPriceEntryService", "...
Sets the commerce tier price entry remote service. @param commerceTierPriceEntryService the commerce tier price entry remote service
[ "Sets", "the", "commerce", "tier", "price", "entry", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListAccountRelServiceBaseImpl.java#L344-L347
54,031
liferay/com-liferay-commerce
commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java
CommerceVirtualOrderItemLocalServiceBaseImpl.deleteCommerceVirtualOrderItem
@Indexable(type = IndexableType.DELETE) @Override public CommerceVirtualOrderItem deleteCommerceVirtualOrderItem( long commerceVirtualOrderItemId) throws PortalException { return commerceVirtualOrderItemPersistence.remove(commerceVirtualOrderItemId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CommerceVirtualOrderItem deleteCommerceVirtualOrderItem( long commerceVirtualOrderItemId) throws PortalException { return commerceVirtualOrderItemPersistence.remove(commerceVirtualOrderItemId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CommerceVirtualOrderItem", "deleteCommerceVirtualOrderItem", "(", "long", "commerceVirtualOrderItemId", ")", "throws", "PortalException", "{", "return", "commerceVirtualOr...
Deletes the commerce virtual order item with the primary key from the database. Also notifies the appropriate model listeners. @param commerceVirtualOrderItemId the primary key of the commerce virtual order item @return the commerce virtual order item that was removed @throws PortalException if a commerce virtual orde...
[ "Deletes", "the", "commerce", "virtual", "order", "item", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java#L120-L125
54,032
liferay/com-liferay-commerce
commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java
CommerceVirtualOrderItemLocalServiceBaseImpl.getCommerceVirtualOrderItemsByUuidAndCompanyId
@Override public List<CommerceVirtualOrderItem> getCommerceVirtualOrderItemsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CommerceVirtualOrderItem> orderByComparator) { return commerceVirtualOrderItemPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparat...
java
@Override public List<CommerceVirtualOrderItem> getCommerceVirtualOrderItemsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CommerceVirtualOrderItem> orderByComparator) { return commerceVirtualOrderItemPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparat...
[ "@", "Override", "public", "List", "<", "CommerceVirtualOrderItem", ">", "getCommerceVirtualOrderItemsByUuidAndCompanyId", "(", "String", "uuid", ",", "long", "companyId", ",", "int", "start", ",", "int", "end", ",", "OrderByComparator", "<", "CommerceVirtualOrderItem",...
Returns a range of commerce virtual order items matching the UUID and company. @param uuid the UUID of the commerce virtual order items @param companyId the primary key of the company @param start the lower bound of the range of commerce virtual order items @param end the upper bound of the range of commerce virtual o...
[ "Returns", "a", "range", "of", "commerce", "virtual", "order", "items", "matching", "the", "UUID", "and", "company", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java#L384-L390
54,033
liferay/com-liferay-commerce
commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java
CommerceVirtualOrderItemLocalServiceBaseImpl.updateCommerceVirtualOrderItem
@Indexable(type = IndexableType.REINDEX) @Override public CommerceVirtualOrderItem updateCommerceVirtualOrderItem( CommerceVirtualOrderItem commerceVirtualOrderItem) { return commerceVirtualOrderItemPersistence.update(commerceVirtualOrderItem); }
java
@Indexable(type = IndexableType.REINDEX) @Override public CommerceVirtualOrderItem updateCommerceVirtualOrderItem( CommerceVirtualOrderItem commerceVirtualOrderItem) { return commerceVirtualOrderItemPersistence.update(commerceVirtualOrderItem); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "REINDEX", ")", "@", "Override", "public", "CommerceVirtualOrderItem", "updateCommerceVirtualOrderItem", "(", "CommerceVirtualOrderItem", "commerceVirtualOrderItem", ")", "{", "return", "commerceVirtualOrderItemPersist...
Updates the commerce virtual order item in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. @param commerceVirtualOrderItem the commerce virtual order item @return the commerce virtual order item that was updated
[ "Updates", "the", "commerce", "virtual", "order", "item", "in", "the", "database", "or", "adds", "it", "if", "it", "does", "not", "yet", "exist", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-type-virtual-order-service/src/main/java/com/liferay/commerce/product/type/virtual/order/service/base/CommerceVirtualOrderItemLocalServiceBaseImpl.java#L439-L444
54,034
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setAssetCategoryLocalService
public void setAssetCategoryLocalService( com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService) { this.assetCategoryLocalService = assetCategoryLocalService; }
java
public void setAssetCategoryLocalService( com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService) { this.assetCategoryLocalService = assetCategoryLocalService; }
[ "public", "void", "setAssetCategoryLocalService", "(", "com", ".", "liferay", ".", "asset", ".", "kernel", ".", "service", ".", "AssetCategoryLocalService", "assetCategoryLocalService", ")", "{", "this", ".", "assetCategoryLocalService", "=", "assetCategoryLocalService", ...
Sets the asset category local service. @param assetCategoryLocalService the asset category local service
[ "Sets", "the", "asset", "category", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1386-L1389
54,035
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setAssetCategoryService
public void setAssetCategoryService( com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService) { this.assetCategoryService = assetCategoryService; }
java
public void setAssetCategoryService( com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService) { this.assetCategoryService = assetCategoryService; }
[ "public", "void", "setAssetCategoryService", "(", "com", ".", "liferay", ".", "asset", ".", "kernel", ".", "service", ".", "AssetCategoryService", "assetCategoryService", ")", "{", "this", ".", "assetCategoryService", "=", "assetCategoryService", ";", "}" ]
Sets the asset category remote service. @param assetCategoryService the asset category remote service
[ "Sets", "the", "asset", "category", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1405-L1408
54,036
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setAssetEntryLocalService
public void setAssetEntryLocalService( com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) { this.assetEntryLocalService = assetEntryLocalService; }
java
public void setAssetEntryLocalService( com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) { this.assetEntryLocalService = assetEntryLocalService; }
[ "public", "void", "setAssetEntryLocalService", "(", "com", ".", "liferay", ".", "asset", ".", "kernel", ".", "service", ".", "AssetEntryLocalService", "assetEntryLocalService", ")", "{", "this", ".", "assetEntryLocalService", "=", "assetEntryLocalService", ";", "}" ]
Sets the asset entry local service. @param assetEntryLocalService the asset entry local service
[ "Sets", "the", "asset", "entry", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1443-L1446
54,037
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setAssetEntryService
public void setAssetEntryService( com.liferay.asset.kernel.service.AssetEntryService assetEntryService) { this.assetEntryService = assetEntryService; }
java
public void setAssetEntryService( com.liferay.asset.kernel.service.AssetEntryService assetEntryService) { this.assetEntryService = assetEntryService; }
[ "public", "void", "setAssetEntryService", "(", "com", ".", "liferay", ".", "asset", ".", "kernel", ".", "service", ".", "AssetEntryService", "assetEntryService", ")", "{", "this", ".", "assetEntryService", "=", "assetEntryService", ";", "}" ]
Sets the asset entry remote service. @param assetEntryService the asset entry remote service
[ "Sets", "the", "asset", "entry", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1462-L1465
54,038
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setAssetLinkLocalService
public void setAssetLinkLocalService( com.liferay.asset.kernel.service.AssetLinkLocalService assetLinkLocalService) { this.assetLinkLocalService = assetLinkLocalService; }
java
public void setAssetLinkLocalService( com.liferay.asset.kernel.service.AssetLinkLocalService assetLinkLocalService) { this.assetLinkLocalService = assetLinkLocalService; }
[ "public", "void", "setAssetLinkLocalService", "(", "com", ".", "liferay", ".", "asset", ".", "kernel", ".", "service", ".", "AssetLinkLocalService", "assetLinkLocalService", ")", "{", "this", ".", "assetLinkLocalService", "=", "assetLinkLocalService", ";", "}" ]
Sets the asset link local service. @param assetLinkLocalService the asset link local service
[ "Sets", "the", "asset", "link", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1500-L1503
54,039
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setTrashEntryLocalService
public void setTrashEntryLocalService( com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) { this.trashEntryLocalService = trashEntryLocalService; }
java
public void setTrashEntryLocalService( com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) { this.trashEntryLocalService = trashEntryLocalService; }
[ "public", "void", "setTrashEntryLocalService", "(", "com", ".", "liferay", ".", "trash", ".", "kernel", ".", "service", ".", "TrashEntryLocalService", "trashEntryLocalService", ")", "{", "this", ".", "trashEntryLocalService", "=", "trashEntryLocalService", ";", "}" ]
Sets the trash entry local service. @param trashEntryLocalService the trash entry local service
[ "Sets", "the", "trash", "entry", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1576-L1579
54,040
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java
CPDefinitionServiceBaseImpl.setTrashEntryService
public void setTrashEntryService( com.liferay.trash.kernel.service.TrashEntryService trashEntryService) { this.trashEntryService = trashEntryService; }
java
public void setTrashEntryService( com.liferay.trash.kernel.service.TrashEntryService trashEntryService) { this.trashEntryService = trashEntryService; }
[ "public", "void", "setTrashEntryService", "(", "com", ".", "liferay", ".", "trash", ".", "kernel", ".", "service", ".", "TrashEntryService", "trashEntryService", ")", "{", "this", ".", "trashEntryService", "=", "trashEntryService", ";", "}" ]
Sets the trash entry remote service. @param trashEntryService the trash entry remote service
[ "Sets", "the", "trash", "entry", "remote", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionServiceBaseImpl.java#L1595-L1598
54,041
liferay/com-liferay-commerce
commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java
CommerceWishListLocalServiceBaseImpl.deleteCommerceWishList
@Indexable(type = IndexableType.DELETE) @Override public CommerceWishList deleteCommerceWishList(long commerceWishListId) throws PortalException { return commerceWishListPersistence.remove(commerceWishListId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CommerceWishList deleteCommerceWishList(long commerceWishListId) throws PortalException { return commerceWishListPersistence.remove(commerceWishListId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CommerceWishList", "deleteCommerceWishList", "(", "long", "commerceWishListId", ")", "throws", "PortalException", "{", "return", "commerceWishListPersistence", ".", "r...
Deletes the commerce wish list with the primary key from the database. Also notifies the appropriate model listeners. @param commerceWishListId the primary key of the commerce wish list @return the commerce wish list that was removed @throws PortalException if a commerce wish list with the primary key could not be fou...
[ "Deletes", "the", "commerce", "wish", "list", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java#L119-L124
54,042
liferay/com-liferay-commerce
commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java
CommerceWishListLocalServiceBaseImpl.deleteCommerceWishList
@Indexable(type = IndexableType.DELETE) @Override public CommerceWishList deleteCommerceWishList( CommerceWishList commerceWishList) { return commerceWishListPersistence.remove(commerceWishList); }
java
@Indexable(type = IndexableType.DELETE) @Override public CommerceWishList deleteCommerceWishList( CommerceWishList commerceWishList) { return commerceWishListPersistence.remove(commerceWishList); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CommerceWishList", "deleteCommerceWishList", "(", "CommerceWishList", "commerceWishList", ")", "{", "return", "commerceWishListPersistence", ".", "remove", "(", "comme...
Deletes the commerce wish list from the database. Also notifies the appropriate model listeners. @param commerceWishList the commerce wish list @return the commerce wish list that was removed
[ "Deletes", "the", "commerce", "wish", "list", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java#L132-L137
54,043
liferay/com-liferay-commerce
commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java
CommerceWishListLocalServiceBaseImpl.setCommerceWishListItemLocalService
public void setCommerceWishListItemLocalService( com.liferay.commerce.wish.list.service.CommerceWishListItemLocalService commerceWishListItemLocalService) { this.commerceWishListItemLocalService = commerceWishListItemLocalService; }
java
public void setCommerceWishListItemLocalService( com.liferay.commerce.wish.list.service.CommerceWishListItemLocalService commerceWishListItemLocalService) { this.commerceWishListItemLocalService = commerceWishListItemLocalService; }
[ "public", "void", "setCommerceWishListItemLocalService", "(", "com", ".", "liferay", ".", "commerce", ".", "wish", ".", "list", ".", "service", ".", "CommerceWishListItemLocalService", "commerceWishListItemLocalService", ")", "{", "this", ".", "commerceWishListItemLocalSe...
Sets the commerce wish list item local service. @param commerceWishListItemLocalService the commerce wish list item local service
[ "Sets", "the", "commerce", "wish", "list", "item", "local", "service", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-wish-list-service/src/main/java/com/liferay/commerce/wish/list/service/base/CommerceWishListLocalServiceBaseImpl.java#L491-L494
54,044
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.java
CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.deleteCommercePriceListUserSegmentEntryRel
@Indexable(type = IndexableType.DELETE) @Override public CommercePriceListUserSegmentEntryRel deleteCommercePriceListUserSegmentEntryRel( long commercePriceListUserSegmentEntryRelId) throws PortalException { return commercePriceListUserSegmentEntryRelPersistence.remove(commercePriceListUserSegmentEntryRelId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CommercePriceListUserSegmentEntryRel deleteCommercePriceListUserSegmentEntryRel( long commercePriceListUserSegmentEntryRelId) throws PortalException { return commercePriceListUserSegmentEntryRelPersistence.remove(commercePriceListUserSegmentEntryRelId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CommercePriceListUserSegmentEntryRel", "deleteCommercePriceListUserSegmentEntryRel", "(", "long", "commercePriceListUserSegmentEntryRelId", ")", "throws", "PortalException", "...
Deletes the commerce price list user segment entry rel with the primary key from the database. Also notifies the appropriate model listeners. @param commercePriceListUserSegmentEntryRelId the primary key of the commerce price list user segment entry rel @return the commerce price list user segment entry rel that was r...
[ "Deletes", "the", "commerce", "price", "list", "user", "segment", "entry", "rel", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.java#L127-L132
54,045
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.java
CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.getCommercePriceListUserSegmentEntryRelsByUuidAndCompanyId
@Override public List<CommercePriceListUserSegmentEntryRel> getCommercePriceListUserSegmentEntryRelsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CommercePriceListUserSegmentEntryRel> orderByComparator) { return commercePriceListUserSegmentEntryRelPersistence.findByUuid_C...
java
@Override public List<CommercePriceListUserSegmentEntryRel> getCommercePriceListUserSegmentEntryRelsByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CommercePriceListUserSegmentEntryRel> orderByComparator) { return commercePriceListUserSegmentEntryRelPersistence.findByUuid_C...
[ "@", "Override", "public", "List", "<", "CommercePriceListUserSegmentEntryRel", ">", "getCommercePriceListUserSegmentEntryRelsByUuidAndCompanyId", "(", "String", "uuid", ",", "long", "companyId", ",", "int", "start", ",", "int", "end", ",", "OrderByComparator", "<", "Co...
Returns a range of commerce price list user segment entry rels matching the UUID and company. @param uuid the UUID of the commerce price list user segment entry rels @param companyId the primary key of the company @param start the lower bound of the range of commerce price list user segment entry rels @param end the u...
[ "Returns", "a", "range", "of", "commerce", "price", "list", "user", "segment", "entry", "rels", "matching", "the", "UUID", "and", "company", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/base/CommercePriceListUserSegmentEntryRelLocalServiceBaseImpl.java#L397-L403
54,046
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java
CPSpecificationOptionWrapper.getDescription
@Override public String getDescription(String languageId, boolean useDefault) { return _cpSpecificationOption.getDescription(languageId, useDefault); }
java
@Override public String getDescription(String languageId, boolean useDefault) { return _cpSpecificationOption.getDescription(languageId, useDefault); }
[ "@", "Override", "public", "String", "getDescription", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_cpSpecificationOption", ".", "getDescription", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized description of this cp specification option in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested langu...
[ "Returns", "the", "localized", "description", "of", "this", "cp", "specification", "option", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java#L287-L290
54,047
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java
CPSpecificationOptionWrapper.getTitle
@Override public String getTitle(String languageId, boolean useDefault) { return _cpSpecificationOption.getTitle(languageId, useDefault); }
java
@Override public String getTitle(String languageId, boolean useDefault) { return _cpSpecificationOption.getTitle(languageId, useDefault); }
[ "@", "Override", "public", "String", "getTitle", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_cpSpecificationOption", ".", "getTitle", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized title of this cp specification option in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested language @r...
[ "Returns", "the", "localized", "title", "of", "this", "cp", "specification", "option", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java#L433-L436
54,048
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java
CPSpecificationOptionWrapper.setDescription
@Override public void setDescription(String description, java.util.Locale locale) { _cpSpecificationOption.setDescription(description, locale); }
java
@Override public void setDescription(String description, java.util.Locale locale) { _cpSpecificationOption.setDescription(description, locale); }
[ "@", "Override", "public", "void", "setDescription", "(", "String", "description", ",", "java", ".", "util", ".", "Locale", "locale", ")", "{", "_cpSpecificationOption", ".", "setDescription", "(", "description", ",", "locale", ")", ";", "}" ]
Sets the localized description of this cp specification option in the language. @param description the localized description of this cp specification option @param locale the locale of the language
[ "Sets", "the", "localized", "description", "of", "this", "cp", "specification", "option", "in", "the", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java#L607-L610
54,049
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java
CPSpecificationOptionWrapper.setDescriptionMap
@Override public void setDescriptionMap(Map<java.util.Locale, String> descriptionMap) { _cpSpecificationOption.setDescriptionMap(descriptionMap); }
java
@Override public void setDescriptionMap(Map<java.util.Locale, String> descriptionMap) { _cpSpecificationOption.setDescriptionMap(descriptionMap); }
[ "@", "Override", "public", "void", "setDescriptionMap", "(", "Map", "<", "java", ".", "util", ".", "Locale", ",", "String", ">", "descriptionMap", ")", "{", "_cpSpecificationOption", ".", "setDescriptionMap", "(", "descriptionMap", ")", ";", "}" ]
Sets the localized descriptions of this cp specification option from the map of locales and localized descriptions. @param descriptionMap the locales and localized descriptions of this cp specification option
[ "Sets", "the", "localized", "descriptions", "of", "this", "cp", "specification", "option", "from", "the", "map", "of", "locales", "and", "localized", "descriptions", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java#L635-L638
54,050
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java
CPSpecificationOptionWrapper.setTitleMap
@Override public void setTitleMap(Map<java.util.Locale, String> titleMap, java.util.Locale defaultLocale) { _cpSpecificationOption.setTitleMap(titleMap, defaultLocale); }
java
@Override public void setTitleMap(Map<java.util.Locale, String> titleMap, java.util.Locale defaultLocale) { _cpSpecificationOption.setTitleMap(titleMap, defaultLocale); }
[ "@", "Override", "public", "void", "setTitleMap", "(", "Map", "<", "java", ".", "util", ".", "Locale", ",", "String", ">", "titleMap", ",", "java", ".", "util", ".", "Locale", "defaultLocale", ")", "{", "_cpSpecificationOption", ".", "setTitleMap", "(", "t...
Sets the localized titles of this cp specification option from the map of locales and localized titles, and sets the default locale. @param titleMap the locales and localized titles of this cp specification option @param defaultLocale the default locale
[ "Sets", "the", "localized", "titles", "of", "this", "cp", "specification", "option", "from", "the", "map", "of", "locales", "and", "localized", "titles", "and", "sets", "the", "default", "locale", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPSpecificationOptionWrapper.java#L794-L798
54,051
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java
CPAttachmentFileEntryPersistenceImpl.cacheResult
@Override public void cacheResult(CPAttachmentFileEntry cpAttachmentFileEntry) { entityCache.putResult(CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFileEntry.getPrimaryKey(), cpAttachmentFileEntry); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, ne...
java
@Override public void cacheResult(CPAttachmentFileEntry cpAttachmentFileEntry) { entityCache.putResult(CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFileEntry.getPrimaryKey(), cpAttachmentFileEntry); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, ne...
[ "@", "Override", "public", "void", "cacheResult", "(", "CPAttachmentFileEntry", "cpAttachmentFileEntry", ")", "{", "entityCache", ".", "putResult", "(", "CPAttachmentFileEntryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPAttachmentFileEntryImpl", ".", "class", ",", "cp...
Caches the cp attachment file entry in the entity cache if it is enabled. @param cpAttachmentFileEntry the cp attachment file entry
[ "Caches", "the", "cp", "attachment", "file", "entry", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java#L5047-L5073
54,052
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java
CPAttachmentFileEntryPersistenceImpl.cacheResult
@Override public void cacheResult(List<CPAttachmentFileEntry> cpAttachmentFileEntries) { for (CPAttachmentFileEntry cpAttachmentFileEntry : cpAttachmentFileEntries) { if (entityCache.getResult( CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFile...
java
@Override public void cacheResult(List<CPAttachmentFileEntry> cpAttachmentFileEntries) { for (CPAttachmentFileEntry cpAttachmentFileEntry : cpAttachmentFileEntries) { if (entityCache.getResult( CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFile...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CPAttachmentFileEntry", ">", "cpAttachmentFileEntries", ")", "{", "for", "(", "CPAttachmentFileEntry", "cpAttachmentFileEntry", ":", "cpAttachmentFileEntries", ")", "{", "if", "(", "entityCache", "."...
Caches the cp attachment file entries in the entity cache if it is enabled. @param cpAttachmentFileEntries the cp attachment file entries
[ "Caches", "the", "cp", "attachment", "file", "entries", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java#L5080-L5093
54,053
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java
CPAttachmentFileEntryPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CPAttachmentFileEntryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CPAttachmentFileEntryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CPAttachmentFileEntryImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCache...
Clears the cache for all cp attachment file entries. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "cp", "attachment", "file", "entries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java#L5102-L5109
54,054
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java
CPAttachmentFileEntryPersistenceImpl.clearCache
@Override public void clearCache(CPAttachmentFileEntry cpAttachmentFileEntry) { entityCache.removeResult(CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFileEntry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache...
java
@Override public void clearCache(CPAttachmentFileEntry cpAttachmentFileEntry) { entityCache.removeResult(CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED, CPAttachmentFileEntryImpl.class, cpAttachmentFileEntry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache...
[ "@", "Override", "public", "void", "clearCache", "(", "CPAttachmentFileEntry", "cpAttachmentFileEntry", ")", "{", "entityCache", ".", "removeResult", "(", "CPAttachmentFileEntryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPAttachmentFileEntryImpl", ".", "class", ",", "...
Clears the cache for the cp attachment file entry. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "cp", "attachment", "file", "entry", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java#L5118-L5129
54,055
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java
CPAttachmentFileEntryPersistenceImpl.findAll
@Override public List<CPAttachmentFileEntry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CPAttachmentFileEntry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CPAttachmentFileEntry", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the cp attachment file entries. @return the cp attachment file entries
[ "Returns", "all", "the", "cp", "attachment", "file", "entries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPAttachmentFileEntryPersistenceImpl.java#L5772-L5775
54,056
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java
CPDefinitionLinkLocalServiceBaseImpl.deleteCPDefinitionLink
@Indexable(type = IndexableType.DELETE) @Override public CPDefinitionLink deleteCPDefinitionLink(long CPDefinitionLinkId) throws PortalException { return cpDefinitionLinkPersistence.remove(CPDefinitionLinkId); }
java
@Indexable(type = IndexableType.DELETE) @Override public CPDefinitionLink deleteCPDefinitionLink(long CPDefinitionLinkId) throws PortalException { return cpDefinitionLinkPersistence.remove(CPDefinitionLinkId); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CPDefinitionLink", "deleteCPDefinitionLink", "(", "long", "CPDefinitionLinkId", ")", "throws", "PortalException", "{", "return", "cpDefinitionLinkPersistence", ".", "r...
Deletes the cp definition link with the primary key from the database. Also notifies the appropriate model listeners. @param CPDefinitionLinkId the primary key of the cp definition link @return the cp definition link that was removed @throws PortalException if a cp definition link with the primary key could not be fou...
[ "Deletes", "the", "cp", "definition", "link", "with", "the", "primary", "key", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java#L142-L147
54,057
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java
CPDefinitionLinkLocalServiceBaseImpl.deleteCPDefinitionLink
@Indexable(type = IndexableType.DELETE) @Override public CPDefinitionLink deleteCPDefinitionLink( CPDefinitionLink cpDefinitionLink) { return cpDefinitionLinkPersistence.remove(cpDefinitionLink); }
java
@Indexable(type = IndexableType.DELETE) @Override public CPDefinitionLink deleteCPDefinitionLink( CPDefinitionLink cpDefinitionLink) { return cpDefinitionLinkPersistence.remove(cpDefinitionLink); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "DELETE", ")", "@", "Override", "public", "CPDefinitionLink", "deleteCPDefinitionLink", "(", "CPDefinitionLink", "cpDefinitionLink", ")", "{", "return", "cpDefinitionLinkPersistence", ".", "remove", "(", "cpDef...
Deletes the cp definition link from the database. Also notifies the appropriate model listeners. @param cpDefinitionLink the cp definition link @return the cp definition link that was removed
[ "Deletes", "the", "cp", "definition", "link", "from", "the", "database", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java#L155-L160
54,058
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java
CPDefinitionLinkLocalServiceBaseImpl.getCPDefinitionLinksByUuidAndCompanyId
@Override public List<CPDefinitionLink> getCPDefinitionLinksByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CPDefinitionLink> orderByComparator) { return cpDefinitionLinkPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
java
@Override public List<CPDefinitionLink> getCPDefinitionLinksByUuidAndCompanyId( String uuid, long companyId, int start, int end, OrderByComparator<CPDefinitionLink> orderByComparator) { return cpDefinitionLinkPersistence.findByUuid_C(uuid, companyId, start, end, orderByComparator); }
[ "@", "Override", "public", "List", "<", "CPDefinitionLink", ">", "getCPDefinitionLinksByUuidAndCompanyId", "(", "String", "uuid", ",", "long", "companyId", ",", "int", "start", ",", "int", "end", ",", "OrderByComparator", "<", "CPDefinitionLink", ">", "orderByCompar...
Returns a range of cp definition links matching the UUID and company. @param uuid the UUID of the cp definition links @param companyId the primary key of the company @param start the lower bound of the range of cp definition links @param end the upper bound of the range of cp definition links (not inclusive) @param or...
[ "Returns", "a", "range", "of", "cp", "definition", "links", "matching", "the", "UUID", "and", "company", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java#L401-L407
54,059
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java
CPDefinitionLinkLocalServiceBaseImpl.updateCPDefinitionLink
@Indexable(type = IndexableType.REINDEX) @Override public CPDefinitionLink updateCPDefinitionLink( CPDefinitionLink cpDefinitionLink) { return cpDefinitionLinkPersistence.update(cpDefinitionLink); }
java
@Indexable(type = IndexableType.REINDEX) @Override public CPDefinitionLink updateCPDefinitionLink( CPDefinitionLink cpDefinitionLink) { return cpDefinitionLinkPersistence.update(cpDefinitionLink); }
[ "@", "Indexable", "(", "type", "=", "IndexableType", ".", "REINDEX", ")", "@", "Override", "public", "CPDefinitionLink", "updateCPDefinitionLink", "(", "CPDefinitionLink", "cpDefinitionLink", ")", "{", "return", "cpDefinitionLinkPersistence", ".", "update", "(", "cpDe...
Updates the cp definition link in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. @param cpDefinitionLink the cp definition link @return the cp definition link that was updated
[ "Updates", "the", "cp", "definition", "link", "in", "the", "database", "or", "adds", "it", "if", "it", "does", "not", "yet", "exist", ".", "Also", "notifies", "the", "appropriate", "model", "listeners", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionLinkLocalServiceBaseImpl.java#L455-L460
54,060
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java
CommercePriceListAccountRelPersistenceImpl.cacheResult
@Override public void cacheResult( CommercePriceListAccountRel commercePriceListAccountRel) { entityCache.putResult(CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListAccountRelImpl.class, commercePriceListAccountRel.getPrimaryKey(), commercePriceListAccountRel); finderCache.pu...
java
@Override public void cacheResult( CommercePriceListAccountRel commercePriceListAccountRel) { entityCache.putResult(CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListAccountRelImpl.class, commercePriceListAccountRel.getPrimaryKey(), commercePriceListAccountRel); finderCache.pu...
[ "@", "Override", "public", "void", "cacheResult", "(", "CommercePriceListAccountRel", "commercePriceListAccountRel", ")", "{", "entityCache", ".", "putResult", "(", "CommercePriceListAccountRelModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommercePriceListAccountRelImpl", ".",...
Caches the commerce price list account rel in the entity cache if it is enabled. @param commercePriceListAccountRel the commerce price list account rel
[ "Caches", "the", "commerce", "price", "list", "account", "rel", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java#L2294-L2315
54,061
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java
CommercePriceListAccountRelPersistenceImpl.cacheResult
@Override public void cacheResult( List<CommercePriceListAccountRel> commercePriceListAccountRels) { for (CommercePriceListAccountRel commercePriceListAccountRel : commercePriceListAccountRels) { if (entityCache.getResult( CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListA...
java
@Override public void cacheResult( List<CommercePriceListAccountRel> commercePriceListAccountRels) { for (CommercePriceListAccountRel commercePriceListAccountRel : commercePriceListAccountRels) { if (entityCache.getResult( CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListA...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CommercePriceListAccountRel", ">", "commercePriceListAccountRels", ")", "{", "for", "(", "CommercePriceListAccountRel", "commercePriceListAccountRel", ":", "commercePriceListAccountRels", ")", "{", "if", ...
Caches the commerce price list account rels in the entity cache if it is enabled. @param commercePriceListAccountRels the commerce price list account rels
[ "Caches", "the", "commerce", "price", "list", "account", "rels", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java#L2322-L2336
54,062
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java
CommercePriceListAccountRelPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CommercePriceListAccountRelImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CommercePriceListAccountRelImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CommercePriceListAccountRelImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clea...
Clears the cache for all commerce price list account rels. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "commerce", "price", "list", "account", "rels", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java#L2345-L2352
54,063
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java
CommercePriceListAccountRelPersistenceImpl.clearCache
@Override public void clearCache( CommercePriceListAccountRel commercePriceListAccountRel) { entityCache.removeResult(CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListAccountRelImpl.class, commercePriceListAccountRel.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIS...
java
@Override public void clearCache( CommercePriceListAccountRel commercePriceListAccountRel) { entityCache.removeResult(CommercePriceListAccountRelModelImpl.ENTITY_CACHE_ENABLED, CommercePriceListAccountRelImpl.class, commercePriceListAccountRel.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIS...
[ "@", "Override", "public", "void", "clearCache", "(", "CommercePriceListAccountRel", "commercePriceListAccountRel", ")", "{", "entityCache", ".", "removeResult", "(", "CommercePriceListAccountRelModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommercePriceListAccountRelImpl", "....
Clears the cache for the commerce price list account rel. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "commerce", "price", "list", "account", "rel", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java#L2361-L2373
54,064
liferay/com-liferay-commerce
commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java
CommercePriceListAccountRelPersistenceImpl.findAll
@Override public List<CommercePriceListAccountRel> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CommercePriceListAccountRel> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CommercePriceListAccountRel", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the commerce price list account rels. @return the commerce price list account rels
[ "Returns", "all", "the", "commerce", "price", "list", "account", "rels", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-service/src/main/java/com/liferay/commerce/price/list/service/persistence/impl/CommercePriceListAccountRelPersistenceImpl.java#L2958-L2961
54,065
liferay/com-liferay-commerce
commerce-discount-api/src/main/java/com/liferay/commerce/discount/service/CommerceDiscountUsageEntryLocalServiceWrapper.java
CommerceDiscountUsageEntryLocalServiceWrapper.getCommerceDiscountUsageEntry
@Override public com.liferay.commerce.discount.model.CommerceDiscountUsageEntry getCommerceDiscountUsageEntry( long commerceDiscountUsageEntryId) throws com.liferay.portal.kernel.exception.PortalException { return _commerceDiscountUsageEntryLocalService.getCommerceDiscountUsageEntry(commerceDiscountUsageEntryId)...
java
@Override public com.liferay.commerce.discount.model.CommerceDiscountUsageEntry getCommerceDiscountUsageEntry( long commerceDiscountUsageEntryId) throws com.liferay.portal.kernel.exception.PortalException { return _commerceDiscountUsageEntryLocalService.getCommerceDiscountUsageEntry(commerceDiscountUsageEntryId)...
[ "@", "Override", "public", "com", ".", "liferay", ".", "commerce", ".", "discount", ".", "model", ".", "CommerceDiscountUsageEntry", "getCommerceDiscountUsageEntry", "(", "long", "commerceDiscountUsageEntryId", ")", "throws", "com", ".", "liferay", ".", "portal", "....
Returns the commerce discount usage entry with the primary key. @param commerceDiscountUsageEntryId the primary key of the commerce discount usage entry @return the commerce discount usage entry @throws PortalException if a commerce discount usage entry with the primary key could not be found
[ "Returns", "the", "commerce", "discount", "usage", "entry", "with", "the", "primary", "key", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-api/src/main/java/com/liferay/commerce/discount/service/CommerceDiscountUsageEntryLocalServiceWrapper.java#L238-L243
54,066
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionOptionRelWrapper.java
CPDefinitionOptionRelWrapper.getDescription
@Override public String getDescription(String languageId, boolean useDefault) { return _cpDefinitionOptionRel.getDescription(languageId, useDefault); }
java
@Override public String getDescription(String languageId, boolean useDefault) { return _cpDefinitionOptionRel.getDescription(languageId, useDefault); }
[ "@", "Override", "public", "String", "getDescription", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_cpDefinitionOptionRel", ".", "getDescription", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized description of this cp definition option rel in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested lang...
[ "Returns", "the", "localized", "description", "of", "this", "cp", "definition", "option", "rel", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionOptionRelWrapper.java#L340-L343
54,067
liferay/com-liferay-commerce
commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionOptionRelWrapper.java
CPDefinitionOptionRelWrapper.getName
@Override public String getName(String languageId, boolean useDefault) { return _cpDefinitionOptionRel.getName(languageId, useDefault); }
java
@Override public String getName(String languageId, boolean useDefault) { return _cpDefinitionOptionRel.getName(languageId, useDefault); }
[ "@", "Override", "public", "String", "getName", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_cpDefinitionOptionRel", ".", "getName", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized name of this cp definition option rel in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested language @r...
[ "Returns", "the", "localized", "name", "of", "this", "cp", "definition", "option", "rel", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPDefinitionOptionRelWrapper.java#L451-L454
54,068
liferay/com-liferay-commerce
commerce-api/src/main/java/com/liferay/commerce/service/CommerceShipmentLocalServiceUtil.java
CommerceShipmentLocalServiceUtil.getCommerceShipment
public static com.liferay.commerce.model.CommerceShipment getCommerceShipment( long commerceShipmentId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getCommerceShipment(commerceShipmentId); }
java
public static com.liferay.commerce.model.CommerceShipment getCommerceShipment( long commerceShipmentId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getCommerceShipment(commerceShipmentId); }
[ "public", "static", "com", ".", "liferay", ".", "commerce", ".", "model", ".", "CommerceShipment", "getCommerceShipment", "(", "long", "commerceShipmentId", ")", "throws", "com", ".", "liferay", ".", "portal", ".", "kernel", ".", "exception", ".", "PortalExcepti...
Returns the commerce shipment with the primary key. @param commerceShipmentId the primary key of the commerce shipment @return the commerce shipment @throws PortalException if a commerce shipment with the primary key could not be found
[ "Returns", "the", "commerce", "shipment", "with", "the", "primary", "key", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-api/src/main/java/com/liferay/commerce/service/CommerceShipmentLocalServiceUtil.java#L202-L206
54,069
liferay/com-liferay-commerce
commerce-api/src/main/java/com/liferay/commerce/model/CommerceShippingMethodWrapper.java
CommerceShippingMethodWrapper.getDescription
@Override public String getDescription(String languageId, boolean useDefault) { return _commerceShippingMethod.getDescription(languageId, useDefault); }
java
@Override public String getDescription(String languageId, boolean useDefault) { return _commerceShippingMethod.getDescription(languageId, useDefault); }
[ "@", "Override", "public", "String", "getDescription", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_commerceShippingMethod", ".", "getDescription", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized description of this commerce shipping method in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested lang...
[ "Returns", "the", "localized", "description", "of", "this", "commerce", "shipping", "method", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-api/src/main/java/com/liferay/commerce/model/CommerceShippingMethodWrapper.java#L272-L275
54,070
liferay/com-liferay-commerce
commerce-api/src/main/java/com/liferay/commerce/model/CommerceShippingMethodWrapper.java
CommerceShippingMethodWrapper.getName
@Override public String getName(String languageId, boolean useDefault) { return _commerceShippingMethod.getName(languageId, useDefault); }
java
@Override public String getName(String languageId, boolean useDefault) { return _commerceShippingMethod.getName(languageId, useDefault); }
[ "@", "Override", "public", "String", "getName", "(", "String", "languageId", ",", "boolean", "useDefault", ")", "{", "return", "_commerceShippingMethod", ".", "getName", "(", "languageId", ",", "useDefault", ")", ";", "}" ]
Returns the localized name of this commerce shipping method in the language, optionally using the default language if no localization exists for the requested language. @param languageId the ID of the language @param useDefault whether to use the default language if no localization exists for the requested language @r...
[ "Returns", "the", "localized", "name", "of", "this", "commerce", "shipping", "method", "in", "the", "language", "optionally", "using", "the", "default", "language", "if", "no", "localization", "exists", "for", "the", "requested", "language", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-api/src/main/java/com/liferay/commerce/model/CommerceShippingMethodWrapper.java#L399-L402
54,071
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java
CommerceUserSegmentEntryPersistenceImpl.cacheResult
@Override public void cacheResult(CommerceUserSegmentEntry commerceUserSegmentEntry) { entityCache.putResult(CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class, commerceUserSegmentEntry.getPrimaryKey(), commerceUserSegmentEntry); finderCache.putResult(FINDER_PATH_FETC...
java
@Override public void cacheResult(CommerceUserSegmentEntry commerceUserSegmentEntry) { entityCache.putResult(CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class, commerceUserSegmentEntry.getPrimaryKey(), commerceUserSegmentEntry); finderCache.putResult(FINDER_PATH_FETC...
[ "@", "Override", "public", "void", "cacheResult", "(", "CommerceUserSegmentEntry", "commerceUserSegmentEntry", ")", "{", "entityCache", ".", "putResult", "(", "CommerceUserSegmentEntryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceUserSegmentEntryImpl", ".", "class", ...
Caches the commerce user segment entry in the entity cache if it is enabled. @param commerceUserSegmentEntry the commerce user segment entry
[ "Caches", "the", "commerce", "user", "segment", "entry", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java#L2192-L2205
54,072
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java
CommerceUserSegmentEntryPersistenceImpl.cacheResult
@Override public void cacheResult( List<CommerceUserSegmentEntry> commerceUserSegmentEntries) { for (CommerceUserSegmentEntry commerceUserSegmentEntry : commerceUserSegmentEntries) { if (entityCache.getResult( CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class...
java
@Override public void cacheResult( List<CommerceUserSegmentEntry> commerceUserSegmentEntries) { for (CommerceUserSegmentEntry commerceUserSegmentEntry : commerceUserSegmentEntries) { if (entityCache.getResult( CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CommerceUserSegmentEntry", ">", "commerceUserSegmentEntries", ")", "{", "for", "(", "CommerceUserSegmentEntry", "commerceUserSegmentEntry", ":", "commerceUserSegmentEntries", ")", "{", "if", "(", "enti...
Caches the commerce user segment entries in the entity cache if it is enabled. @param commerceUserSegmentEntries the commerce user segment entries
[ "Caches", "the", "commerce", "user", "segment", "entries", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java#L2212-L2226
54,073
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java
CommerceUserSegmentEntryPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CommerceUserSegmentEntryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CommerceUserSegmentEntryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CommerceUserSegmentEntryImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCa...
Clears the cache for all commerce user segment entries. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "commerce", "user", "segment", "entries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java#L2235-L2242
54,074
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java
CommerceUserSegmentEntryPersistenceImpl.clearCache
@Override public void clearCache(CommerceUserSegmentEntry commerceUserSegmentEntry) { entityCache.removeResult(CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class, commerceUserSegmentEntry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION)...
java
@Override public void clearCache(CommerceUserSegmentEntry commerceUserSegmentEntry) { entityCache.removeResult(CommerceUserSegmentEntryModelImpl.ENTITY_CACHE_ENABLED, CommerceUserSegmentEntryImpl.class, commerceUserSegmentEntry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION)...
[ "@", "Override", "public", "void", "clearCache", "(", "CommerceUserSegmentEntry", "commerceUserSegmentEntry", ")", "{", "entityCache", ".", "removeResult", "(", "CommerceUserSegmentEntryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceUserSegmentEntryImpl", ".", "class"...
Clears the cache for the commerce user segment entry. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "commerce", "user", "segment", "entry", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java#L2251-L2262
54,075
liferay/com-liferay-commerce
commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java
CommerceUserSegmentEntryPersistenceImpl.findAll
@Override public List<CommerceUserSegmentEntry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CommerceUserSegmentEntry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CommerceUserSegmentEntry", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the commerce user segment entries. @return the commerce user segment entries
[ "Returns", "all", "the", "commerce", "user", "segment", "entries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-user-segment-service/src/main/java/com/liferay/commerce/user/segment/service/persistence/impl/CommerceUserSegmentEntryPersistenceImpl.java#L2770-L2773
54,076
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java
CPDAvailabilityEstimatePersistenceImpl.cacheResult
@Override public void cacheResult(CPDAvailabilityEstimate cpdAvailabilityEstimate) { entityCache.putResult(CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, cpdAvailabilityEstimate.getPrimaryKey(), cpdAvailabilityEstimate); finderCache.putResult(FINDER_PATH_FETCH_BY_U...
java
@Override public void cacheResult(CPDAvailabilityEstimate cpdAvailabilityEstimate) { entityCache.putResult(CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, cpdAvailabilityEstimate.getPrimaryKey(), cpdAvailabilityEstimate); finderCache.putResult(FINDER_PATH_FETCH_BY_U...
[ "@", "Override", "public", "void", "cacheResult", "(", "CPDAvailabilityEstimate", "cpdAvailabilityEstimate", ")", "{", "entityCache", ".", "putResult", "(", "CPDAvailabilityEstimateModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPDAvailabilityEstimateImpl", ".", "class", ",...
Caches the cpd availability estimate in the entity cache if it is enabled. @param cpdAvailabilityEstimate the cpd availability estimate
[ "Caches", "the", "cpd", "availability", "estimate", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java#L2259-L2276
54,077
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java
CPDAvailabilityEstimatePersistenceImpl.cacheResult
@Override public void cacheResult( List<CPDAvailabilityEstimate> cpdAvailabilityEstimates) { for (CPDAvailabilityEstimate cpdAvailabilityEstimate : cpdAvailabilityEstimates) { if (entityCache.getResult( CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, c...
java
@Override public void cacheResult( List<CPDAvailabilityEstimate> cpdAvailabilityEstimates) { for (CPDAvailabilityEstimate cpdAvailabilityEstimate : cpdAvailabilityEstimates) { if (entityCache.getResult( CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, c...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CPDAvailabilityEstimate", ">", "cpdAvailabilityEstimates", ")", "{", "for", "(", "CPDAvailabilityEstimate", "cpdAvailabilityEstimate", ":", "cpdAvailabilityEstimates", ")", "{", "if", "(", "entityCache...
Caches the cpd availability estimates in the entity cache if it is enabled. @param cpdAvailabilityEstimates the cpd availability estimates
[ "Caches", "the", "cpd", "availability", "estimates", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java#L2283-L2297
54,078
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java
CPDAvailabilityEstimatePersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CPDAvailabilityEstimateImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CPDAvailabilityEstimateImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CPDAvailabilityEstimateImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCac...
Clears the cache for all cpd availability estimates. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "cpd", "availability", "estimates", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java#L2306-L2313
54,079
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java
CPDAvailabilityEstimatePersistenceImpl.clearCache
@Override public void clearCache(CPDAvailabilityEstimate cpdAvailabilityEstimate) { entityCache.removeResult(CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, cpdAvailabilityEstimate.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); f...
java
@Override public void clearCache(CPDAvailabilityEstimate cpdAvailabilityEstimate) { entityCache.removeResult(CPDAvailabilityEstimateModelImpl.ENTITY_CACHE_ENABLED, CPDAvailabilityEstimateImpl.class, cpdAvailabilityEstimate.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); f...
[ "@", "Override", "public", "void", "clearCache", "(", "CPDAvailabilityEstimate", "cpdAvailabilityEstimate", ")", "{", "entityCache", ".", "removeResult", "(", "CPDAvailabilityEstimateModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPDAvailabilityEstimateImpl", ".", "class", ...
Clears the cache for the cpd availability estimate. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "cpd", "availability", "estimate", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java#L2322-L2333
54,080
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java
CPDAvailabilityEstimatePersistenceImpl.findAll
@Override public List<CPDAvailabilityEstimate> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CPDAvailabilityEstimate> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CPDAvailabilityEstimate", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the cpd availability estimates. @return the cpd availability estimates
[ "Returns", "all", "the", "cpd", "availability", "estimates", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDAvailabilityEstimatePersistenceImpl.java#L2905-L2908
54,081
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java
CPOptionPersistenceImpl.cacheResult
@Override public void cacheResult(CPOption cpOption) { entityCache.putResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey(), cpOption); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { cpOption.getUuid(), cpOption.getGroupId() }, cpOption); finderCac...
java
@Override public void cacheResult(CPOption cpOption) { entityCache.putResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey(), cpOption); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { cpOption.getUuid(), cpOption.getGroupId() }, cpOption); finderCac...
[ "@", "Override", "public", "void", "cacheResult", "(", "CPOption", "cpOption", ")", "{", "entityCache", ".", "putResult", "(", "CPOptionModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPOptionImpl", ".", "class", ",", "cpOption", ".", "getPrimaryKey", "(", ")", "...
Caches the cp option in the entity cache if it is enabled. @param cpOption the cp option
[ "Caches", "the", "cp", "option", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java#L2508-L2525
54,082
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java
CPOptionPersistenceImpl.cacheResult
@Override public void cacheResult(List<CPOption> cpOptions) { for (CPOption cpOption : cpOptions) { if (entityCache.getResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey()) == null) { cacheResult(cpOption); } else { cpOption.resetOriginalValues(); } ...
java
@Override public void cacheResult(List<CPOption> cpOptions) { for (CPOption cpOption : cpOptions) { if (entityCache.getResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey()) == null) { cacheResult(cpOption); } else { cpOption.resetOriginalValues(); } ...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CPOption", ">", "cpOptions", ")", "{", "for", "(", "CPOption", "cpOption", ":", "cpOptions", ")", "{", "if", "(", "entityCache", ".", "getResult", "(", "CPOptionModelImpl", ".", "ENTITY_CAC...
Caches the cp options in the entity cache if it is enabled. @param cpOptions the cp options
[ "Caches", "the", "cp", "options", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java#L2532-L2543
54,083
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java
CPOptionPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CPOptionImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CPOptionImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CPOptionImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCache", "(", "...
Clears the cache for all cp options. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "cp", "options", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java#L2552-L2559
54,084
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java
CPOptionPersistenceImpl.clearCache
@Override public void clearCache(CPOption cpOption) { entityCache.removeResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniq...
java
@Override public void clearCache(CPOption cpOption) { entityCache.removeResult(CPOptionModelImpl.ENTITY_CACHE_ENABLED, CPOptionImpl.class, cpOption.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniq...
[ "@", "Override", "public", "void", "clearCache", "(", "CPOption", "cpOption", ")", "{", "entityCache", ".", "removeResult", "(", "CPOptionModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPOptionImpl", ".", "class", ",", "cpOption", ".", "getPrimaryKey", "(", ")", ...
Clears the cache for the cp option. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "cp", "option", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java#L2568-L2577
54,085
liferay/com-liferay-commerce
commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java
CPOptionPersistenceImpl.findAll
@Override public List<CPOption> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CPOption> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CPOption", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the cp options. @return the cp options
[ "Returns", "all", "the", "cp", "options", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionPersistenceImpl.java#L3154-L3157
54,086
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java
CPDefinitionInventoryPersistenceImpl.cacheResult
@Override public void cacheResult(CPDefinitionInventory cpDefinitionInventory) { entityCache.putResult(CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInventory.getPrimaryKey(), cpDefinitionInventory); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, ne...
java
@Override public void cacheResult(CPDefinitionInventory cpDefinitionInventory) { entityCache.putResult(CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInventory.getPrimaryKey(), cpDefinitionInventory); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, ne...
[ "@", "Override", "public", "void", "cacheResult", "(", "CPDefinitionInventory", "cpDefinitionInventory", ")", "{", "entityCache", ".", "putResult", "(", "CPDefinitionInventoryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPDefinitionInventoryImpl", ".", "class", ",", "cp...
Caches the cp definition inventory in the entity cache if it is enabled. @param cpDefinitionInventory the cp definition inventory
[ "Caches", "the", "cp", "definition", "inventory", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java#L1720-L1737
54,087
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java
CPDefinitionInventoryPersistenceImpl.cacheResult
@Override public void cacheResult(List<CPDefinitionInventory> cpDefinitionInventories) { for (CPDefinitionInventory cpDefinitionInventory : cpDefinitionInventories) { if (entityCache.getResult( CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInve...
java
@Override public void cacheResult(List<CPDefinitionInventory> cpDefinitionInventories) { for (CPDefinitionInventory cpDefinitionInventory : cpDefinitionInventories) { if (entityCache.getResult( CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInve...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CPDefinitionInventory", ">", "cpDefinitionInventories", ")", "{", "for", "(", "CPDefinitionInventory", "cpDefinitionInventory", ":", "cpDefinitionInventories", ")", "{", "if", "(", "entityCache", "."...
Caches the cp definition inventories in the entity cache if it is enabled. @param cpDefinitionInventories the cp definition inventories
[ "Caches", "the", "cp", "definition", "inventories", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java#L1744-L1757
54,088
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java
CPDefinitionInventoryPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CPDefinitionInventoryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CPDefinitionInventoryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CPDefinitionInventoryImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCache...
Clears the cache for all cp definition inventories. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "cp", "definition", "inventories", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java#L1766-L1773
54,089
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java
CPDefinitionInventoryPersistenceImpl.clearCache
@Override public void clearCache(CPDefinitionInventory cpDefinitionInventory) { entityCache.removeResult(CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInventory.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache...
java
@Override public void clearCache(CPDefinitionInventory cpDefinitionInventory) { entityCache.removeResult(CPDefinitionInventoryModelImpl.ENTITY_CACHE_ENABLED, CPDefinitionInventoryImpl.class, cpDefinitionInventory.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache...
[ "@", "Override", "public", "void", "clearCache", "(", "CPDefinitionInventory", "cpDefinitionInventory", ")", "{", "entityCache", ".", "removeResult", "(", "CPDefinitionInventoryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CPDefinitionInventoryImpl", ".", "class", ",", "...
Clears the cache for the cp definition inventory. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "cp", "definition", "inventory", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java#L1782-L1793
54,090
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java
CPDefinitionInventoryPersistenceImpl.findAll
@Override public List<CPDefinitionInventory> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CPDefinitionInventory> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CPDefinitionInventory", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the cp definition inventories. @return the cp definition inventories
[ "Returns", "all", "the", "cp", "definition", "inventories", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CPDefinitionInventoryPersistenceImpl.java#L2331-L2334
54,091
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java
CommerceCountryPersistenceImpl.cacheResult
@Override public void cacheResult(CommerceCountry commerceCountry) { entityCache.putResult(CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey(), commerceCountry); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { commerceCountry.getUuid...
java
@Override public void cacheResult(CommerceCountry commerceCountry) { entityCache.putResult(CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey(), commerceCountry); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { commerceCountry.getUuid...
[ "@", "Override", "public", "void", "cacheResult", "(", "CommerceCountry", "commerceCountry", ")", "{", "entityCache", ".", "putResult", "(", "CommerceCountryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceCountryImpl", ".", "class", ",", "commerceCountry", ".", ...
Caches the commerce country in the entity cache if it is enabled. @param commerceCountry the commerce country
[ "Caches", "the", "commerce", "country", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java#L4218-L4241
54,092
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java
CommerceCountryPersistenceImpl.cacheResult
@Override public void cacheResult(List<CommerceCountry> commerceCountries) { for (CommerceCountry commerceCountry : commerceCountries) { if (entityCache.getResult( CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey()) == null) { cacheResul...
java
@Override public void cacheResult(List<CommerceCountry> commerceCountries) { for (CommerceCountry commerceCountry : commerceCountries) { if (entityCache.getResult( CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey()) == null) { cacheResul...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CommerceCountry", ">", "commerceCountries", ")", "{", "for", "(", "CommerceCountry", "commerceCountry", ":", "commerceCountries", ")", "{", "if", "(", "entityCache", ".", "getResult", "(", "Com...
Caches the commerce countries in the entity cache if it is enabled. @param commerceCountries the commerce countries
[ "Caches", "the", "commerce", "countries", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java#L4248-L4261
54,093
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java
CommerceCountryPersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CommerceCountryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CommerceCountryImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CommerceCountryImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "clearCache", "...
Clears the cache for all commerce countries. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "commerce", "countries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java#L4270-L4277
54,094
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java
CommerceCountryPersistenceImpl.clearCache
@Override public void clearCache(CommerceCountry commerceCountry) { entityCache.removeResult(CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIS...
java
@Override public void clearCache(CommerceCountry commerceCountry) { entityCache.removeResult(CommerceCountryModelImpl.ENTITY_CACHE_ENABLED, CommerceCountryImpl.class, commerceCountry.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIS...
[ "@", "Override", "public", "void", "clearCache", "(", "CommerceCountry", "commerceCountry", ")", "{", "entityCache", ".", "removeResult", "(", "CommerceCountryModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceCountryImpl", ".", "class", ",", "commerceCountry", ".",...
Clears the cache for the commerce country. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "commerce", "country", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java#L4286-L4295
54,095
liferay/com-liferay-commerce
commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java
CommerceCountryPersistenceImpl.findAll
@Override public List<CommerceCountry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
java
@Override public List<CommerceCountry> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
[ "@", "Override", "public", "List", "<", "CommerceCountry", ">", "findAll", "(", ")", "{", "return", "findAll", "(", "QueryUtil", ".", "ALL_POS", ",", "QueryUtil", ".", "ALL_POS", ",", "null", ")", ";", "}" ]
Returns all the commerce countries. @return the commerce countries
[ "Returns", "all", "the", "commerce", "countries", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceCountryPersistenceImpl.java#L4980-L4983
54,096
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java
CommerceNotificationTemplatePersistenceImpl.cacheResult
@Override public void cacheResult( CommerceNotificationTemplate commerceNotificationTemplate) { entityCache.putResult(CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNotificationTemplateImpl.class, commerceNotificationTemplate.getPrimaryKey(), commerceNotificationTemplate); finderCa...
java
@Override public void cacheResult( CommerceNotificationTemplate commerceNotificationTemplate) { entityCache.putResult(CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNotificationTemplateImpl.class, commerceNotificationTemplate.getPrimaryKey(), commerceNotificationTemplate); finderCa...
[ "@", "Override", "public", "void", "cacheResult", "(", "CommerceNotificationTemplate", "commerceNotificationTemplate", ")", "{", "entityCache", ".", "putResult", "(", "CommerceNotificationTemplateModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceNotificationTemplateImpl", ...
Caches the commerce notification template in the entity cache if it is enabled. @param commerceNotificationTemplate the commerce notification template
[ "Caches", "the", "commerce", "notification", "template", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java#L4473-L4488
54,097
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java
CommerceNotificationTemplatePersistenceImpl.cacheResult
@Override public void cacheResult( List<CommerceNotificationTemplate> commerceNotificationTemplates) { for (CommerceNotificationTemplate commerceNotificationTemplate : commerceNotificationTemplates) { if (entityCache.getResult( CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNoti...
java
@Override public void cacheResult( List<CommerceNotificationTemplate> commerceNotificationTemplates) { for (CommerceNotificationTemplate commerceNotificationTemplate : commerceNotificationTemplates) { if (entityCache.getResult( CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNoti...
[ "@", "Override", "public", "void", "cacheResult", "(", "List", "<", "CommerceNotificationTemplate", ">", "commerceNotificationTemplates", ")", "{", "for", "(", "CommerceNotificationTemplate", "commerceNotificationTemplate", ":", "commerceNotificationTemplates", ")", "{", "i...
Caches the commerce notification templates in the entity cache if it is enabled. @param commerceNotificationTemplates the commerce notification templates
[ "Caches", "the", "commerce", "notification", "templates", "in", "the", "entity", "cache", "if", "it", "is", "enabled", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java#L4495-L4509
54,098
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java
CommerceNotificationTemplatePersistenceImpl.clearCache
@Override public void clearCache() { entityCache.clearCache(CommerceNotificationTemplateImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
java
@Override public void clearCache() { entityCache.clearCache(CommerceNotificationTemplateImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); }
[ "@", "Override", "public", "void", "clearCache", "(", ")", "{", "entityCache", ".", "clearCache", "(", "CommerceNotificationTemplateImpl", ".", "class", ")", ";", "finderCache", ".", "clearCache", "(", "FINDER_CLASS_NAME_ENTITY", ")", ";", "finderCache", ".", "cle...
Clears the cache for all commerce notification templates. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "all", "commerce", "notification", "templates", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java#L4518-L4525
54,099
liferay/com-liferay-commerce
commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java
CommerceNotificationTemplatePersistenceImpl.clearCache
@Override public void clearCache( CommerceNotificationTemplate commerceNotificationTemplate) { entityCache.removeResult(CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNotificationTemplateImpl.class, commerceNotificationTemplate.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAM...
java
@Override public void clearCache( CommerceNotificationTemplate commerceNotificationTemplate) { entityCache.removeResult(CommerceNotificationTemplateModelImpl.ENTITY_CACHE_ENABLED, CommerceNotificationTemplateImpl.class, commerceNotificationTemplate.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAM...
[ "@", "Override", "public", "void", "clearCache", "(", "CommerceNotificationTemplate", "commerceNotificationTemplate", ")", "{", "entityCache", ".", "removeResult", "(", "CommerceNotificationTemplateModelImpl", ".", "ENTITY_CACHE_ENABLED", ",", "CommerceNotificationTemplateImpl", ...
Clears the cache for the commerce notification template. <p> The {@link EntityCache} and {@link FinderCache} are both cleared by this method. </p>
[ "Clears", "the", "cache", "for", "the", "commerce", "notification", "template", "." ]
9e54362d7f59531fc684016ba49ee7cdc3a2f22b
https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/persistence/impl/CommerceNotificationTemplatePersistenceImpl.java#L4534-L4546