com.beaglesecurity.entities.TeamProject 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 TeamProject {
private String teamName;
private UUID teamId;
private List projects;
public String getTeamName() {
return teamName;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
}
public UUID getTeamId() {
return teamId;
}
public void setTeamId(UUID teamId) {
this.teamId = teamId;
}
public List getProjects() {
if (projects == null) {
projects = new ArrayList();
}
return projects;
}
public void setProjects(List projects) {
this.projects = projects;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy