org.camunda.bpm.cycle.web.service.resource
Class RoundtripService
java.lang.Object
org.camunda.bpm.cycle.web.service.AbstractRestService
org.camunda.bpm.cycle.web.service.resource.RoundtripService
public class RoundtripService
- extends AbstractRestService
This is the main roundtrip rest controller which exposes roundtrip
list,
get,
create andupdate methods as well as some utilities to the cycle client application.
The arrangement of methods is compatible with angular JS
$resource.
- Author:
- nico.rehwaldt
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RoundtripService
public RoundtripService()
list
public List<RoundtripDTO> list()
get
public RoundtripDTO get(long id)
update
@Transactional
public RoundtripDTO update(RoundtripDTO data)
create
public RoundtripDTO create(RoundtripDTO data)
delete
@Transactional
public void delete(long id)
getDetails
@Transactional
public RoundtripDTO getDetails(long id)
updateDetails
@Transactional
public RoundtripDTO updateDetails(RoundtripDTO data)
isNameAvailable
public boolean isNameAvailable(String name)
doSynchronize
@Transactional
public SynchronizationResultDTO doSynchronize(Roundtrip.SyncMode syncMode,
long roundtripId,
String message)
create
@Transactional
public RoundtripDTO create(long roundtripId,
String diagramLabel,
Roundtrip.SyncMode syncMode,
String modeler,
Long connectorId,
String parentFolderId,
String message)
Copyright © 2014 camunda services GmbH. All rights reserved.