/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.syncope.client.cli.commands.role; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.StringUtils; import org.apache.syncope.client.cli.Command; import org.apache.syncope.client.cli.Input; import org.apache.syncope.client.cli.commands.AbstractCommand; @Command(name = "role") public class RoleCommand extends AbstractCommand { private final RoleResultManager roleResultManager = new RoleResultManager(); @Override public void execute(final Input input) { if (StringUtils.isBlank(input.getOption())) { input.setOption(RoleOptions.HELP.getOptionName()); } switch (RoleOptions.fromName(input.getOption())) { case DETAILS: new RoleDetails(input).details(); break; case LIST: new RoleList(input).list(); break; case READ: new RoleRead(input).read(); break; case DELETE: new RoleDelete(input).delete(); break; case HELP: System.out.println(getHelpMessage()); break; default: roleResultManager.defaultOptionMessage(input.getOption(), getHelpMessage()); } } @Override public String getHelpMessage() { return roleResultManager.commandHelpMessage(getClass()); } public enum RoleOptions { HELP("--help"), DETAILS("--details"), LIST("--list"), READ("--read"), DELETE("--delete"); private final String optionName; RoleOptions(final String optionName) { this.optionName = optionName; } public String getOptionName() { return optionName; } public boolean equalsOptionName(final String otherName) { return (otherName == null) ? false : optionName.equals(otherName); } public static RoleOptions fromName(final String name) { RoleOptions optionToReturn = HELP; for (final RoleOptions option : RoleOptions.values()) { if (option.equalsOptionName(name)) { optionToReturn = option; } } return optionToReturn; } public static List<String> toList() { final List<String> options = new ArrayList<>(); for (final RoleOptions value : values()) { options.add(value.getOptionName()); } return options; } } }