All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.cinovo.cloudconductor.api.interfaces.IWebSocketConfig Maven / Gradle / Ivy

package de.cinovo.cloudconductor.api.interfaces;

import de.cinovo.cloudconductor.api.MediaType;
import de.cinovo.cloudconductor.api.model.WebSocketConfig;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;

/**
 * 
 * Copyright 2017 Cinovo AG
*
* * @author mweise * */ @Path("/wsconfig") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) public interface IWebSocketConfig { /** * @return configuration for WebSockets */ @GET WebSocketConfig getConfig(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy