Class ExternalContentProviderProperties
java.lang.Object
com.broadleafcommerce.catalogbrowse.service.provider.external.content.ExternalContentProviderProperties
@ConfigurationProperties("broadleaf.catalogbrowse.contentprovider")
public class ExternalContentProviderProperties
extends Object
- Author:
- Nathan Moore (nathandmoore)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe URI path for retrieving bulk content items.The URI path for retrieving content items.The service client to use when calling content services.getUrl()The base url for an external content service:https://localhost:8447/content.booleanWhether to hydrate external entities.voidsetBulkContentItemsUri(String bulkContentItemsUri) The URI path for retrieving bulk content items.voidsetContentItemsUri(String contentItemsUri) The URI path for retrieving content items.voidsetHydrateExternalEntities(boolean hydrateExternalEntities) Whether to hydrate external entities.voidsetServiceClient(String serviceClient) The service client to use when calling content services.voidThe base url for an external content service:https://localhost:8447/content.
-
Constructor Details
-
ExternalContentProviderProperties
public ExternalContentProviderProperties()
-
-
Method Details
-
getUrl
The base url for an external content service:https://localhost:8447/content. -
getContentItemsUri
The URI path for retrieving content items. This is appended tourl. -
getBulkContentItemsUri
The URI path for retrieving bulk content items. This is appended tourl. -
getServiceClient
The service client to use when calling content services. Default is "catalogbrowseclient" -
isHydrateExternalEntities
public boolean isHydrateExternalEntities()Whether to hydrate external entities. Default is false. -
setUrl
The base url for an external content service:https://localhost:8447/content. -
setContentItemsUri
The URI path for retrieving content items. This is appended tourl. -
setBulkContentItemsUri
The URI path for retrieving bulk content items. This is appended tourl. -
setServiceClient
The service client to use when calling content services. Default is "catalogbrowseclient" -
setHydrateExternalEntities
public void setHydrateExternalEntities(boolean hydrateExternalEntities) Whether to hydrate external entities. Default is false.
-