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