<workflowRun _class='org.jenkinsci.plugins.workflow.job.WorkflowRun'><action _class='hudson.model.CauseAction'><cause _class='hudson.model.Cause$UserIdCause'><shortDescription>Started by user Jose Bocanegra</shortDescription><userId>admin</userId><userName>Jose Bocanegra</userName></cause></action><action _class='jenkins.metrics.impl.TimeInQueueAction'><blockedDurationMillis>0</blockedDurationMillis><blockedTimeMillis>0</blockedTimeMillis><buildableDurationMillis>0</buildableDurationMillis><buildableTimeMillis>19</buildableTimeMillis><buildingDurationMillis>164171</buildingDurationMillis><executingTimeMillis>161865</executingTimeMillis><executorUtilization>0.99</executorUtilization><subTaskCount>1</subTaskCount><waitingDurationMillis>0</waitingDurationMillis><waitingTimeMillis>2</waitingTimeMillis></action><action _class='org.jenkinsci.plugins.workflow.libs.LibrariesAction'></action><action></action><action></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><refsremotesoriginmain _class='hudson.plugins.git.util.Build'><buildNumber>12</buildNumber><marked><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><branch><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><name>refs/remotes/origin/main</name></branch></marked><revision><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><branch><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><name>refs/remotes/origin/main</name></branch></revision></refsremotesoriginmain></buildsByBranchName><lastBuiltRevision><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><branch><SHA1>8889dd518e7bc74b24843322fd845872f75ea31e</SHA1><name>refs/remotes/origin/main</name></branch></lastBuiltRevision><remoteUrl>https://github.com/UDFJDC-ModelosProgramacion/MP_202610_G81_E2_Back</remoteUrl><scmName></scmName></action><action></action><action></action><action _class='org.jenkinsci.plugins.workflow.cps.EnvActionImpl'></action><action></action><action></action><action></action><action></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><action _class='org.jenkinsci.plugins.pipeline.modeldefinition.actions.RestartDeclarativePipelineAction'></action><action></action><action _class='org.jenkinsci.plugins.workflow.job.views.FlowGraphAction'></action><action></action><action></action><building>false</building><displayName>#12</displayName><duration>164171</duration><estimatedDuration>100980</estimatedDuration><fullDisplayName>MP_202610_G81_E2_Back #12</fullDisplayName><id>12</id><keepLog>false</keepLog><number>12</number><queueId>2</queueId><result>SUCCESS</result><timestamp>1774013484625</timestamp><url>http://200.69.103.29:8085/jenkins/view/all/job/MP_202610_G81_E2_Back/12/</url><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/VaccineEntryEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalEventEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntity.java</affectedPath><commitId>f6a0a3c35085471e636db3a6630530da16d5dbfe</commitId><timestamp>1772633374000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/juddiazp</absoluteUrl><fullName>juddiazp</fullName></author><authorEmail>juddiazp@udistrital.edu.co</authorEmail><comment>Add medical-related entities including Pet
</comment><date>2026-03-04 09:09:34 -0500</date><id>f6a0a3c35085471e636db3a6630530da16d5dbfe</id><msg>Add medical-related entities including Pet</msg><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/VaccineEntryEntity.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntity.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalEventEntity.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</affectedPath><commitId>282cd89bea76e80333680b1aa1020a4621f46576</commitId><timestamp>1772768532000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/kjcabezash</absoluteUrl><fullName>kjcabezash</fullName></author><authorEmail>kjcabezash@udistrital.edu.co</authorEmail><comment>add adoption entities: AdoptionRequest, AdoptionProcess and TrialCohabitation

This pull request adds the initial implementation of the adoption-related entities.

The following entities were created:

- AdoptionRequestEntity: Represents a request made by an adopter to adopt a pet.
  It includes the request date, approval status, and relationships with Adopter, Pet, and TrialCohabitation.

- AdoptionProcess: Abstract base class for adoption processes.
  It contains common attributes such as creationDate and status.

- TrialCohabitation: Represents the trial period where the adopter lives with the pet before the final adoption decision.
  It includes start and end dates, periodic notes, success status, and relationships with AdoptionRequest and Adoption.

