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

org.glassfish.jersey.client.internal.inject.CollectionUpdater Maven / Gradle / Ivy

Go to download

A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle (jaxrs-ri.jar). Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from the command line.

There is a newer version: 3.1.6
Show newest version
/*
 * Copyright (c) 2010, 2020 Oracle and/or its affiliates. All rights reserved.
 * Copyright (c) 2018 Payara Foundation and/or its affiliates.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package org.glassfish.jersey.client.internal.inject;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
import static java.util.stream.Collectors.toList;
import jakarta.ws.rs.ProcessingException;
import jakarta.ws.rs.ext.ParamConverter;
import org.glassfish.jersey.client.internal.LocalizationMessages;
import org.glassfish.jersey.client.inject.ParameterUpdater;

/**
 * Update parameter value as a typed collection.
 *
 * @param  parameter value type.
 * @author Paul Sandoz
 * @author Marek Potociar
 * @author Gaurav Gupta ([email protected])
 */
abstract class CollectionUpdater extends AbstractParamValueUpdater
        implements ParameterUpdater, Collection> {

    /**
     * Create new collection parameter updater.
     *
     * @param converter          parameter converter to be used to convert parameter from a custom Java type.
     * @param parameterName      parameter name.
     * @param defaultValue default parameter String value.
     */
    protected CollectionUpdater(final ParamConverter converter,
                                final String parameterName,
                                final String defaultValue) {
        super(converter, parameterName, defaultValue);
    }

    @Override
    @SuppressWarnings("unchecked")
    public Collection update(final Collection values) {
        Collection results = Collections.EMPTY_LIST;
        if (values != null) {
            results = values
                    .stream()
                    .map(item -> toString(item))
                    .collect(toList());
        } else if (isDefaultValueRegistered()) {
            results = Collections.singletonList(getDefaultValueString());
        }
        return results;
    }

    /**
     * Get a new collection instance that will be used to store the updated parameters.
     * 

* The method is overridden by concrete implementations to return an instance * of a proper collection sub-type. * * @return instance of a proper collection sub-type */ protected abstract Collection newCollection(); private static final class ListValueOf extends CollectionUpdater { ListValueOf(final ParamConverter converter, final String parameter, final String defaultValue) { super(converter, parameter, defaultValue); } @Override protected List newCollection() { return new ArrayList<>(); } } private static final class SetValueOf extends CollectionUpdater { SetValueOf(final ParamConverter converter, final String parameter, final String defaultValue) { super(converter, parameter, defaultValue); } @Override protected Set newCollection() { return new HashSet<>(); } } private static final class SortedSetValueOf extends CollectionUpdater { SortedSetValueOf(final ParamConverter converter, final String parameter, final String defaultValue) { super(converter, parameter, defaultValue); } @Override protected SortedSet newCollection() { return new TreeSet<>(); } } /** * Get a new {@code CollectionUpdater} instance. * * @param collectionType raw collection type. * @param converter parameter converter to be used to convert parameter Java type values into * String values . * @param parameterName parameter name. * @param defaultValue default parameter string value. * @param converted parameter Java type. * @return new collection parameter updated instance. */ public static CollectionUpdater getInstance(final Class collectionType, final ParamConverter converter, final String parameterName, final String defaultValue) { if (List.class == collectionType) { return new ListValueOf<>(converter, parameterName, defaultValue); } else if (Set.class == collectionType) { return new SetValueOf<>(converter, parameterName, defaultValue); } else if (SortedSet.class == collectionType) { return new SortedSetValueOf<>(converter, parameterName, defaultValue); } else { throw new ProcessingException(LocalizationMessages.COLLECTION_UPDATER_TYPE_UNSUPPORTED()); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy