HibernateRelationships |
|
| Your trail: |
Difference between
version 73
and
version 72:
| At line 529 added 1 line. |
| [{Java2HtmlPlugin |
| At line 531 added 1 line. |
| package org.appfuse.dao; |
| At line 533 added 16 lines. |
| import java.util.List; |
|
| import org.appfuse.model.Entry; |
|
| public interface EntryDAO { |
| |
| public Entry getEntry(Long entryId); |
| public List getEntries(Entry entry); |
| public void saveEntry(Entry entry); |
| public void removeEntry(Long entryId); |
|
| } |
|
|
| }] |
|
| At line 541 removed 3 lines. |
| /** |
| * @author Rance Shields |
| */ |
| At line 545 changed 4 lines. |
| public Category getCategory(Long categoryId); |
| public List getCategories(Category category); |
| public void saveCategory(Category category); |
| public void removeCategory(Long categoryId); |
| public Category getCategory(Long categoryId); |
| public List getCategories(Category category); |
| public void saveCategory(Category category); |
| public void removeCategory(Long categoryId); |
Back to HibernateRelationships,
or to the Page History.
|