Patterns implementation
Implementation of several patterns in Java, which may be used as future example on how to technically implement them.
Database
DAO & DTO
Data Access Object & Data Transfer Object. DAO - Design pattern, used to encapsulate the access to a persistence resource (e.g a database) and eliminate dependencies which come with the implementation of the code. DTO is the object which representates an entity of the database, with all its own properties to be manipulated.