Project

General

Profile

« Previous | Next » 

Revision 51940

changed default value: api.removable = true

View differences:

Api.java
3 3
import java.sql.Timestamp;
4 4
import java.util.Objects;
5 5
import java.util.Set;
6
import javax.persistence.*;
7 6

  
7
import javax.persistence.CascadeType;
8
import javax.persistence.Column;
9
import javax.persistence.FetchType;
10
import javax.persistence.Id;
11
import javax.persistence.MappedSuperclass;
12
import javax.persistence.OneToMany;
13
import javax.persistence.Transient;
14

  
8 15
import com.google.common.collect.ComparisonChain;
9 16
import com.google.common.collect.Sets;
10 17
import com.google.gson.Gson;
......
21 28
	protected String datasource = null;
22 29
	protected String contentdescription = null;
23 30
	protected Boolean active = false;
24
	protected Boolean removable = false;
31
	protected Boolean removable = true;
25 32
	protected String typology = null;
26 33
	protected String compatibility;
27 34

  

Also available in: Unified diff