These entities extend BaseEntity and include the corresponding JPA relationships.
</comment><date>2026-03-05 22:42:12 -0500</date><id>282cd89bea76e80333680b1aa1020a4621f46576</id><msg>add adoption entities: AdoptionRequest, AdoptionProcess and TrialCohabitation</msg><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><commitId>bb484f4c95e136a2de8cf82e30cdebe0c25fcc8f</commitId><timestamp>1772840158000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>New changes
</comment><date>2026-03-06 18:35:58 -0500</date><id>bb484f4c95e136a2de8cf82e30cdebe0c25fcc8f</id><msg>New changes</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</affectedPath><commitId>7c03e3f6cfa78eac2d41ef55aef2b8a3b31fa955</commitId><timestamp>1772841783000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>Final changes.
</comment><date>2026-03-06 19:03:03 -0500</date><id>7c03e3f6cfa78eac2d41ef55aef2b8a3b31fa955</id><msg>Final changes.</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/ReturnCaseEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdopterEntity.java</affectedPath><commitId>fbc35dec4ee2010cedb0c880a7fc23a12f354643</commitId><timestamp>1772846175000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>Final changes
</comment><date>2026-03-06 20:16:15 -0500</date><id>fbc35dec4ee2010cedb0c880a7fc23a12f354643</id><msg>Final changes</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/ReturnCaseEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdopterEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</affectedPath><commitId>ad4e3f78e0c2ecc28237ef6da693e74302f9abb8</commitId><timestamp>1772848787000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>fix: remove ghost .Java files
</comment><date>2026-03-06 20:59:47 -0500</date><id>ad4e3f78e0c2ecc28237ef6da693e74302f9abb8</id><msg>fix: remove ghost .Java files</msg><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/ShelterMediaRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/ShelterRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/ShelterEntity.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/VeterinarianRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/VetSpecialityRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalEventEntity.java</affectedPath><commitId>fabb668adbb956262e65b81986172cc0a513f329</commitId><timestamp>1773195499000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>implementation of logic and tests for Shelter, Veterinarian, Speciality and ShelterMedia, and also other important implementations that complement this new feature
</comment><date>2026-03-10 21:18:19 -0500</date><id>fabb668adbb956262e65b81986172cc0a513f329</id><msg>implementation of logic and tests for Shelter, Veterinarian, Speciality and ShelterMedia, and also other important implementations that complement this new feature</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/VetSpecialityRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntity.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/VeterinarianRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/ShelterEntity.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/MedicalEventEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/ShelterRepository.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/ShelterMediaRepository.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ReturnCaseService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/ReturnCaseEntity.java</affectedPath><commitId>d068f3de5846be904566a8276860ea391052ea42</commitId><timestamp>1773240290000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>uplouding Review, Returncase and adoption services
</comment><date>2026-03-11 09:44:50 -0500</date><id>d068f3de5846be904566a8276860ea391052ea42</id><msg>uplouding Review, Returncase and adoption services</msg><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ReturnCaseService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/ReturnCaseEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/ReviewEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/AdopterEntityTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/AdopterEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/ShelterMediaEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/TrialCohabitationEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</affectedPath><affectedPath>pom.xml</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/AdoptionRequestEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/MessageEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/MessageEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/VeterinarianEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/PetEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/ReviewEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/AdoptionEntityTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/NotificationEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/AdoptionEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/PetEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/ShelterEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/MedicalHistoryEntityTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/NotificationEntityTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterMediaEntityTest.java</affectedPath><commitId>c17bca93e95c13e156cd0705c0bdbf5927b5eadf</commitId><timestamp>1773346471000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>A little changes og organization of the files and folders
</comment><date>2026-03-12 15:14:31 -0500</date><id>c17bca93e95c13e156cd0705c0bdbf5927b5eadf</id><msg>A little changes og organization of the files and folders</msg><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/AdopterEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/ShelterMediaEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/ReviewEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/ReviewEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/MedicalHistoryEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/NotificationEntityTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</file></path><path><editType>edit</editType><file>pom.xml</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/ShelterEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/NotificationEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/VeterinarianEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/AdopterEntityTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterEntityTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/AdoptionEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/PetEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/AdoptionEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/TrialCohabitationEntityTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/AdoptionRequestEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/PetEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/MessageEntityTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntityTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterMediaEntityTest.java</file></path><path><editType>delete</editType><file>src/test/java/co/edu/udistrital/mdp/pets/MessageEntityTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/MedicalHistoryEntityTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</affectedPath><commitId>0e7a17ac76564809b01bad8b8193ff2dc3c7a201</commitId><timestamp>1773348486000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>reviewing the last commits and  adding some tests to services classes
</comment><date>2026-03-12 15:48:06 -0500</date><id>0e7a17ac76564809b01bad8b8193ff2dc3c7a201</id><msg>reviewing the last commits and  adding some tests to services classes</msg><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</affectedPath><commitId>db8ae36fa6333187fa66e5c34afe2054a6dfc4b7</commitId><timestamp>1773348696000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>Fix missing imports in VeterinarianServiceTest
</comment><date>2026-03-12 15:51:36 -0500</date><id>db8ae36fa6333187fa66e5c34afe2054a6dfc4b7</id><msg>Fix missing imports in VeterinarianServiceTest</msg><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ReturnCaseService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</affectedPath><commitId>d59a0a837a891fcf584e62858259fef4693628c9</commitId><timestamp>1773353521000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>standarization of tests
</comment><date>2026-03-12 17:12:01 -0500</date><id>d59a0a837a891fcf584e62858259fef4693628c9</id><msg>standarization of tests</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterMediaService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/VeterinarianService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/SpecialityServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VeterinarianServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ReviewService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterMediaServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ReturnCaseService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/ReviewEntity.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</affectedPath><commitId>536fe991c7969a6a7d7218934259426111aedb94</commitId><timestamp>1773370381000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></author><authorEmail>alex.drkfce@gmail.com</authorEmail><comment>Implements de services and test of Adoption/Review/ReturnCase
</comment><date>2026-03-12 21:53:01 -0500</date><id>536fe991c7969a6a7d7218934259426111aedb94</id><msg>Implements de services and test of Adoption/Review/ReturnCase</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReviewServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/ReviewEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/PetEntityTest.java</affectedPath><commitId>e3d98b2e379a00477bdd9d5e69553563126f1818</commitId><timestamp>1773372708000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>Fix: change primitive boolean to wrapper Boolean in PetEntity
</comment><date>2026-03-12 22:31:48 -0500</date><id>e3d98b2e379a00477bdd9d5e69553563126f1818</id><msg>Fix: change primitive boolean to wrapper Boolean in PetEntity</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/PetEntityTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</affectedPath><commitId>8d3a3eb5393bef0bca00f6561cd06ee5701bccca</commitId><timestamp>1773374060000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fix: remove duplicate .Java files, keep correct lowercase .java versions
</comment><date>2026-03-12 22:54:20 -0500</date><id>8d3a3eb5393bef0bca00f6561cd06ee5701bccca</id><msg>fix: remove duplicate .Java files, keep correct lowercase .java versions</msg><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</affectedPath><commitId>811283268cf810b988987abfa003c6d49510ccfb</commitId><timestamp>1773382789000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/adbonillam</absoluteUrl><fullName>adbonillam</fullName></author><authorEmail>adbonillam@udistrital.edu.co</authorEmail><comment>feat: implementar logica y pruebas de user, message y notification
</comment><date>2026-03-13 01:19:49 -0500</date><id>811283268cf810b988987abfa003c6d49510ccfb</id><msg>feat: implementar logica y pruebas de user, message y notification</msg><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdopterRepository.java</affectedPath><commitId>c0472cb81ee87204a54ab78e8194c977e3813452</commitId><timestamp>1773411264000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fix: alinear servicios y pruebas de Anderson con el modelo actual (email, phoneNumber, isRead)
</comment><date>2026-03-13 09:14:24 -0500</date><id>c0472cb81ee87204a54ab78e8194c977e3813452</id><msg>fix: alinear servicios y pruebas de Anderson con el modelo actual (email, phoneNumber, isRead)</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdopterRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdoptionProcessRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessService.java</affectedPath><commitId>c488d7eb24c76d2afa5dfe714b1f7ba35a124e6c</commitId><timestamp>1773412598000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/kjcabezash</absoluteUrl><fullName>kjcabezash</fullName></author><authorEmail>kjcabezash@udistrital.edu.co</authorEmail><comment>implement business logic for adoption process, adoption request and trial cohabitation

