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

com.beaglesecurity.api.payloads.CreateApplication Maven / Gradle / Ivy

Go to download

The Beagle Security SDK for Java provides Java APIs for building software for penetration testing using Beagle Security platform.

The newest version!
/**
 * Copyright (c) Beagle Cyber Innovations Pvt. Ltd. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for
 * license information.
 */

package com.beaglesecurity.api.payloads;

import java.util.UUID;

import com.beaglesecurity.entities.ApplicationType;

public class CreateApplication extends PayloadBase {
	private String name;
	private String url;
	private UUID projectKey;
	private ApplicationType type;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getUrl() {
		return url;
	}
	public void setUrl(String url) {
		this.url = url;
	}
	public UUID getProjectKey() {
		return projectKey;
	}
	public void setProjectKey(UUID projectKey) {
		this.projectKey = projectKey;
	}
	public ApplicationType getType() {
		return type;
	}
	public void setType(ApplicationType type) {
		this.type = type;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy