package com.idega.content.themes.business; import javax.ejb.CreateException; import com.idega.business.IBOHomeImpl; public class ThemesServiceHomeImpl extends IBOHomeImpl implements ThemesServiceHome { private static final long serialVersionUID = -1141269052614027579L; public Class<ThemesService> getBeanInterfaceClass() { return ThemesService.class; } public ThemesService create() throws CreateException { return (ThemesService) super.createIBO(); } }