- Implemented service layer for AdoptionRequest, AdoptionProcess and TrialCohabitation
- Added CRUD operations (create, search, update, delete) in each service
- Added business validations such as:
  - Adoption request must have an adopter and a pet
  - Trial cohabitation must have a start date
  - Adoption process must belong to an adoption request
- Fixed entity relationships between AdoptionRequest, AdoptionProcess and TrialCohabitation
- Updated entities to include missing attributes such as pet and notes
- Added corresponding repositories to interact with the database
- Improved logging using Slf4j
</comment><date>2026-03-13 09:36:38 -0500</date><id>c488d7eb24c76d2afa5dfe714b1f7ba35a124e6c</id><msg>implement business logic for adoption process, adoption request and trial cohabitation</msg><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdoptionProcessRepository.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</affectedPath><commitId>5ef5d89e4b4905e554672309bfd2bea407593a60</commitId><timestamp>1773413338000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/kjcabezash</absoluteUrl><fullName>kjcabezash</fullName></author><authorEmail>kjcabezash@udistrital.edu.co</authorEmail><comment>Cambios de conflicto

no me servia mi github
</comment><date>2026-03-13 09:48:58 -0500</date><id>5ef5d89e4b4905e554672309bfd2bea407593a60</id><msg>Cambios de conflicto</msg><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</affectedPath><commitId>d30e9cafe8366db7a10166b52b862eaeb765a726</commitId><timestamp>1773413450000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/kjcabezash</absoluteUrl><fullName>kjcabezash</fullName></author><authorEmail>kjcabezash@udistrital.edu.co</authorEmail><comment>Añadi las entidades

