Package javax.persistence

Examples of javax.persistence.MapKeyJoinColumn


        if (isJoinedByMap)
        {
            relation.setMapKeyJoinClass(mapKeyClass);

            MapKeyJoinColumn mapKeyJoinColumnAnn = relationField.getAnnotation(MapKeyJoinColumn.class);
            if (mapKeyJoinColumnAnn != null)
            {
                String mapKeyJoinColumnName = mapKeyJoinColumnAnn.name();

                    relation.setJoinColumnName(mapKeyJoinColumnName);

            }
View Full Code Here

TOP

Related Classes of javax.persistence.MapKeyJoinColumn

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.