All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.shell.Command Maven / Gradle / Ivy

/*
 * Copyright 2017 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.shell;

import java.util.Objects;

import org.springframework.util.Assert;
import org.springframework.util.StringUtils;

public interface Command {

	/**
	 * Encapsulates help metadata about a shell command.
	 *
	 * @author Eric Bottard
	 */
	class Help {

		/**
		 * Optional group to gather related commands together.
		 */
		private final String group;

		/**
		 * A required, short one sentence description of the command. Should start with a capital and end with a dot
		 * for consistency.
		 */
		private final String description;

		public Help(String description) {
			this(description, null);
		}

		public Help(String description, String group) {
			Assert.isTrue(StringUtils.hasText(description), "Command description cannot be null or empty");
			this.description = description;
			this.group = StringUtils.hasText(group) ? group : "";
		}

		public String getDescription() {
			return description;
		}

		public String getGroup() {
			return group;
		}

		@Override
		public boolean equals(Object o) {
			if (this == o) return true;
			if (o == null || getClass() != o.getClass()) return false;
			Help help = (Help) o;
			return Objects.equals(group, help.group) &&
					Objects.equals(description, help.description);
		}

		@Override
		public int hashCode() {
			return Objects.hash(group, description);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy