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 Details

    • ExternalContentProviderProperties

      public ExternalContentProviderProperties()
  • Method Details

    • getUrl

      public String getUrl()
      The base url for an external content service: https://localhost:8447/content.
    • getContentItemsUri

      public String getContentItemsUri()
      The URI path for retrieving content items. This is appended to url.
    • getBulkContentItemsUri

      public String getBulkContentItemsUri()
      The URI path for retrieving bulk content items. This is appended to url.
    • getServiceClient

      public String 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

      public void setUrl(String url)
      The base url for an external content service: https://localhost:8447/content.
    • setContentItemsUri

      public void setContentItemsUri(String contentItemsUri)
      The URI path for retrieving content items. This is appended to url.
    • setBulkContentItemsUri

      public void setBulkContentItemsUri(String bulkContentItemsUri)
      The URI path for retrieving bulk content items. This is appended to url.
    • setServiceClient

      public void setServiceClient(String serviceClient)
      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.