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

org.zaproxy.zap.extension.api.ApiElement Maven / Gradle / Ivy

Go to download

The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.

There is a newer version: 2.16.0
Show newest version
/*
 * Zed Attack Proxy (ZAP) and its related class files.
 * 
 * ZAP is an HTTP/HTTPS proxy for assessing web application security.
 * 
 * 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 
 * 
 *   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.zaproxy.zap.extension.api;

import java.util.ArrayList;
import java.util.List;

public class ApiElement {

	private String name = null;
	private String descriptionTag = null;
	private List mandatoryParamNames = new ArrayList<>();
	private List optionalParamNames = new ArrayList<>();

	/**
	 * Flag that indicates whether or not the API element is deprecated.
	 * 
	 * @see #deprecatedDescription
	 */
	private boolean deprecated;

	/**
	 * The description for the deprecation.
	 * 
	 * @see #deprecated
	 */
	private String deprecatedDescription;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public ApiElement(String name) {
		super();
		this.name = name;
	}
	
	public ApiElement(String name, List mandatoryParamNames) {
		this(name, mandatoryParamNames, null);
	}
	
	public ApiElement(String name, List mandatoryParamNames, List optionalParamNames) {
		super();
		this.name = name;
		if (this.mandatoryParamNames != null) {
			this.mandatoryParamNames = mandatoryParamNames;
		}
		if (this.optionalParamNames != null) {
			this.optionalParamNames = optionalParamNames;
		}
	}
	
	public ApiElement(String name, String[] mandatoryParamNames) {
		this(name, mandatoryParamNames, null);
	}
	
	public ApiElement(String name, String[] mandatoryParamNames, String[] optionalParamNames) {
		super();
		this.name = name;
		this.setMandatoryParamNames(mandatoryParamNames);
		this.setOptionalParamNames(optionalParamNames);
	}
	
	public void setMandatoryParamNames(String[] paramNames) {
		if (paramNames != null) {
			this.mandatoryParamNames = new ArrayList<>(paramNames.length);
			for (String param : paramNames) {
				this.mandatoryParamNames.add(param);
			}
		}
	}
	
	public void setMandatoryParamNames(List paramNames) {
		this.mandatoryParamNames = paramNames;
	}

	public List getMandatoryParamNames() {
		return mandatoryParamNames;
	}

	public String getDescriptionTag() {
		return descriptionTag;
	}

	public void setDescriptionTag(String descriptionTag) {
		this.descriptionTag = descriptionTag;
	}

	public List getOptionalParamNames() {
		return optionalParamNames;
	}
	
	public void setOptionalParamNames(String[] optionalParamNames) {
		if (optionalParamNames != null) {
			this.optionalParamNames = new ArrayList<>(optionalParamNames.length);
			for (String param : optionalParamNames) {
				this.optionalParamNames.add(param);
			}
		}
	}

	public void setOptionalParamNames(List optionalParamNames) {
		this.optionalParamNames = optionalParamNames;
	}

	/**
	 * Tells whether or not the API element is deprecated.
	 *
	 * @return {@code true} if the API element is deprecated, {@code false} otherwise.
	 * @since 2.6.0
	 * @see #getDeprecatedDescription()
	 */
	public boolean isDeprecated() {
		return deprecated;
	}

	/**
	 * Sets whether or not the API element is deprecated.
	 * 

* Deprecated elements are shown in the {@link WebUI} with a note that they are deprecated and their use is discouraged. The * API generators might also mark the elements as deprecated. * * @param deprecated {@code true} if the API element is deprecated, {@code false} otherwise. * @since 2.6.0 * @see #setDeprecatedDescription(String) */ public void setDeprecated(boolean deprecated) { this.deprecated = deprecated; } /** * Gets the description of the deprecation. * * @return the description of the deprecation, might be {@code null}. * @since 2.6.0 * @see #isDeprecated() */ public String getDeprecatedDescription() { return deprecatedDescription; } /** * Sets the (concise) description of the deprecation. *

* The description should explain why it was deprecated and what are the alternative endpoints that should be used, if any. *

* Note: It should be in plain text (i.e. no HTML tags). * * @param description the description of the deprecation. * @since 2.6.0 * @see #setDeprecated(boolean) */ public void setDeprecatedDescription(String description) { this.deprecatedDescription = description; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy