initialize storage limits
This commit is contained in:
parent
2ded642fea
commit
f2f35d5b91
@ -117,6 +117,12 @@ public class UnixUser extends AbstractEntity implements Serializable {
|
||||
if (quotaHardlimit == null) {
|
||||
quotaHardlimit = Integer.valueOf(0);
|
||||
}
|
||||
if (storageSoftlimit == null) {
|
||||
storageSoftlimit = Integer.valueOf(0);
|
||||
}
|
||||
if (storageHardlimit == null) {
|
||||
storageHardlimit = Integer.valueOf(0);
|
||||
}
|
||||
}
|
||||
|
||||
public static String createQueryFromStringKey(String humanKey) {
|
||||
|
Loading…
Reference in New Issue
Block a user