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

net.anotheria.anosite.content.servlet.InternalBoxBeanListResponse Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.content.servlet;

import java.util.List;

import net.anotheria.anosite.content.bean.BoxBean;
import net.anotheria.anosite.shared.InternalResponseCode;

public class InternalBoxBeanListResponse extends InternalResponse {
	private List beans;
	
	public InternalBoxBeanListResponse(List someBeans){
		this(InternalResponseCode.CONTINUE, someBeans);
	}
	
	public InternalBoxBeanListResponse(InternalResponseCode code, List someBeans){
		super(code);
		beans = someBeans;
	}
	
	public List getBeans(){
		return beans;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy