Example usage for org.springframework.transaction.annotation Propagation SUPPORTS

List of usage examples for org.springframework.transaction.annotation Propagation SUPPORTS

Introduction

In this page you can find the example usage for org.springframework.transaction.annotation Propagation SUPPORTS.

Prototype

Propagation SUPPORTS

To view the source code for org.springframework.transaction.annotation Propagation SUPPORTS.

Click Source Link

Document

Support a current transaction, execute non-transactionally if none exists.

Usage

From source file:service.crud.Impl.crudNurseDetailsImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public nurseDetails find(String id) {
    return null;
}

From source file:service.crud.Impl.crudStartPokemonImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public startPokemon find(String id) {
    return null;
}

From source file:com.mycompany.secondAttemptCrud.CarMAZDACrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public carMAZDA find(String name) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    return null;// w ww.jav  a2 s . c  om
}

From source file:com.mycompany.secondAttemptCrud.CustomerCrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public Customer find(String name) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    return null;// w  ww  .  j a va  2 s  .c  o m
}

From source file:com.mycompany.secondAttemptCrud.CarTOYOTACrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public carTOYOTA find(String name) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    return null;//w w  w  .ja  va 2 s  .  c o  m
}

From source file:com.mycompany.Services.implementation.EquipmentCrudImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public Object find(Object id) {
    return null;
}

From source file:service.crud.Impl.crudFinalEvolutionImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public finalEvolution find(String id) {
    return null;
}

From source file:service.crud.Impl.crudMachineDetailsImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public machineDetails find(String id) {
    return null;
}

From source file:service.crud.Impl.crudTrainerDetailsImpl.java

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public trainerDetails find(String id) {
    return null;
}

From source file:com.mycompany.secondAttemptCrud.CarMERCEDEZCrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public carMERCEDEZ find(String name) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    return null;// w  w  w.  ja va  2  s .c  o m
}