code stringlengths 73 34.1k | label stringclasses 1
value |
|---|---|
public void setCPRuleService(
com.liferay.commerce.product.service.CPRuleService cpRuleService) {
this.cpRuleService = cpRuleService;
} | java |
public void setCPRuleAssetCategoryRelLocalService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService cpRuleAssetCategoryRelLocalService) {
this.cpRuleAssetCategoryRelLocalService = cpRuleAssetCategoryRelLocalService;
} | java |
public void setCPRuleAssetCategoryRelService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelService cpRuleAssetCategoryRelService) {
this.cpRuleAssetCategoryRelService = cpRuleAssetCategoryRelService;
} | java |
public void setCPRuleUserSegmentRelLocalService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService cpRuleUserSegmentRelLocalService) {
this.cpRuleUserSegmentRelLocalService = cpRuleUserSegmentRelLocalService;
} | java |
public void setCPRuleUserSegmentRelService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelService cpRuleUserSegmentRelService) {
this.cpRuleUserSegmentRelService = cpRuleUserSegmentRelService;
} | java |
public void setCPSpecificationOptionLocalService(
com.liferay.commerce.product.service.CPSpecificationOptionLocalService cpSpecificationOptionLocalService) {
this.cpSpecificationOptionLocalService = cpSpecificationOptionLocalService;
} | java |
public void setCPSpecificationOptionService(
com.liferay.commerce.product.service.CPSpecificationOptionService cpSpecificationOptionService) {
this.cpSpecificationOptionService = cpSpecificationOptionService;
} | java |
public void setCPTaxCategoryLocalService(
com.liferay.commerce.product.service.CPTaxCategoryLocalService cpTaxCategoryLocalService) {
this.cpTaxCategoryLocalService = cpTaxCategoryLocalService;
} | java |
public void setClassNameService(
com.liferay.portal.kernel.service.ClassNameService classNameService) {
this.classNameService = classNameService;
} | java |
public void setUserService(
com.liferay.portal.kernel.service.UserService userService) {
this.userService = userService;
} | java |
@Override
public void cacheResult(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.putResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getPrimaryKey(), cpRuleUserSegmentRel);
cpRuleUserSegmentRel.resetOriginalValues();
} | java |
@Override
public void cacheResult(List<CPRuleUserSegmentRel> cpRuleUserSegmentRels) {
for (CPRuleUserSegmentRel cpRuleUserSegmentRel : cpRuleUserSegmentRels) {
if (entityCache.getResult(
CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getP... | java |
@Override
public void clearCache() {
entityCache.clearCache(CPRuleUserSegmentRelImpl.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(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.removeResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class, cpRuleUserSegmentRel.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCa... | java |
@Override
public List<CPRuleUserSegmentRel> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CommerceAddressRestriction deleteCommerceAddressRestriction(
long commerceAddressRestrictionId) throws PortalException {
return commerceAddressRestrictionPersistence.remove(commerceAddressRestrictionId);
} | java |
@Indexable(type = IndexableType.REINDEX)
@Override
public CPDefinitionOptionValueRel addCPDefinitionOptionValueRel(
CPDefinitionOptionValueRel cpDefinitionOptionValueRel) {
cpDefinitionOptionValueRel.setNew(true);
return cpDefinitionOptionValueRelPersistence.update(cpDefinitionOptionValueRel);
} | java |
public void setExpandoRowLocalService(
com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
this.expandoRowLocalService = expandoRowLocalService;
} | java |
@Override
public String getDescription(String languageId, boolean useDefault) {
return _cpOptionCategory.getDescription(languageId, useDefault);
} | java |
@Override
public String getTitle(String languageId, boolean useDefault) {
return _cpOptionCategory.getTitle(languageId, useDefault);
} | java |
@Override
public void setTitle(String title, java.util.Locale locale,
java.util.Locale defaultLocale) {
_cpOptionCategory.setTitle(title, locale, defaultLocale);
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CommerceOrderNote deleteCommerceOrderNote(long commerceOrderNoteId)
throws PortalException {
return commerceOrderNotePersistence.remove(commerceOrderNoteId);
} | java |
@Override
public CommerceOrderNote fetchCommerceOrderNoteByReferenceCode(
long companyId, String externalReferenceCode) {
return commerceOrderNotePersistence.fetchByC_ERC(companyId, null);
} | java |
@Override
public void cacheResult(CProduct cProduct) {
entityCache.putResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey(), cProduct);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cProduct.getUuid(), cProduct.getGroupId() }, cProduct);
cProduct.... | java |
@Override
public void cacheResult(List<CProduct> cProducts) {
for (CProduct cProduct : cProducts) {
if (entityCache.getResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey()) == null) {
cacheResult(cProduct);
}
else {
cProduct.resetOriginalValues();
}
... | java |
@Override
public void clearCache() {
entityCache.clearCache(CProductImpl.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(CProduct cProduct) {
entityCache.removeResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
clearUniq... | java |
@Override
public List<CProduct> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java |
@Override
public com.liferay.commerce.shipping.engine.fixed.model.CommerceShippingFixedOptionRel getCommerceShippingFixedOptionRel(
long commerceShippingFixedOptionRelId)
throws com.liferay.portal.kernel.exception.PortalException {
return _commerceShippingFixedOptionRelLocalService.getCommerceShippingFixedOption... | java |
public void setCommerceDiscountLocalService(
com.liferay.commerce.discount.service.CommerceDiscountLocalService commerceDiscountLocalService) {
this.commerceDiscountLocalService = commerceDiscountLocalService;
} | java |
public void setCommerceDiscountService(
com.liferay.commerce.discount.service.CommerceDiscountService commerceDiscountService) {
this.commerceDiscountService = commerceDiscountService;
} | java |
public void setCommerceDiscountRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRelLocalService commerceDiscountRelLocalService) {
this.commerceDiscountRelLocalService = commerceDiscountRelLocalService;
} | java |
public void setCommerceDiscountRuleLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRuleLocalService commerceDiscountRuleLocalService) {
this.commerceDiscountRuleLocalService = commerceDiscountRuleLocalService;
} | java |
public void setCommerceDiscountRuleService(
com.liferay.commerce.discount.service.CommerceDiscountRuleService commerceDiscountRuleService) {
this.commerceDiscountRuleService = commerceDiscountRuleService;
} | java |
public void setCommerceDiscountUsageEntryLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUsageEntryLocalService commerceDiscountUsageEntryLocalService) {
this.commerceDiscountUsageEntryLocalService = commerceDiscountUsageEntryLocalService;
} | java |
public void setCommerceDiscountUserSegmentRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelLocalService commerceDiscountUserSegmentRelLocalService) {
this.commerceDiscountUserSegmentRelLocalService = commerceDiscountUserSegmentRelLocalService;
} | java |
public void setCommerceDiscountUserSegmentRelService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelService commerceDiscountUserSegmentRelService) {
this.commerceDiscountUserSegmentRelService = commerceDiscountUserSegmentRelService;
} | java |
@Override
public CPOption fetchCPOptionByReferenceCode(long companyId,
String externalReferenceCode) {
return cpOptionPersistence.fetchByC_ERC(companyId, null);
} | java |
@Override
public List<CPOption> getCPOptionsByUuidAndCompanyId(String uuid,
long companyId, int start, int end,
OrderByComparator<CPOption> orderByComparator) {
return cpOptionPersistence.findByUuid_C(uuid, companyId, start, end,
orderByComparator);
} | java |
@Override
public void cacheResult(CPOptionValue cpOptionValue) {
entityCache.putResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey(),
cpOptionValue);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cpOptionValue.getUuid(), cpOptionVa... | java |
@Override
public void cacheResult(List<CPOptionValue> cpOptionValues) {
for (CPOptionValue cpOptionValue : cpOptionValues) {
if (entityCache.getResult(
CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey()) == null) {
cacheResult(cpOptionValue);
}
... | java |
@Override
public void clearCache() {
entityCache.clearCache(CPOptionValueImpl.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(CPOptionValue cpOptionValue) {
entityCache.removeResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_... | java |
@Override
public List<CPOptionValue> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java |
@Override
public void cacheResult(CommerceOrderPayment commerceOrderPayment) {
entityCache.putResult(CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getPrimaryKey(), commerceOrderPayment);
commerceOrderPayment.resetOriginalValues();
} | java |
@Override
public void cacheResult(List<CommerceOrderPayment> commerceOrderPayments) {
for (CommerceOrderPayment commerceOrderPayment : commerceOrderPayments) {
if (entityCache.getResult(
CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getP... | java |
@Override
public void clearCache() {
entityCache.clearCache(CommerceOrderPaymentImpl.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(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 List<CommerceOrderPayment> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java |
@Override
public String getValue(java.util.Locale locale) {
return _cpDefinitionSpecificationOptionValue.getValue(locale);
} | java |
@Override
public String getValue(String languageId, boolean useDefault) {
return _cpDefinitionSpecificationOptionValue.getValue(languageId,
useDefault);
} | java |
@Override
public void setValue(String value, java.util.Locale locale) {
_cpDefinitionSpecificationOptionValue.setValue(value, locale);
} | java |
@Override
public void setValueMap(Map<java.util.Locale, String> valueMap) {
_cpDefinitionSpecificationOptionValue.setValueMap(valueMap);
} | java |
@Override
public void setValueMap(Map<java.util.Locale, String> valueMap,
java.util.Locale defaultLocale) {
_cpDefinitionSpecificationOptionValue.setValueMap(valueMap,
defaultLocale);
} | java |
@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(
CPDisplayLayout cpDisplayLayout) {
return cpDisplayLayoutPersistence.remove(cpDisplayLayout);
} | 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);
} | java |
public void setCommerceDiscountRelService(
com.liferay.commerce.discount.service.CommerceDiscountRelService commerceDiscountRelService) {
this.commerceDiscountRelService = commerceDiscountRelService;
} | java |
@Override
public com.liferay.commerce.tax.model.CommerceTaxMethod getCommerceTaxMethod(
long commerceTaxMethodId)
throws com.liferay.portal.kernel.exception.PortalException {
return _commerceTaxMethodLocalService.getCommerceTaxMethod(commerceTaxMethodId);
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CPInstance deleteCPInstance(long CPInstanceId)
throws PortalException {
return cpInstancePersistence.remove(CPInstanceId);
} | 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);
} | java |
public void setWorkflowInstanceLinkLocalService(
com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
} | java |
public void setCPTaxCategoryService(
com.liferay.commerce.product.service.CPTaxCategoryService cpTaxCategoryService) {
this.cpTaxCategoryService = cpTaxCategoryService;
} | java |
public void setCommerceUserSegmentCriterionLocalService(
com.liferay.commerce.user.segment.service.CommerceUserSegmentCriterionLocalService commerceUserSegmentCriterionLocalService) {
this.commerceUserSegmentCriterionLocalService = commerceUserSegmentCriterionLocalService;
} | java |
public void setCommerceUserSegmentEntryLocalService(
com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryLocalService commerceUserSegmentEntryLocalService) {
this.commerceUserSegmentEntryLocalService = commerceUserSegmentEntryLocalService;
} | java |
public void setCommerceUserSegmentEntryService(
com.liferay.commerce.user.segment.service.CommerceUserSegmentEntryService commerceUserSegmentEntryService) {
this.commerceUserSegmentEntryService = commerceUserSegmentEntryService;
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CommerceNotificationAttachment deleteCommerceNotificationAttachment(
CommerceNotificationAttachment commerceNotificationAttachment) {
return commerceNotificationAttachmentPersistence.remove(commerceNotificationAttachment);
} | java |
public void setCommerceNotificationTemplateUserSegmentRelLocalService(
com.liferay.commerce.notification.service.CommerceNotificationTemplateUserSegmentRelLocalService commerceNotificationTemplateUserSegmentRelLocalService) {
this.commerceNotificationTemplateUserSegmentRelLocalService = commerceNotificationTemplate... | java |
public void setDLAppLocalService(
com.liferay.document.library.kernel.service.DLAppLocalService dlAppLocalService) {
this.dlAppLocalService = dlAppLocalService;
} | java |
public void setCommercePriceEntryLocalService(
com.liferay.commerce.price.list.service.CommercePriceEntryLocalService commercePriceEntryLocalService) {
this.commercePriceEntryLocalService = commercePriceEntryLocalService;
} | java |
public void setCommercePriceEntryService(
com.liferay.commerce.price.list.service.CommercePriceEntryService commercePriceEntryService) {
this.commercePriceEntryService = commercePriceEntryService;
} | java |
public void setCommercePriceListLocalService(
com.liferay.commerce.price.list.service.CommercePriceListLocalService commercePriceListLocalService) {
this.commercePriceListLocalService = commercePriceListLocalService;
} | java |
public void setCommercePriceListService(
com.liferay.commerce.price.list.service.CommercePriceListService commercePriceListService) {
this.commercePriceListService = commercePriceListService;
} | java |
public void setCommercePriceListAccountRelLocalService(
com.liferay.commerce.price.list.service.CommercePriceListAccountRelLocalService commercePriceListAccountRelLocalService) {
this.commercePriceListAccountRelLocalService = commercePriceListAccountRelLocalService;
} | java |
public void setCommercePriceListUserSegmentEntryRelLocalService(
com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelLocalService commercePriceListUserSegmentEntryRelLocalService) {
this.commercePriceListUserSegmentEntryRelLocalService = commercePriceListUserSegmentEntryRelLocalService;
} | java |
public void setCommercePriceListUserSegmentEntryRelService(
com.liferay.commerce.price.list.service.CommercePriceListUserSegmentEntryRelService commercePriceListUserSegmentEntryRelService) {
this.commercePriceListUserSegmentEntryRelService = commercePriceListUserSegmentEntryRelService;
} | java |
public void setCommerceTierPriceEntryLocalService(
com.liferay.commerce.price.list.service.CommerceTierPriceEntryLocalService commerceTierPriceEntryLocalService) {
this.commerceTierPriceEntryLocalService = commerceTierPriceEntryLocalService;
} | java |
public void setCommerceTierPriceEntryService(
com.liferay.commerce.price.list.service.CommerceTierPriceEntryService commerceTierPriceEntryService) {
this.commerceTierPriceEntryService = commerceTierPriceEntryService;
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CommerceVirtualOrderItem deleteCommerceVirtualOrderItem(
long commerceVirtualOrderItemId) throws PortalException {
return commerceVirtualOrderItemPersistence.remove(commerceVirtualOrderItemId);
} | 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... | java |
@Indexable(type = IndexableType.REINDEX)
@Override
public CommerceVirtualOrderItem updateCommerceVirtualOrderItem(
CommerceVirtualOrderItem commerceVirtualOrderItem) {
return commerceVirtualOrderItemPersistence.update(commerceVirtualOrderItem);
} | java |
public void setAssetCategoryLocalService(
com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService) {
this.assetCategoryLocalService = assetCategoryLocalService;
} | java |
public void setAssetCategoryService(
com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService) {
this.assetCategoryService = assetCategoryService;
} | java |
public void setAssetEntryLocalService(
com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) {
this.assetEntryLocalService = assetEntryLocalService;
} | java |
public void setAssetEntryService(
com.liferay.asset.kernel.service.AssetEntryService assetEntryService) {
this.assetEntryService = assetEntryService;
} | java |
public void setAssetLinkLocalService(
com.liferay.asset.kernel.service.AssetLinkLocalService assetLinkLocalService) {
this.assetLinkLocalService = assetLinkLocalService;
} | java |
public void setTrashEntryLocalService(
com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) {
this.trashEntryLocalService = trashEntryLocalService;
} | java |
public void setTrashEntryService(
com.liferay.trash.kernel.service.TrashEntryService trashEntryService) {
this.trashEntryService = trashEntryService;
} | java |
@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(
CommerceWishList commerceWishList) {
return commerceWishListPersistence.remove(commerceWishList);
} | java |
public void setCommerceWishListItemLocalService(
com.liferay.commerce.wish.list.service.CommerceWishListItemLocalService commerceWishListItemLocalService) {
this.commerceWishListItemLocalService = commerceWishListItemLocalService;
} | java |
@Indexable(type = IndexableType.DELETE)
@Override
public CommercePriceListUserSegmentEntryRel deleteCommercePriceListUserSegmentEntryRel(
long commercePriceListUserSegmentEntryRelId) throws PortalException {
return commercePriceListUserSegmentEntryRelPersistence.remove(commercePriceListUserSegmentEntryRelId);
} | java |
@Override
public List<CommercePriceListUserSegmentEntryRel> getCommercePriceListUserSegmentEntryRelsByUuidAndCompanyId(
String uuid, long companyId, int start, int end,
OrderByComparator<CommercePriceListUserSegmentEntryRel> orderByComparator) {
return commercePriceListUserSegmentEntryRelPersistence.findByUuid_C... | java |
@Override
public String getDescription(String languageId, boolean useDefault) {
return _cpSpecificationOption.getDescription(languageId, useDefault);
} | java |
@Override
public String getTitle(String languageId, boolean useDefault) {
return _cpSpecificationOption.getTitle(languageId, useDefault);
} | java |
@Override
public void setDescription(String description, java.util.Locale locale) {
_cpSpecificationOption.setDescription(description, locale);
} | java |
@Override
public void setDescriptionMap(Map<java.util.Locale, String> descriptionMap) {
_cpSpecificationOption.setDescriptionMap(descriptionMap);
} | java |
@Override
public void setTitleMap(Map<java.util.Locale, String> titleMap,
java.util.Locale defaultLocale) {
_cpSpecificationOption.setTitleMap(titleMap, defaultLocale);
} | 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... | java |
@Override
public void cacheResult(List<CPAttachmentFileEntry> cpAttachmentFileEntries) {
for (CPAttachmentFileEntry cpAttachmentFileEntry : cpAttachmentFileEntries) {
if (entityCache.getResult(
CPAttachmentFileEntryModelImpl.ENTITY_CACHE_ENABLED,
CPAttachmentFileEntryImpl.class,
cpAttachmentFile... | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.