2011-07-13 17:53:17 +00:00
|
|
|
/*******************************************************************************
|
2013-05-28 19:29:24 +00:00
|
|
|
* Copyright (c) 2013 Ziver
|
|
|
|
|
*
|
2011-07-13 17:53:17 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2013-05-28 19:29:24 +00:00
|
|
|
*
|
2011-07-13 17:53:17 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
2013-05-28 19:29:24 +00:00
|
|
|
*
|
2011-07-13 17:53:17 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
|
|
|
|
******************************************************************************/
|
2013-05-28 19:29:24 +00:00
|
|
|
|
2011-02-15 19:37:35 +00:00
|
|
|
package zutil.net.ssdp;
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This class contains information about a service from
|
|
|
|
|
* or through the SSDP protocol
|
|
|
|
|
*
|
|
|
|
|
* @author Ziver
|
|
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public interface SSDPServiceInfo {
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return The URL to the Service, e.g. "http://192.168.0.1:80/index.html"
|
|
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public String getLocation();
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the Search Target, e.g. "upnp:rootdevice"
|
|
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public String getSearchTarget();
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the expiration time for the values in this object
|
|
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public long getExpirationTime();
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the USN value, e.g. "uuid:abcdefgh-7dec-11d0-a765-00a0c91e6bf6 "
|
|
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public String getUSN();
|
2010-02-04 19:26:32 +00:00
|
|
|
|
|
|
|
|
/**
|
2010-04-15 20:52:34 +00:00
|
|
|
* @return only the USN UUID String
|
2010-02-04 19:26:32 +00:00
|
|
|
*/
|
2010-04-15 20:52:34 +00:00
|
|
|
public String getUUID();
|
2010-02-04 19:26:32 +00:00
|
|
|
}
|