-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
42 lines (35 loc) · 2.22 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# README.txt
#
# Copyright (c) 2019 Rafael Corchuelo.
#
# In keeping with the traditional purpose of furthering education and research, it is
# the policy of the copyright owner to permit non-commercial use and redistribution of
# this software. It has been tested carefully, but it is not guaranteed for any particular
# purposes. The copyright owner does not offer any warranties or representations, nor do
# they accept any liabilities with respect to them.
This is the Acme-FleaMarket project, which is intended to be a core learning asset for the students
who have enroled the Design and Testing subject of the Software Engineering curriculum of the
University of Sevilla. This project provides a template our students can use to get their projects
up and running very quickly.
## v1.0.0
**Entities**
-Advertisement: for this entity, we acknowledged to treat the display period with two Date datatypes inicialDate meaning the
beginning of the period and finalDate meaning the end of the period.
## v3.0.0
**Entities**
-Figment: The price range property has been modified by two attributes of type Money.
## v5.0.0
**Entities**
-Buyer: The @Column(unique = true) annotation in the email column has been deleted because it is not requested in the requirements.
-Buyer: The @Column(unique = true) annotation in the phone column has been deleted because it is not requested in the requirements.
-Item: The @NotBlank annotation in the email ticker has been deleted because it is an autogenerated attribute.
**Framework**
-AbstractDeleteService: A default method has been added in the abstract interface because we have encountered a problem
when validating a form with the readonly condition equal to true. It returned the error but not the values of the model when
readonly, so we have set the entity values to the model.
-Launcher: We have added the initialization of our SpamUtil bean when launching the application to have the words spam at
the beginning of the application
## v6.0.0
**Entities**
-Banner: By not specifying anything in the requirements about who can handle this entity, 5 values for this entity have been added
in the sample-data.xml, but they cannot be created, modified or deleted by any role