Make ReleaseFamilyIdentifier serializable

This commit is contained in:
Marco Belladelli 2023-04-14 11:22:59 +02:00
parent 787eaf5f60
commit a034550bc2
No known key found for this signature in database
GPG Key ID: D1D0C3030AE3AA35
1 changed files with 3 additions and 1 deletions

View File

@ -6,12 +6,14 @@
*/
package org.hibernate.orm;
import java.io.Serializable;
/**
* Major/family version component pair
*
* @author Steve Ebersole
*/
public class ReleaseFamilyIdentifier implements Comparable<ReleaseFamilyIdentifier> {
public class ReleaseFamilyIdentifier implements Comparable<ReleaseFamilyIdentifier>, Serializable {
private final int majorVersion;
private final int familyVersion;