com.beaglesecurity.entities.ProjectWithApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beagle-java-sdk Show documentation
Show all versions of beagle-java-sdk Show documentation
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.entities;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class ProjectWithApplication {
private String name;
private String description;
private UUID projectKey;
private List applications;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public UUID getProjectKey() {
return projectKey;
}
public void setProjectKey(UUID projectKey) {
this.projectKey = projectKey;
}
public List getApplications() {
if (applications == null) {
applications = new ArrayList();
}
return applications;
}
public void setApplications(List applications) {
this.applications = applications;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy