atg.commerce.search.producer
Class CustomCatalogPropertyAccessor
java.lang.Object
   atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
       atg.nucleus.GenericService
atg.nucleus.GenericService
           atg.repository.search.indexing.PropertyAccessorImpl
atg.repository.search.indexing.PropertyAccessorImpl
               atg.commerce.search.producer.CustomCatalogPropertyAccessor
atg.commerce.search.producer.CustomCatalogPropertyAccessor
- All Implemented Interfaces: 
- IndexConstants, atg.naming.AbsoluteNameable, NameContextBindingListener, NameContextElement, atg.naming.NameContextParentable, NameResolver, AdminableService, atg.nucleus.Configured, ApplicationLogging, atg.nucleus.logging.ApplicationLoggingSender, atg.nucleus.logging.TraceApplicationLogging, VariableArgumentApplicationLogging, ComponentNameResolver, Service, ServiceListener, atg.repository.search.indexing.PropertyAccessor, atg.repository.search.indexing.SchemedPropertyAccessor, java.util.EventListener
- public class CustomCatalogPropertyAccessor 
- extends atg.repository.search.indexing.PropertyAccessorImpl- implements IndexConstants
A PropertyAccessor that understands how to fetch the catalog
 specific properties of commerce catalogs that are stored in
 info objects such as category-info, product-info, and sku-info.
- See Also:
- atg.repository.search.index.PropertyAccessor
 
 
 
| Fields inherited from interface atg.nucleus.logging.TraceApplicationLogging | 
| DEFAULT_LOG_TRACE_STATUS | 
 
 
 
| Method Summary | 
|  CatalogProperties | getCatalogProperties()Gets the CatalogProperties object that holds meta-data about the names
 of item-descriptors and property-descriptors used in custom catalogs.
 | 
|  java.lang.Object | getSubItemPropertyValue(atg.repository.search.indexing.Context pContext,
                        RepositoryItem pItem,
                        java.lang.String pPropName)Return the value for a sub-item.
 | 
| protected  boolean | isInfoProperty(RepositoryItem pItem,
               java.lang.String pPropName,
               java.lang.String pBaseItemTypeName,
               java.lang.String pInfoPropertyName)Returns true if the property is an info property of the given item type.
 | 
|  void | setCatalogProperties(CatalogProperties pCatalogProperties)Sets the CatalogProperties object that holds meta-data about the names
 of item-descriptors and property-descriptors used in custom catalogs.
 | 
 
| Methods inherited from class atg.repository.search.indexing.PropertyAccessorImpl | 
| getMetaPropertyValue, getMetaScheme, getMetaSecurityConstraint, getSiteContextPropertyValue, getTextOrMetaPropertyValue, getTextPropertyValue, getTextSecurityConstraint, onIndexingInitialization, onIndexingTermination, resolveDollarProperty | 
 
| Methods inherited from class atg.nucleus.GenericService | 
| addLogListener, createAdminServlet, doStartService, doStopService, getAbsoluteName, getAdminServlet, getAdminServletOutputStreamEncoding, getLoggingForVlogging, getLogListenerCount, getLogListeners, getName, getNameContext, getNucleus, getRoot, getServiceConfiguration, getServiceInfo, isAdminServletUseServletOutputStream, isLoggingDebug, isLoggingError, isLoggingInfo, isLoggingTrace, isLoggingWarning, isRunning, logDebug, logDebug, logDebug, logError, logError, logError, logInfo, logInfo, logInfo, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, nameContextElementBound, nameContextElementUnbound, removeLogListener, reResolveThis, resolveName, resolveName, resolveName, resolveName, sendLogEvent, setAdminServletOutputStreamEncoding, setAdminServletUseServletOutputStream, setLoggingDebug, setLoggingError, setLoggingInfo, setLoggingTrace, setLoggingWarning, setNucleus, setServiceInfo, startService, stopService | 
 
| Methods inherited from class atg.nucleus.logging.VariableArgumentApplicationLoggingImpl | 
| vlogDebug, vlogDebug, vlogDebug, vlogDebug, vlogDebugTrace, vlogError, vlogError, vlogError, vlogError, vlogInfo, vlogInfo, vlogInfo, vlogInfo, vlogTrace, vlogTrace, vlogTrace, vlogTrace, vlogWarning, vlogWarning, vlogWarning, vlogWarning | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
CLASS_VERSION
public static java.lang.String CLASS_VERSION
mCatalogProperties
protected CatalogProperties mCatalogProperties
CustomCatalogPropertyAccessor
public CustomCatalogPropertyAccessor()
getCatalogProperties
public CatalogProperties getCatalogProperties()
- Gets the CatalogProperties object that holds meta-data about the names
 of item-descriptors and property-descriptors used in custom catalogs.
 
- 
 
- 
 
setCatalogProperties
public void setCatalogProperties(CatalogProperties pCatalogProperties)
- Sets the CatalogProperties object that holds meta-data about the names
 of item-descriptors and property-descriptors used in custom catalogs.
 
- 
 
- 
 
getSubItemPropertyValue
public java.lang.Object getSubItemPropertyValue(atg.repository.search.indexing.Context pContext,
                                                RepositoryItem pItem,
                                                java.lang.String pPropName)
- Return the value for a sub-item.  If the property is an info property
 that describes catalog specific values, only return the info that is
 appropriate for the current variant.  Examples of info properties are;
 the categoryInfosproperty of thecategoryitem-descriptor, theproductInfosproperty of theproductitem-descriptor, theskuInfos
 property of the sku item-descriptor.
 
- 
- Specified by:
- getSubItemPropertyValuein interface- atg.repository.search.indexing.PropertyAccessor
- Overrides:
- getSubItemPropertyValuein class- atg.repository.search.indexing.PropertyAccessorImpl
 
- 
 
isInfoProperty
protected boolean isInfoProperty(RepositoryItem pItem,
                                 java.lang.String pPropName,
                                 java.lang.String pBaseItemTypeName,
                                 java.lang.String pInfoPropertyName)
- Returns true if the property is an info property of the given item type.
 
- 
 
-