package miun.player;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2-hudson-752-
* Generated source version: 2.2
*
*/
@WebService(name = "Controller", targetNamespace = "http://player.miun/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface Controller {
/**
*
* @param arg0
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "fetchVideo", targetNamespace = "http://player.miun/", className = "miun.player.FetchVideo")
@ResponseWrapper(localName = "fetchVideoResponse", targetNamespace = "http://player.miun/", className = "miun.player.FetchVideoResponse")
@Action(input = "http://player.miun/Controller/fetchVideoRequest", output = "http://player.miun/Controller/fetchVideoResponse")
public String fetchVideo(
@WebParam(name = "arg0", targetNamespace = "")
String arg0);
/**
*
* @param arg1
* @param arg0
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "setAuthenticationKey", targetNamespace = "http://player.miun/", className = "miun.player.SetAuthenticationKey")
@ResponseWrapper(localName = "setAuthenticationKeyResponse", targetNamespace = "http://player.miun/", className = "miun.player.SetAuthenticationKeyResponse")
@Action(input = "http://player.miun/Controller/setAuthenticationKeyRequest", output = "http://player.miun/Controller/setAuthenticationKeyResponse")
public String setAuthenticationKey(
@WebParam(name = "arg0", targetNamespace = "")
String arg0,
@WebParam(name = "arg1", targetNamespace = "")
String arg1);
/**
*
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "loginAndFetchPlaylists", targetNamespace = "http://player.miun/", className = "miun.player.LoginAndFetchPlaylists")
@ResponseWrapper(localName = "loginAndFetchPlaylistsResponse", targetNamespace = "http://player.miun/", className = "miun.player.LoginAndFetchPlaylistsResponse")
@Action(input = "http://player.miun/Controller/loginAndFetchPlaylistsRequest", output = "http://player.miun/Controller/loginAndFetchPlaylistsResponse")
public String loginAndFetchPlaylists();
/**
*
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "fetchUserPlaylist", targetNamespace = "http://player.miun/", className = "miun.player.FetchUserPlaylist")
@ResponseWrapper(localName = "fetchUserPlaylistResponse", targetNamespace = "http://player.miun/", className = "miun.player.FetchUserPlaylistResponse")
@Action(input = "http://player.miun/Controller/fetchUserPlaylistRequest", output = "http://player.miun/Controller/fetchUserPlaylistResponse")
public String fetchUserPlaylist();
}