CompoEntryParticipantFacade.java 354 Bytes
package fi.insomnia.bortal.facade;

import javax.ejb.LocalBean;
import javax.ejb.Stateless;

import fi.insomnia.bortal.model.CompoEntryParticipant;

@Stateless
@LocalBean
public class CompoEntryParticipantFacade extends IntegerPkGenericFacade<CompoEntryParticipant> {

	public CompoEntryParticipantFacade() {

		super(CompoEntryParticipant.class);
	}

}