Project

General

Profile

« Previous | Next » 

Revision 50589

allow null values

View differences:

DatasourceApiDbEntry.java
22 22
	private String registeredby;
23 23
	private String typology;
24 24
	private String platform;
25
	private boolean managed;
25
	private Boolean managed;
26 26

  
27 27
	protected String protocol = null;
28 28
	protected String contentdescription = null;
29
	protected boolean active = false;
30
	protected boolean removable = false;
29
	protected Boolean active = false;
30
	protected Boolean removable = false;
31 31
	protected String apitypology = null;
32 32
	protected String compatibility;
33 33
	private String baseurl;
......
106 106
		this.platform = platform;
107 107
	}
108 108

  
109
	public boolean getManaged() {
109
	public Boolean getManaged() {
110 110
		return managed;
111 111
	}
112 112

  
113
	public void setManaged(final boolean managed) {
113
	public void setManaged(final Boolean managed) {
114 114
		this.managed = managed;
115 115
	}
116 116

  
......
130 130
		this.contentdescription = contentdescription;
131 131
	}
132 132

  
133
	public boolean getActive() {
133
	public Boolean getActive() {
134 134
		return active;
135 135
	}
136 136

  
137
	public void setActive(final boolean active) {
137
	public void setActive(final Boolean active) {
138 138
		this.active = active;
139 139
	}
140 140

  
141
	public boolean getRemovable() {
141
	public Boolean getRemovable() {
142 142
		return removable;
143 143
	}
144 144

  
145
	public void setRemovable(final boolean removable) {
145
	public void setRemovable(final Boolean removable) {
146 146
		this.removable = removable;
147 147
	}
148 148

  

Also available in: Unified diff