Skip to content

Commit

Permalink
Javadoc the transaction factory package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariana Azevedo committed Sep 15, 2019
1 parent f0c075b commit acb8937
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

import io.github.mariazevedo88.financialjavaapi.model.Transaction;

/**
* Interface that provides method for manipulate a transaction.
*
* @author Mariana Azevedo
* @since 08/09/2019
*/
public interface TransactionFactory {

Transaction createTransaction(String type);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
import io.github.mariazevedo88.financialjavaapi.factory.TransactionFactory;
import io.github.mariazevedo88.financialjavaapi.model.Transaction;

/**
* Factory class for the Transaction entity.
*
* @author Mariana Azevedo
* @since 08/09/2019
*/
public class TransactionFactoryImpl implements TransactionFactory{

@Override
Expand Down

0 comments on commit acb8937

Please sign in to comment.