/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.loader.plan.build.internal.returns; import org.hibernate.loader.plan.spi.ScalarReturn; import org.hibernate.type.Type; /** * @author Steve Ebersole * @author Gail Badner */ public class ScalarReturnImpl implements ScalarReturn { private final String name; private final Type type; public ScalarReturnImpl(String name, Type type) { this.name = name; this.type = type; } public String getName() { return name; } public Type getType() { return type; } }