Blame view

src/main/java/fr/plil/sio/examen/services/AnimalServiceImpl.java 1.19 KB
589e1ad3   jcartign   First version
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
  package fr.plil.sio.examen.services;

  

  import fr.plil.sio.examen.api.Animal;

  import fr.plil.sio.examen.api.Owner;

  import fr.plil.sio.examen.repositories.AnimalRepository;

  import org.springframework.beans.factory.annotation.Autowired;

  import org.springframework.stereotype.Service;

  import org.springframework.transaction.annotation.Transactional;

  

  @Service

  public class AnimalServiceImpl implements AnimalService {

  

      @Autowired

      private AnimalRepository animalRepository;

  

      @Override

      @Transactional

      public Animal create(String name, Owner owner) {

          if(name == null) {

              throw new IllegalArgumentException("name must be not null");

          }

          if(owner == null) {

              throw new IllegalArgumentException("owner must be not null");

          }

          Animal animal = new Animal();

          animal.setName(name);

          animal.setOwner(owner);

          animalRepository.save(animal);

          return animal;

      }

  

  

      @Override

      @Transactional    

      public void delete(Animal animal) {

          throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.

      }

      

  }