Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
dvayanu committed Jul 2, 2024
1 parent f6d2096 commit af4b6a0
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@
import java.util.LinkedList;
import java.util.List;

/**
* Represents a single data entity in the data repository. It can either be calculated (formulas) or retrieved from external source.
*/
public class DataEntityBean {
/**
* Name of the entity
*/
private String name;
/**
* Current value.
*/
private String value;
/**
* Formulas that define the calculation or retrieval source of the value.
*/
private List<String> formulas = new LinkedList<>();

public String getName() {
Expand Down

0 comments on commit af4b6a0

Please sign in to comment.