blob: 8422400527a21d8d724410b9c7fa3ed5df308892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package com.netscape.cmstools.profile;
import java.util.Arrays;
import org.apache.commons.cli.CommandLine;
import com.netscape.certsrv.profile.ProfileClient;
import com.netscape.cmstools.cli.CLI;
import com.netscape.cmstools.cli.MainCLI;
public class ProfileRemoveCLI extends CLI {
public ProfileCLI profileCLI;
public ProfileRemoveCLI(ProfileCLI profileCLI) {
super("del", "Remove profiles", profileCLI);
this.profileCLI = profileCLI;
}
public void printHelp() {
formatter.printHelp(getFullName() + " <Profile ID> [OPTIONS...]", options);
}
public void execute(String[] args) throws Exception {
// Always check for "--help" prior to parsing
if (Arrays.asList(args).contains("--help")) {
printHelp();
return;
}
CommandLine cmd = parser.parse(options, args);
String[] cmdArgs = cmd.getArgs();
if (cmdArgs.length != 1) {
throw new Exception("No Profile ID specified.");
}
String profileId = args[0];
ProfileClient profileClient = profileCLI.getProfileClient();
profileClient.deleteProfile(profileId);
MainCLI.printMessage("Deleted profile \"" + profileId + "\"");
}
}
|