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.immutabledomain.phonestore.services.crud.Impl.NokiaCrudServiceImpl.java

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

From source file:com.banda.truckmanagementmodel.services.crud.Impl.DriverCrudServiceImpl.java

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

From source file:com.banda.truckmanagementmodel.services.crud.Impl.SenderCrudServiceImpl.java

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

From source file:com.pharmacy.pharmacyweb.services.crud.Impl.StaffMemberCrudServiceImpl.java

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

From source file:com.immutabledomain.phonestore.services.crud.Impl.iPhoneCrudServiceImpl.java

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

From source file:com.banda.truckmanagementmodel.services.crud.Impl.InvoiceCrudServiceImpl.java

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

From source file:com.immutabledomain.phonestore.services.crud.Impl.MemberCrudServiceImpl.java

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

From source file:com.pharmacy.pharmacyweb.services.crud.Impl.AppointmentCrudServiceImpl.java

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

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

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

From source file:com.banda.truckmanagementmodel.services.crud.Impl.AddressCrudServiceImpl.java

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