/* * Copyright 2014-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.data.jpa.repository.query; import java.util.Arrays; import java.util.List; import org.springframework.data.jpa.repository.EntityGraph; import org.springframework.data.jpa.repository.EntityGraph.EntityGraphType; import org.springframework.util.Assert; import org.springframework.util.StringUtils; /** * EntityGraph configuration for JPA 2.1 {@link EntityGraph}s. * * @author Thomas Darimont * @since 1.6 */ public class JpaEntityGraph { private static String[] EMPTY_ATTRIBUTE_PATHS = {}; private final String name; private final EntityGraphType type; private final List<String> attributePaths; /** * Creates an {@link JpaEntityGraph}. * * @param entityGraph must not be {@literal null}. * @param nameFallback must not be {@literal null} or empty. */ public JpaEntityGraph(EntityGraph entityGraph, String nameFallback) { this(StringUtils.hasText(entityGraph.value()) ? entityGraph.value() : nameFallback, entityGraph.type(), entityGraph .attributePaths()); } /** * Creates an {@link JpaEntityGraph} with the given name, {@link EntityGraphType} and attribute paths. * * @param name must not be {@literal null} or empty. * @param type must not be {@literal null}. * @param attributePaths may be {@literal null}. * @since 1.9 */ public JpaEntityGraph(String name, EntityGraphType type, String[] attributePaths) { Assert.hasText(name, "The name of an EntityGraph must not be null or empty!"); Assert.notNull(type, "FetchGraphType must not be null!"); this.name = name; this.type = type; this.attributePaths = Arrays.asList(attributePaths == null ? EMPTY_ATTRIBUTE_PATHS : attributePaths); } /** * Returns the name of the {@link EntityGraph} configuration to use. * * @return */ public String getName() { return name; } /** * Returns the {@link EntityGraphType} of the {@link EntityGraph} to use. * * @return */ public EntityGraphType getType() { return type; } /** * Returns the attribute node names to be used for this {@link JpaEntityGraph}. * * @return * @since 1.9 */ public List<String> getAttributePaths() { return attributePaths; } /** * Return {@literal true} if this {@link JpaEntityGraph} needs to be generated on-the-fly. * * @return * @since 1.9 */ public boolean isAdHocEntityGraph() { return !attributePaths.isEmpty(); } /* * (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "JpaEntityGraph [name=" + name + ", type=" + type + ", attributePaths=" + attributePaths.toString() + "]"; } }