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

org.proshin.finapi.bank.in.BanksCriteria Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 Roman Proshin
 *
 * 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 org.proshin.finapi.bank.in;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.annotation.Nonnull;
import org.apache.http.NameValuePair;
import org.proshin.finapi.bank.Bank;
import org.proshin.finapi.primitives.BankingInterface;
import org.proshin.finapi.primitives.paging.PagingCriteria;
import org.proshin.finapi.primitives.pair.CommaSeparatedPair;
import org.proshin.finapi.primitives.pair.PlainNameValuePair;

public final class BanksCriteria implements Iterable {

    private final List pairs;

    public BanksCriteria() {
        this(new ArrayList<>());
    }

    public BanksCriteria(final List pairs) {
        this.pairs = pairs;
    }

    public BanksCriteria withIds(final Iterable ids) {
        this.pairs.add(new PlainNameValuePair(new CommaSeparatedPair<>("ids", ids)));
        return this;
    }

    public BanksCriteria withSearch(final String search) {
        this.pairs.add(new PlainNameValuePair("search", search));
        return this;
    }

    /**
     * @deprecated since v0.1.92 due to PSD2-related changes
     */
    @Deprecated
    public BanksCriteria withSupporting(final boolean supporting) {
        this.pairs.add(new PlainNameValuePair("isSupported", supporting));
        return this;
    }

    /**
     * @deprecated since v0.1.92 due to PSD2-related changes
     */
    @Deprecated
    public BanksCriteria withPinsAreVolatile(final boolean pinsAreVolatile) {
        this.pairs.add(new PlainNameValuePair("pinsAreVolatile", pinsAreVolatile));
        return this;
    }

    /**
     * @deprecated since v0.1.92 due to PSD2-related changes
     */
    @Deprecated
    public BanksCriteria withSupportedDataSources(final Iterable supportedDataSources) {
        this.pairs.add(new PlainNameValuePair(new CommaSeparatedPair<>("supportedDataSources",
            supportedDataSources
        )));
        return this;
    }

    public BanksCriteria withSupportedInterfaces(final Iterable supportedInterfaces) {
        this.pairs.add(new PlainNameValuePair(new CommaSeparatedPair<>("supportedInterfaces", supportedInterfaces)));
        return this;
    }

    public BanksCriteria withLocation(final Iterable location) {
        this.pairs.add(new PlainNameValuePair(new CommaSeparatedPair<>("location", location)));
        return this;
    }

    public BanksCriteria withTppAuthenticationGroups(final Iterable tppAuthenticationGroups) {
        this.pairs.add(
            new PlainNameValuePair(
                new CommaSeparatedPair<>(
                    "tppAuthenticationGroupIds",
                    tppAuthenticationGroups
                )));
        return this;
    }

    public BanksCriteria withTestBank(final boolean testBank) {
        this.pairs.add(new PlainNameValuePair("isTestBank", testBank));
        return this;
    }

    public BanksCriteria withPaging(final PagingCriteria paging) {
        for (final NameValuePair parameter : paging) {
            this.pairs.add(parameter);
        }
        return this;
    }

    @Nonnull
    @Override
    public Iterator iterator() {
        return this.pairs.iterator();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy