Clear claim cache when grants/roles/domains change
[aaa.git] / aaa-cli / src / main / java / org / opendaylight / aaa / cli / dmstore / RemoveDomain.java
1 /*
2  * Copyright (c) 2016, 2017 Inocybe Technologies. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.aaa.cli.dmstore;
10
11 import org.apache.karaf.shell.commands.Command;
12 import org.apache.karaf.shell.commands.Option;
13 import org.opendaylight.aaa.api.IIDMStore;
14 import org.opendaylight.aaa.cli.AaaCliAbstractCommand;
15 import org.opendaylight.aaa.cli.utils.CliUtils;
16 import org.opendaylight.aaa.cli.utils.DataStoreUtils;
17 import org.opendaylight.aaa.impl.shiro.idm.IdmLightProxy;
18
19 @Command(name = "remove-domain", scope = "aaa", description = "Remove domain.")
20
21 /**
22  * @author mserngawy
23  *
24  */
25 public class RemoveDomain extends AaaCliAbstractCommand {
26
27     @Option(name = "-name", aliases = {
28             "--domainName" }, description = "The domain name", required = true, multiValued = false)
29     private String domainName = "";
30
31     public RemoveDomain(final IIDMStore identityStore) {
32         super(identityStore);
33     }
34
35     @Override
36     protected Object doExecute() throws Exception {
37         if (super.doExecute() == null) {
38             return CliUtils.LOGIN_FAILED_MESS;
39         }
40         final String domainId = DataStoreUtils.getDomainId(identityStore, domainName);
41         if (domainId == null) {
42             return "User does not exist";
43         }
44         if (identityStore.deleteDomain(domainId) == null) {
45             return "Failed to delete domain " + domainName;
46         }
47         IdmLightProxy.clearClaimCache();
48         return "Domain " + domainName + "has been deleted.";
49     }
50 }