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

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

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

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

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

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

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

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

From source file:com.mycompany.property.Services.Crud.AreaStatCrudImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public AreaStats find(String s) {
    return null;
}

From source file:com.mycompany.property.Services.Crud.FarmCrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public Farm find(String s) {
    return null;
}

From source file:com.mycompany.property.Services.Crud.BondCrudServiceImpl.java

@Transactional(propagation = Propagation.SUPPORTS)
public Bond find(String s) {
    return null;
}

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

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

From source file:cputgroup3a.immutability.service.crud.Impl.MusicImpl.java

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

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

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