| .. | .. |
|---|
| 38 | 38 | @JsonIgnoreProperties(ignoreUnknown = true) |
|---|
| 39 | 39 | @Entity |
|---|
| 40 | 40 | @Table(name = "application") |
|---|
| 41 | | -@NamedQueries({ @NamedQuery(name = "list-applications", query = "SELECT a FROM Application a") }) |
|---|
| 41 | +@NamedQueries({ @NamedQuery(name = "list-applications", query = "SELECT a FROM Application a"), |
|---|
| 42 | + @NamedQuery(name = "list-applications-by_ids", query = "SELECT a FROM Application a where id in :list_ids") }) |
|---|
| 42 | 43 | public class Application implements Serializable { |
|---|
| 43 | 44 | |
|---|
| 44 | 45 | private static final Logger LOG = LogManager.getLogger(Application.class); |
|---|