[hibernate-issues] [Hibernate-JIRA] Commented: (OGM-40) Make EntityKey use column names / column values instead of the serializable id

Emmanuel Bernard (JIRA) noreply at atlassian.com
Thu Jun 23 05:44:54 EDT 2011


    [ http://opensource.atlassian.com/projects/hibernate/browse/OGM-40?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=42702#action_42702 ] 

Emmanuel Bernard commented on OGM-40:
-------------------------------------

I want to go from

{code}public class EntityKey implements Serializable {
	private final String table;
	private final Serializable id;
{code}

to 


{code}public class EntityKey implements Serializable {
	private final String table;
	private final String[] columnNames;
	private final Object[] columnValues;
{code}

Like AssociationKey does


> Make EntityKey use column names / column values instead of the serializable id
> ------------------------------------------------------------------------------
>
>                 Key: OGM-40
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/OGM-40
>             Project: Hibernate OGM
>          Issue Type: Improvement
>          Components: core
>            Reporter: Emmanuel Bernard
>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list