mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Removed published from platforms
This commit is contained in:
parent
ac871fdbce
commit
d7b784b073
@ -74,8 +74,6 @@ public class Platform implements Cloneable {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean published;
|
|
||||||
|
|
||||||
public int getId() {
|
public int getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
@ -132,14 +130,6 @@ public class Platform implements Cloneable {
|
|||||||
this.tags = tags;
|
this.tags = tags;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isPublished() {
|
|
||||||
return published;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPublished(boolean published) {
|
|
||||||
this.published = published;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isFileBased() {
|
public boolean isFileBased() {
|
||||||
return fileBased;
|
return fileBased;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -62,7 +62,6 @@ public class GenericPlatformDAOImpl extends AbstractDAOImpl implements PlatformD
|
|||||||
platform.setId(rs.getInt("ID"));
|
platform.setId(rs.getInt("ID"));
|
||||||
platform.setName(rs.getString("NAME"));
|
platform.setName(rs.getString("NAME"));
|
||||||
platform.setIdentifier(rs.getString("IDENTIFIER"));
|
platform.setIdentifier(rs.getString("IDENTIFIER"));
|
||||||
platform.setPublished(rs.getBoolean("PUBLISHED"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return platform;
|
return platform;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user