com.contrastsecurity.models.Applications Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrast-sdk-java Show documentation
Show all versions of contrast-sdk-java Show documentation
SDK for accessing and using the Contrast TeamServer REST API in Java
package com.contrastsecurity.models;
import java.util.List;
/**
Base class for api calls returning one or more method
*/
public class Applications {
public Integer getCount() {
return count;
}
private Integer count = null;
public List getApplications() {
return applications;
}
private List applications;
public Application getApplication() {
return application;
}
private Application application;
}