Project

General

Profile

« Previous | Next » 

Revision 47598

- Fixed duplicate dependncies
- Fixed an error in eligibility checking
- Fixed an error in account activation
- Organized imports

View differences:

File.java
1 1
package eu.dnetlib.goldoa.domain;
2 2

  
3
import java.io.Serializable;
4
import java.math.BigInteger;
5
import javax.persistence.*;
3
import com.google.gwt.user.client.rpc.IsSerializable;
6 4

  
5
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.Id;
7 8

  
9

  
8 10
/**
9 11
 * The persistent class for the file database table.
10 12
 * 
11 13
 */
12 14
@Entity
13
public class File implements Serializable {
15
public class File implements IsSerializable {
14 16
	private static final long serialVersionUID = 1L;
15 17
	@Id
16 18
	private String id;

Also available in: Unified diff