public CatalogBuilderConfiguration() {
initDefaultsParam();
}
private void initDefaultsParam() {
final Indexer defaultIndexer = Utils.OBJECT_FACTORY.createIndexer();
final ParametersType parameters = Utils.OBJECT_FACTORY.createParametersType();
final List<Parameter> parameterList = parameters.getParameter();
defaultIndexer.setParameters(parameters);
setIndexer(defaultIndexer);
IndexerUtils.setParam(parameterList, Prop.LOCATION_ATTRIBUTE, Utils.DEFAULT_LOCATION_ATTRIBUTE);
IndexerUtils.setParam(parameterList, Prop.WILDCARD, Utils.DEFAULT_WILCARD);
IndexerUtils.setParam(parameterList, Prop.FOOTPRINT_MANAGEMENT, Boolean.toString(Utils.DEFAULT_FOOTPRINT_MANAGEMENT));
IndexerUtils.setParam(parameterList, Prop.ABSOLUTE_PATH, Boolean.toString(Utils.DEFAULT_PATH_BEHAVIOR));