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

com.beaglesecurity.api.results.ApplicationsResult Maven / Gradle / Ivy

/**
 * 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.results;

import java.util.List;

import com.beaglesecurity.entities.Application;

public class ApplicationsResult {
	private String code;
	private String message;
	private List applications;
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}
	public List getApplications() {
		return applications;
	}
	public void setApplications(List applications) {
		this.applications = applications;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy