changed folder name

This commit is contained in:
Ziver Koc 2011-02-15 19:40:02 +00:00
parent 4503531ec9
commit 80c6a52c69
73 changed files with 0 additions and 0 deletions

View file

@ -1,35 +0,0 @@
package zutil.net.ssdp;
/**
* This class contains information about a service from
* or through the SSDP protocol
*
* @author Ziver
*/
public interface SSDPServiceInfo {
/**
* @return The URL to the Service, e.g. "http://192.168.0.1:80/index.html"
*/
public String getLocation();
/**
* @return the Search Target, e.g. "upnp:rootdevice"
*/
public String getSearchTarget();
/**
* @return the expiration time for the values in this object
*/
public long getExpirationTime();
/**
* @return the USN value, e.g. "uuid:abcdefgh-7dec-11d0-a765-00a0c91e6bf6 "
*/
public String getUSN();
/**
* @return only the USN UUID String
*/
public String getUUID();
}