mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
72 lines
2.3 KiB
Java
72 lines
2.3 KiB
Java
|
|
package org.alfresco.repo.virtual.template;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.alfresco.repo.virtual.ActualEnvironment;
|
|
import org.alfresco.repo.virtual.VirtualizationException;
|
|
import org.alfresco.service.cmr.search.SearchParameters;
|
|
import org.alfresco.service.cmr.search.SearchService;
|
|
import org.alfresco.service.namespace.NamespacePrefixResolver;
|
|
import org.alfresco.service.namespace.QName;
|
|
|
|
/**
|
|
* Specifies a constraint on a property value, as for e.g.
|
|
* ContentModel.PROP_NAME, to be applied to queries given in the virtual folder
|
|
* template.
|
|
*
|
|
* @author Bogdan Horje
|
|
*/
|
|
public class PropertyValueConstraint extends VirtualQueryConstraintDecorator
|
|
{
|
|
// TODO: introduce operator
|
|
|
|
private QName property;
|
|
|
|
private Serializable value;
|
|
|
|
private NamespacePrefixResolver nspResolver;
|
|
|
|
public PropertyValueConstraint(VirtualQueryConstraint decoratedConstraint, QName property, Serializable value,
|
|
NamespacePrefixResolver nspResolver)
|
|
{
|
|
super(decoratedConstraint);
|
|
this.property = property;
|
|
this.value = value;
|
|
this.nspResolver = nspResolver;
|
|
}
|
|
|
|
@Override
|
|
public SearchParameters applyDecorations(ActualEnvironment environment, SearchParameters searchParameters,
|
|
VirtualQuery query) throws VirtualizationException
|
|
{
|
|
// TODO: allow custom language and not only constraint appliers
|
|
|
|
if (SearchService.LANGUAGE_FTS_ALFRESCO.equals(searchParameters.getLanguage()))
|
|
{
|
|
SearchParameters searchParametersCopy = searchParameters.copy();
|
|
return applyFTS(searchParametersCopy);
|
|
}
|
|
else
|
|
{
|
|
throw new VirtualizationException("Unsupported constrating language " + searchParameters.getLanguage());
|
|
}
|
|
|
|
}
|
|
|
|
protected SearchParameters applyFTS(SearchParameters searchParameters)
|
|
{
|
|
SearchParameters constrainedParameters = searchParameters.copy();
|
|
String theQuery = constrainedParameters.getQuery();
|
|
|
|
// TODO: introduce and use operator
|
|
|
|
theQuery = "(" + theQuery + ")" + " and " + "( " + "=" + property.toPrefixString(this.nspResolver) + ":"
|
|
+"\""+value.toString() + "\" )";
|
|
|
|
constrainedParameters.setQuery(theQuery);
|
|
|
|
return constrainedParameters;
|
|
}
|
|
}
|