use backend to populate data

This commit is contained in:
Athou
2013-03-22 20:51:22 +01:00
parent c6ec3c9517
commit f3ff02b476
14 changed files with 239 additions and 126 deletions

View File

@@ -0,0 +1,10 @@
package com.commafeed.backend.dao;
import javax.ejb.Stateless;
import com.commafeed.model.FeedEntryStatus;
@Stateless
public class FeedEntryStatusService extends GenericDAO<FeedEntryStatus, Long> {
}