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:com.mycompany.Services.implementation.PayRollCrudImpl.java

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@Override
@Transactional(propagation = Propagation.SUPPORTS)
public com.mycompany.property.model.Building find(String id) {
    return null;
}

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

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