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() {
|
||||
return id;
|
||||
}
|
||||
@ -132,14 +130,6 @@ public class Platform implements Cloneable {
|
||||
this.tags = tags;
|
||||
}
|
||||
|
||||
public boolean isPublished() {
|
||||
return published;
|
||||
}
|
||||
|
||||
public void setPublished(boolean published) {
|
||||
this.published = published;
|
||||
}
|
||||
|
||||
public boolean isFileBased() {
|
||||
return fileBased;
|
||||
}
|
||||
|
||||
@ -62,7 +62,6 @@ public class GenericPlatformDAOImpl extends AbstractDAOImpl implements PlatformD
|
||||
platform.setId(rs.getInt("ID"));
|
||||
platform.setName(rs.getString("NAME"));
|
||||
platform.setIdentifier(rs.getString("IDENTIFIER"));
|
||||
platform.setPublished(rs.getBoolean("PUBLISHED"));
|
||||
}
|
||||
|
||||
return platform;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user