Estas entidades las modifique
</comment><date>2026-03-13 09:50:50 -0500</date><id>d30e9cafe8366db7a10166b52b862eaeb765a726</id><msg>Añadi las entidades</msg><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionProcessEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/TrialCohabitationEntity.Java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdoptionRequestEntity.Java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</affectedPath><commitId>1c3cec0424eebb7990ccfbad1d847fcfe420201c</commitId><timestamp>1773414203000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fixing some connections, adding log.info to some Service classes as tutorial explained
</comment><date>2026-03-13 10:03:23 -0500</date><id>1c3cec0424eebb7990ccfbad1d847fcfe420201c</id><msg>fixing some connections, adding log.info to some Service classes as tutorial explained</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</affectedPath><commitId>cb50d7c2c0526173671635b57c30f5cd60cd2f93</commitId><timestamp>1773416359000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>chore: clean null-safety and test warnings in services
</comment><date>2026-03-13 10:39:19 -0500</date><id>cb50d7c2c0526173671635b57c30f5cd60cd2f93</id><msg>chore: clean null-safety and test warnings in services</msg><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/NotificationService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>pom.xml</affectedPath><commitId>c738f896fda766eb1abbb89b19d54e1d69284e84</commitId><timestamp>1773417737000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fix(maven): remove spring-boot start/stop executions from default lifecycle, avoiding errors in non-unit tests
</comment><date>2026-03-13 11:02:17 -0500</date><id>c738f896fda766eb1abbb89b19d54e1d69284e84</id><msg>fix(maven): remove spring-boot start/stop executions from default lifecycle, avoiding errors in non-unit tests</msg><path><editType>edit</editType><file>pom.xml</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</affectedPath><commitId>7633277007187a7c4fe017d9e8a8dcd56df4c03e</commitId><timestamp>1773418952000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fixing a detail of a non used imported class
</comment><date>2026-03-13 11:22:32 -0500</date><id>7633277007187a7c4fe017d9e8a8dcd56df4c03e</id><msg>fixing a detail of a non used imported class</msg><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ReturnCaseServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/PetEntityTest.java</affectedPath><commitId>ec5b6a37c895df25663f3f3de2301c6d7b5e1d0f</commitId><timestamp>1773540230000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/juddiazp</absoluteUrl><fullName>juddiazp</fullName></author><authorEmail>juddiazp@udistrital.edu.co</authorEmail><comment>Add: inicio de la logica de negocio de las mascotas y elementos medicos relacionados
</comment><date>2026-03-14 21:03:50 -0500</date><id>ec5b6a37c895df25663f3f3de2301c6d7b5e1d0f</id><msg>Add: inicio de la logica de negocio de las mascotas y elementos medicos relacionados</msg><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/PetEntityTest.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/PetEntity.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/MedicalEventRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalEventService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/MedicalHistoryRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/VaccineEntryRepository.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/VaccineEntryService.java</affectedPath><commitId>d7941e8f3ae3ff3f72e5ccf4b8f2e803e6382f8a</commitId><timestamp>1773542910000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/juddiazp</absoluteUrl><fullName>juddiazp</fullName></author><authorEmail>juddiazp@udistrital.edu.co</authorEmail><comment>Add: finalizacion del desarrollo de microservicios relacionados a pet y la logica de medicalServices
</comment><date>2026-03-14 21:48:30 -0500</date><id>d7941e8f3ae3ff3f72e5ccf4b8f2e803e6382f8a</id><msg>Add: finalizacion del desarrollo de microservicios relacionados a pet y la logica de medicalServices</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/MedicalEventRepository.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalEventService.java</file></path><path><editType>add</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/VaccineEntryService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/VaccineEntryRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/MedicalHistoryRepository.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/MessageEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/PetServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdopterRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/UserEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/AdopterEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/MessageRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/MedicalEventServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntity.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/exceptions/IllegalOperationException.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/VaccineEntryServiceTest.java</affectedPath><commitId>1759db2f4b9ab2cad4715d9efc34c4979043af5c</commitId><timestamp>1773604764000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fix: implementation of the last commit and posterior integration problems with mandatory validations, solution of critical test errors, unification of tests and some other exceptions
</comment><date>2026-03-15 14:59:24 -0500</date><id>1759db2f4b9ab2cad4715d9efc34c4979043af5c</id><msg>fix: implementation of the last commit and posterior integration problems with mandatory validations, solution of critical test errors, unification of tests and some other exceptions</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/VeterinarianEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/AdopterRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/MessageRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/PetService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/UserRepository.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/repositories/PetRepository.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MessageService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/exceptions/IllegalOperationException.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MedicalEventServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/PetServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MedicalHistoryServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/VaccineEntryServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/MessageServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdopterService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/UserEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/UserService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/AdopterEntity.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/entities/MessageEntity.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestServiceTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/exceptions/LowerCaseClassNameResolverTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/PetServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/exceptions/ApiErrorTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/MainApplicationTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationServiceTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessService.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterEntityTest.java</affectedPath><affectedPath>src/main/java/co/edu/udistrital/mdp/pets/podam/DateStrategy.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/exceptions/RestExceptionHandlerTest.java</affectedPath><affectedPath>src/test/java/co/edu/udistrital/mdp/pets/controllers/DefaultControllerTest.java</affectedPath><commitId>2c3507ceabf55d511a03739c7d4a25e0f2c00608</commitId><timestamp>1773610918000</timestamp><author><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></author><authorEmail>slmorenog@udistrital.edu.co</authorEmail><comment>fix: bug in Timestamp and problems with cross validations omitted in Service Test, removing not used classes
</comment><date>2026-03-15 16:41:58 -0500</date><id>2c3507ceabf55d511a03739c7d4a25e0f2c00608</id><msg>fix: bug in Timestamp and problems with cross validations omitted in Service Test, removing not used classes</msg><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/ShelterServiceTest.java</file></path><path><editType>delete</editType><file>src/main/java/co/edu/udistrital/mdp/pets/podam/DateStrategy.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/entities/ShelterEntityTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdopterServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestServiceTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/MainApplicationTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/TrialCohabitationService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/ShelterService.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/SpecialityService.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/exceptions/ApiErrorTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/UserServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/exceptions/RestExceptionHandlerTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/exceptions/LowerCaseClassNameResolverTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/PetServiceTest.java</file></path><path><editType>add</editType><file>src/test/java/co/edu/udistrital/mdp/pets/controllers/DefaultControllerTest.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/NotificationServiceTest.java</file></path><path><editType>edit</editType><file>src/main/java/co/edu/udistrital/mdp/pets/services/AdoptionRequestService.java</file></path><path><editType>edit</editType><file>src/test/java/co/edu/udistrital/mdp/pets/services/AdoptionProcessServiceTest.java</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>http://200.69.103.29:8085/jenkins/user/slmorenog</absoluteUrl><fullName>slmorenog</fullName></culprit><culprit><absoluteUrl>http://200.69.103.29:8085/jenkins/user/adbonillam</absoluteUrl><fullName>adbonillam</fullName></culprit><culprit><absoluteUrl>http://200.69.103.29:8085/jenkins/user/alex.drkfce</absoluteUrl><fullName>alex.drkfce</fullName></culprit><culprit><absoluteUrl>http://200.69.103.29:8085/jenkins/user/juddiazp</absoluteUrl><fullName>juddiazp</fullName></culprit><culprit><absoluteUrl>http://200.69.103.29:8085/jenkins/user/kjcabezash</absoluteUrl><fullName>kjcabezash</fullName></culprit><inProgress>false</inProgress><nextBuild><number>13</number><url>http://200.69.103.29:8085/jenkins/view/all/job/MP_202610_G81_E2_Back/13/</url></nextBuild><previousBuild><number>11</number><url>http://200.69.103.29:8085/jenkins/view/all/job/MP_202610_G81_E2_Back/11/</url></previousBuild></workflowRun>