mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
12 lines
253 B
Java
12 lines
253 B
Java
package com.commafeed.backend.dao;
|
|
|
|
import javax.ejb.Stateless;
|
|
|
|
import com.commafeed.backend.model.ApplicationSettings;
|
|
|
|
@SuppressWarnings("serial")
|
|
@Stateless
|
|
public class ApplicationSettingsDAO extends GenericDAO<ApplicationSettings> {
|
|
|
|
}
|