Package com.lyncode.xoai.dataprovider.xml.xoaiconfig.parameters

Examples of com.lyncode.xoai.dataprovider.xml.xoaiconfig.parameters.ParameterList


    }

    @Test
    public void customConditionForMetadataExistsFilterWithMultipleValues() throws Exception {
        List<ScopedFilter> scopedFilters = new ArrayList<ScopedFilter>();
        ParameterMap filterConfiguration = new ParameterMap().withValues(new ParameterList()
                .withValues(
                        new StringValue().withValue(FIELD_1),
                        new StringValue().withValue(FIELD_2)
                        )
                .withName("fields"));
View Full Code Here


    @Test
    public void customConditionForMetadataExistsFilterWithMultipleValues() throws Exception {
        theFieldResolver().hasField(FIELD_1, 1).hasField(FIELD_2, 2);
        List<ScopedFilter> scopedFilters = new ArrayList<ScopedFilter>();
        ParameterMap filterConfiguration = new ParameterMap().withValues(new ParameterList()
                .withValues(
                        new StringValue().withValue(FIELD_1),
                        new StringValue().withValue(FIELD_2)
                )
                .withName("fields"));
View Full Code Here

TOP

Related Classes of com.lyncode.xoai.dataprovider.xml.xoaiconfig.parameters.ParameterList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.