Package com.day.cq.reporting
Interface QueryEngineConfig
-
public interface QueryEngineConfigThis interface must be implemented by engine-specific config objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]getSecondaryProperties()Gets the names of possible properties to get additional data from.StringgetSecondarySubPath()Gets the subpath to be used for determining additional data.StringgetSubPath()Gets the subpath to be used for determining data.String[]getValueProperties()Gets the names of possible properties to get data from.
-
-
-
Method Detail
-
getSubPath
String getSubPath()
Gets the subpath to be used for determining data.- Returns:
- The subpath to get data from;
nullif no subpath should be used
-
getValueProperties
String[] getValueProperties()
Gets the names of possible properties to get data from.- Returns:
- The names of possible properties to get data from
-
getSecondarySubPath
String getSecondarySubPath()
Gets the subpath to be used for determining additional data.- Returns:
- The subpath to get additional data from;
nullif no subpath should be used
-
getSecondaryProperties
String[] getSecondaryProperties()
Gets the names of possible properties to get additional data from.- Returns:
- The names of possible properties to get data from
-
-