mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
ACE-5622: Search api scope now uses "locations"
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@133518 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -37,16 +37,16 @@ import java.util.List;
|
||||
*/
|
||||
public class Scope
|
||||
{
|
||||
private final List<String> stores;
|
||||
private final List<String> locations;
|
||||
|
||||
@JsonCreator
|
||||
public Scope(@JsonProperty("stores") List<String> stores)
|
||||
public Scope(@JsonProperty("locations") List<String> locations)
|
||||
{
|
||||
this.stores = stores;
|
||||
this.locations = locations;
|
||||
}
|
||||
|
||||
public List<String> getStores()
|
||||
public List<String> getLocations()
|
||||
{
|
||||
return stores;
|
||||
return locations;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user