ReaderRestPojo.java 980 Bytes
package fi.codecrew.moya.rest.pojo;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;

import fi.codecrew.moya.model.Reader;
import fi.codecrew.moya.model.ReaderType;

public class ReaderRestPojo {

	private Reader reader;

	@XmlElement(name = "readerId")
	public Integer getId() {
		return reader.getId();
	}

	@XmlElement(name = "identification")
	public String getIdent() {
		return reader.getIdentification();
	}

	@XmlElement(name = "description")
	public String getDescr() {
		return reader.getDescription();
	}

	@XmlElement(name = "readerType")
	public ReaderType getType() {
		return reader.getType();
	}

	public ReaderRestPojo() {
		this.reader = null;
	}

	public ReaderRestPojo(Reader r) {
		this.reader = r;
	}

	public static List<ReaderRestPojo> parse(List<Reader> readers) {
		ArrayList<ReaderRestPojo> ret = new ArrayList<>();
		for (Reader r : readers) {
			ret.add(new ReaderRestPojo(r));
		}
		return ret;
	}
}