ctdb-scripts: Improve update and listing code
[samba4-gss.git] / python / samba / netcmd / domain / claim / __init__.py
blobde7c4bb5d085f6ddcb4deda93e93b7b774688f2d
1 # Unix SMB/CIFS implementation.
3 # claim management
5 # Copyright (C) Catalyst.Net Ltd. 2023
7 # Written by Rob van der Linde <rob@catalyst.net.nz>
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 from samba.netcmd import SuperCommand
25 from .claim_type import cmd_domain_claim_claim_type
26 from .value_type import cmd_domain_claim_value_type
29 class cmd_domain_claim(SuperCommand):
30 """Manage claims on the domain."""
32 subcommands = {
33 "claim-type": cmd_domain_claim_claim_type(),
34 "value-type": cmd_domain_claim_value_type(),