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.crudEggImpl.java

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@Transactional(propagation = Propagation.SUPPORTS)
public carFORD find(String name) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    return null;//from w  w  w.j a v  a2s  . c om
}

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

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