Search in sources :

Example 1 with StartStopNotification

use of org.eclipse.che.plugin.maven.shared.dto.StartStopNotification in project che by eclipse.

the class MavenServerNotifier method sendStartStop.

private void sendStartStop(boolean isStart) {
    StartStopNotification dto = DtoFactory.newDto(StartStopNotification.class);
    dto.setStart(isStart);
    communication.send(DtoFactory.getInstance().toJsonElement(dto).getAsJsonObject(), MessageType.START_STOP);
}
Also used : StartStopNotification(org.eclipse.che.plugin.maven.shared.dto.StartStopNotification)

Aggregations

StartStopNotification (org.eclipse.che.plugin.maven.shared.dto.StartStopNotification)1