package com.telefonica.euro_iaas.placement.model.provider; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class NICConf implements Comparable<NICConf> { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; public NICConf() { super(); } /** * @return the id */ public Long getId() { return id; } /** * @param id * the id to set */ public void setId(Long id) { this.id = id; } @Override public int compareTo(NICConf arg0) { // TODO Auto-generated method stub return 0; } @Override public String toString() { return "NICConf [id=" + id + "]"; } }