|
3 | 3 | import org.jetbrains.annotations.NotNull; |
4 | 4 |
|
5 | 5 | public final class Permissions { |
6 | | - public static @NotNull String COMMAND = "bank.command"; |
7 | | - public static @NotNull String BALANCE_SELF = "bank.balance.self"; |
8 | | - public static @NotNull String TRANSFER_SELF = "bank.transfer.self"; |
9 | | - public static @NotNull String TRANSFER_OTHER = "bank.transfer.other"; |
10 | | - public static @NotNull String HISTORY = "bank.history"; |
11 | | - public static @NotNull String ACCOUNT_CREATE = "bank.account.create"; |
12 | | - public static @NotNull String INSTRUMENT_CREATE = "bank.instrument.create"; |
13 | | - public static @NotNull String WHOIS = "bank.whois"; |
14 | | - public static @NotNull String SET_NAME = "bank.set.name"; |
15 | | - public static @NotNull String FREEZE = "bank.freeze"; |
16 | | - public static @NotNull String DELETE = "bank.delete"; |
17 | | - public static @NotNull String BALTOP = "bank.baltop"; |
18 | | - public static @NotNull String POS_CREATE = "bank.pos.create"; |
19 | | - public static @NotNull String POS_USE = "bank.pos.use"; |
20 | | - public static @NotNull String INVOICE_CREATE = "bank.invoice.create"; |
21 | | - public static @NotNull String INVOICE_CREATE_OTHER = "bank.invoice.create.other"; |
22 | | - public static @NotNull String INVOICE_VIEW = "bank.invoice.view"; |
23 | | - public static @NotNull String INVOICE_VIEW_OTHER = "bank.invoice.view.other"; |
24 | | - public static @NotNull String INVOICE_PAY_OTHER = "bank.invoice.pay.other"; |
25 | | - public static @NotNull String INVOICE_PAY_ACCOUNT_OTHER = "bank.invoice.pay.account-other"; |
26 | | - public static @NotNull String INVOICE_SEND = "bank.invoice.send"; |
27 | | - public static @NotNull String INVOICE_SEND_OTHER = "bank.invoice.send.other"; |
28 | | - public static @NotNull String RELOAD = "bank.reload"; |
29 | | - public static @NotNull String BALANCE_OTHER = "bank.balance.other"; |
30 | | - public static @NotNull String HISTORY_OTHER = "bank.history.other"; |
31 | | - public static @NotNull String ACCOUNT_CREATE_OTHER = "bank.account.create.other"; |
32 | | - public static @NotNull String ACCOUNT_CREATE_BYPASS = "bank.account.create.bypass"; |
33 | | - public static @NotNull String ACCOUNT_CREATE_VAULT = "bank.account.create.vault"; |
34 | | - public static @NotNull String INSTRUMENT_CREATE_OTHER = "bank.instrument.create.other"; |
35 | | - public static @NotNull String INSTRUMENT_CREATE_BYPASS = "bank.instrument.create.bypass"; |
36 | | - public static @NotNull String SET_BALANCE = "bank.set.balance"; |
37 | | - public static @NotNull String SET_NAME_OTHER = "bank.set.name.other"; |
38 | | - public static @NotNull String SET_NAME_VAULT = "bank.set.name.vault"; |
39 | | - public static @NotNull String FREEZE_OTHER = "bank.freeze.other"; |
40 | | - public static @NotNull String DELETE_OTHER = "bank.delete.other"; |
41 | | - public static @NotNull String DELETE_VAULT = "bank.delete.vault"; |
42 | | - public static @NotNull String POS_CREATE_OTHER = "bank.pos.create.other"; |
43 | | - public static @NotNull String POS_CREATE_PERSONAL = "bank.pos.create.personal"; |
44 | | - public static @NotNull String POS_USE_OTHER = "bank.pos.use.other"; |
45 | | - public static @NotNull String NOTIFY_UPDATE = "bank.notify-update"; |
| 6 | + public static final @NotNull String COMMAND = "bank.command"; |
| 7 | + public static final @NotNull String BALANCE_SELF = "bank.balance.self"; |
| 8 | + public static final @NotNull String TRANSFER_SELF = "bank.transfer.self"; |
| 9 | + public static final @NotNull String TRANSFER_OTHER = "bank.transfer.other"; |
| 10 | + public static final @NotNull String HISTORY = "bank.history"; |
| 11 | + public static final @NotNull String ACCOUNT_CREATE = "bank.account.create"; |
| 12 | + public static final @NotNull String INSTRUMENT_CREATE = "bank.instrument.create"; |
| 13 | + public static final @NotNull String WHOIS = "bank.whois"; |
| 14 | + public static final @NotNull String SET_NAME = "bank.set.name"; |
| 15 | + public static final @NotNull String FREEZE = "bank.freeze"; |
| 16 | + public static final @NotNull String DELETE = "bank.delete"; |
| 17 | + public static final @NotNull String BALTOP = "bank.baltop"; |
| 18 | + public static final @NotNull String POS_CREATE = "bank.pos.create"; |
| 19 | + public static final @NotNull String POS_USE = "bank.pos.use"; |
| 20 | + public static final @NotNull String INVOICE_CREATE = "bank.invoice.create"; |
| 21 | + public static final @NotNull String INVOICE_CREATE_OTHER = "bank.invoice.create.other"; |
| 22 | + public static final @NotNull String INVOICE_VIEW = "bank.invoice.view"; |
| 23 | + public static final @NotNull String INVOICE_VIEW_OTHER = "bank.invoice.view.other"; |
| 24 | + public static final @NotNull String INVOICE_PAY_OTHER = "bank.invoice.pay.other"; |
| 25 | + public static final @NotNull String INVOICE_PAY_ACCOUNT_OTHER = "bank.invoice.pay.account-other"; |
| 26 | + public static final @NotNull String INVOICE_SEND = "bank.invoice.send"; |
| 27 | + public static final @NotNull String INVOICE_SEND_OTHER = "bank.invoice.send.other"; |
| 28 | + public static final @NotNull String RELOAD = "bank.reload"; |
| 29 | + public static final @NotNull String BALANCE_OTHER = "bank.balance.other"; |
| 30 | + public static final @NotNull String TRANSFER_FROM_OTHER = "bank.transfer.from-other"; |
| 31 | + public static final @NotNull String HISTORY_OTHER = "bank.history.other"; |
| 32 | + public static final @NotNull String ACCOUNT_CREATE_OTHER = "bank.account.create.other"; |
| 33 | + public static final @NotNull String ACCOUNT_CREATE_BYPASS = "bank.account.create.bypass"; |
| 34 | + public static final @NotNull String ACCOUNT_CREATE_VAULT = "bank.account.create.vault"; |
| 35 | + public static final @NotNull String INSTRUMENT_CREATE_OTHER = "bank.instrument.create.other"; |
| 36 | + public static final @NotNull String INSTRUMENT_CREATE_BYPASS = "bank.instrument.create.bypass"; |
| 37 | + public static final @NotNull String SET_BALANCE = "bank.set.balance"; |
| 38 | + public static final @NotNull String SET_NAME_OTHER = "bank.set.name.other"; |
| 39 | + public static final @NotNull String SET_NAME_VAULT = "bank.set.name.vault"; |
| 40 | + public static final @NotNull String FREEZE_OTHER = "bank.freeze.other"; |
| 41 | + public static final @NotNull String DELETE_OTHER = "bank.delete.other"; |
| 42 | + public static final @NotNull String DELETE_VAULT = "bank.delete.vault"; |
| 43 | + public static final @NotNull String POS_CREATE_OTHER = "bank.pos.create.other"; |
| 44 | + public static final @NotNull String POS_CREATE_PERSONAL = "bank.pos.create.personal"; |
| 45 | + public static final @NotNull String POS_USE_OTHER = "bank.pos.use.other"; |
| 46 | + public static final @NotNull String NOTIFY_UPDATE = "bank.notify-update"; |
46 | 47 | } |
0 commit comments