All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.oss.foundation.directory.impl.ServiceInstanceQueryHelper Maven / Gradle / Ivy

There is a newer version: 1.2.1-5
Show newest version
/**
 * Copyright 2014 Cisco Systems, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */




package com.cisco.oss.foundation.directory.impl;

import java.util.ArrayList;
import java.util.List;

import com.cisco.oss.foundation.directory.entity.ModelServiceInstance;
import com.cisco.oss.foundation.directory.entity.ServiceInstance;
import com.cisco.oss.foundation.directory.query.QueryCriterion;
import com.cisco.oss.foundation.directory.query.ServiceInstanceQuery;

/**
 * The helper class to do the ServiceInstances filter against the QueryCriterion.
 *
 *
 */
public class ServiceInstanceQueryHelper {

    /**
     * Filter the ModelServiceInstance list against the ServiceInstanceQuery.
     *
     * @param query
     *         the ServiceInstanceQuery matchers.
     * @param list
     *         the ModelServiceInstance list.
     * @return
     *         the matched ModelServiceInstance list.
     */
    public static List filter(ServiceInstanceQuery query, List list) {

        List instances = new ArrayList();
        for (ModelServiceInstance instance : list) {
            boolean passed = true;
            for (QueryCriterion criterion : query.getCriteria()) {
                if (criterion.isMatch(instance.getMetadata()) == false) {
                    passed = false;
                    break;
                }
            }
            if (passed) {
                instances.add(instance);
            }
        }
        return instances;

    }

    /**
     * Filter the ServiceInstance list against the ServiceInstanceQuery.
     *
     * @param query
     *         the ServiceInstanceQuery matchers.
     * @param list
     *         the ServiceInstance list.
     * @return
     *         the matched ServiceInstance list.
     */
    public static List filterServiceInstance(ServiceInstanceQuery query, List list) {

        List instances = new ArrayList();
        for (ServiceInstance instance : list) {
            boolean passed = true;
            for (QueryCriterion criterion : query.getCriteria()) {
                if (criterion.isMatch(instance.getMetadata()) == false) {
                    passed = false;
                    break;
                }
            }
            if (passed) {
                instances.add(instance);
            }
        }
        return instances;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy