/* * Copyright 2015 the original author or authors. * * 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.springframework.hateoas.client; import lombok.AccessLevel; import lombok.Getter; import lombok.RequiredArgsConstructor; import lombok.Value; import lombok.experimental.Wither; import java.util.Collections; import java.util.HashMap; import java.util.Map; import org.springframework.util.Assert; /** * Container for customizations to a single traverson "hop" * * @author Greg Turnquist * @author Oliver Gierke * @since 0.18 */ @Value @RequiredArgsConstructor(access = AccessLevel.PRIVATE) @Getter(AccessLevel.PACKAGE) public class Hop { /** * Name of this hop. */ private final String rel; /** * Collection of URI Template parameters. */ private final @Wither Map<String, ? extends Object> parameters; /** * Creates a new {@link Hop} for the given relation name. * * @param rel must not be {@literal null} or empty. * @return */ public static Hop rel(String rel) { Assert.hasText(rel, "Relation must not be null or empty!"); return new Hop(rel, Collections.<String, Object> emptyMap()); } /** * Add one parameter to the map of parameters. * * @param name must not be {@literal null} or empty. * @param value can be {@literal null}. * @return */ public Hop withParameter(String name, Object value) { Assert.hasText(name, "Name must not be null or empty!"); HashMap<String, Object> parameters = new HashMap<String, Object>(this.parameters); parameters.put(name, value); return new Hop(rel, parameters); } /** * Returns whether the {@link Hop} has parameters declared. * * @return */ boolean hasParameters() { return !this.parameters.isEmpty(); } /** * Create a new {@link Map} starting with the supplied template parameters. Then add the ones for this hop. This * allows a local hop to override global parameters. * * @param globalParameters must not be {@literal null}. * @return a merged map of URI Template parameters, will never be {@literal null}. */ Map<String, Object> getMergedParameters(Map<String, Object> globalParameters) { Assert.notNull(globalParameters, "Global parameters must not be null!"); Map<String, Object> mergedParameters = new HashMap<String, Object>(); mergedParameters.putAll(globalParameters); mergedParameters.putAll(this.parameters); return mergedParameters; } }