/*
 * $Id: $
 *
 * Copyright (c) Critical Software S.A., All Rights Reserved.
 * (www.criticalsoftware.com)
 *
 * This software is the proprietary information of Critical Software S.A.
 * Use is subject to license terms.
 *
 * Last changed on : $Date: $
 * Last changed by : $Author: $
 */
package com.criticalsoftware.wiccore.entities.processes.criteria;

import javax.persistence.Basic;
import javax.persistence.Embeddable;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import java.io.Serializable;

/**
 * <description>
 *
 * @author :    Roberto Cortez
 * @version :   $Revision: $
 */
@Entity
public class Test implements Serializable {
    @EmbeddedId
    private TestPK id;

    @Embeddable
    public static class TestPK implements Serializable {
        @Basic
        private Long id;
    }
}
