uk.co.caprica.vlcj.mrl
Class FtpMrl

java.lang.Object
  extended by uk.co.caprica.vlcj.mrl.WebMrl
      extended by uk.co.caprica.vlcj.mrl.FtpMrl
All Implemented Interfaces:
Mrl

public class FtpMrl
extends WebMrl

Implementation of an HTTP media resource locator.

This class provides a fluent API for initialising the MRL, e.g.

 String mrl = new FtpMrl().host("www.myhost.com")
                          .port("21")
                          .path("/media/example.mp4")
                          .value();
 
This will generate "ftp://www.myhost.com:21/media/example.mp4".


Constructor Summary
FtpMrl()
           
 
Method Summary
 
Methods inherited from class uk.co.caprica.vlcj.mrl.WebMrl
host, path, port, type, value
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FtpMrl

public FtpMrl()

(C)2010 Caprica Software Limited