Package com.skava.business.factory
Interface NotesFactory
- All Known Implementing Classes:
NotesFactoryImpl
public interface NotesFactory
An interface to define the factory for creating Notes objects.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptioncreateNotes
(NotesDomain notes) This method converts theNotes
object fromNotesDomain
object.createNotesList
(List<NotesDomain> notes)
-
Method Details
-
createNotes
This method converts theNotes
object fromNotesDomain
object.- Parameters:
notes
- HoldsNotesDomain
object which is used to transferring notes domain to notes DTO object.- Returns:
- The
Notes
object.
-
createNotesList
- Parameters:
notes
- Holds theList
ofNotesDomain
object which is used to convert notes domain list to Notes DTO object.- Returns:
- The
List
ofNotes
object.
-