blob: 34c6021085cf5ebd68ac03ea15a804604bd0a9d0 (
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 ProfileEnableCLI extends CLI {
public ProfileCLI profileCLI;
public ProfileEnableCLI(ProfileCLI profileCLI) {
super("enable", "Enable 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 = cmdArgs[0];
ProfileClient profileClient = profileCLI.getProfileClient();
profileClient.enableProfile(profileId);
MainCLI.printMessage("Enabled profile \"" + profileId + "\"");
}
}
|