mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add storeVisibilityEnabled to device types'
This commit is contained in:
commit
95b2750d8b
@ -42,6 +42,8 @@ public class DeviceTypeMetaDefinition {
|
|||||||
|
|
||||||
private boolean longLivedToken = false;
|
private boolean longLivedToken = false;
|
||||||
|
|
||||||
|
private boolean storeVisibilityEnabled = true;
|
||||||
|
|
||||||
public String getDescription() {
|
public String getDescription() {
|
||||||
return description;
|
return description;
|
||||||
}
|
}
|
||||||
@ -122,4 +124,12 @@ public class DeviceTypeMetaDefinition {
|
|||||||
public void setLongLivedToken(boolean longLivedToken) {
|
public void setLongLivedToken(boolean longLivedToken) {
|
||||||
this.longLivedToken = longLivedToken;
|
this.longLivedToken = longLivedToken;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isStoreVisibilityEnabled() {
|
||||||
|
return storeVisibilityEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStoreVisibilityEnabled(boolean storeVisibilityEnabled) {
|
||||||
|
this.storeVisibilityEnabled = storeVisibilityEnabled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user