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:
parent
ae5bcf4f8a
commit
0f1f236c91
@ -42,6 +42,8 @@ public class DeviceTypeMetaDefinition {
|
||||
|
||||
private boolean longLivedToken = false;
|
||||
|
||||
private boolean storeVisibilityEnabled = true;
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@ -122,4 +124,12 @@ public class DeviceTypeMetaDefinition {
|
||||
public void setLongLivedToken(boolean 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