CardPrintBeanLocal.java 292 Bytes
package fi.insomnia.bortal.beans;

import java.util.List;

import javax.ejb.Local;

@Local
public interface CardPrintBeanLocal {
	public byte[] getUserCardsAsPrintablePdf(List<Integer> userIdList) throws Exception;
	public byte[] getUserCardAsPrintablePdf(Integer userId) throws Exception;
}