/*
 * Copyright 2014-2020 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
 *
 *      https://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.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;

EntityGraph configuration for JPA 2.1 EntityGraphs.
Author:Thomas Darimont, Mark Paluch
Since:1.6
/** * EntityGraph configuration for JPA 2.1 {@link EntityGraph}s. * * @author Thomas Darimont * @author Mark Paluch * @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 JpaEntityGraph.
Params:
  • entityGraph – must not be null.
  • nameFallback – must not be null or empty.
/** * 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 JpaEntityGraph with the given name, EntityGraphType and attribute paths.
Params:
  • name – must not be null or empty.
  • type – must not be null.
  • attributePaths – may be null.
Since:1.9
/** * 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, @Nullable 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 EntityGraph configuration to use.
Returns:
/** * Returns the name of the {@link EntityGraph} configuration to use. * * @return */
public String getName() { return name; }
Returns the EntityGraphType of the EntityGraph to use.
Returns:
/** * 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 JpaEntityGraph.
Returns:
Since:1.9
/** * Returns the attribute node names to be used for this {@link JpaEntityGraph}. * * @return * @since 1.9 */
public List<String> getAttributePaths() { return attributePaths; }
Return true if this JpaEntityGraph needs to be generated on-the-fly.
Returns:
Since:1.9
/** * 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() + "]"; } }