Files
i2p.i2p/router/java/src/org/cybergarage/upnp/xml/DeviceData.java
zzz 92daf4a8df Cyberlink for Java v3.0 + (2015-02-15) from github:
Unmodified cybergarage-upnp from github rev 9499b03 2015-02-05
https://github.com/cybergarage/cybergarage-upnp/commits/master
which is the same as rev 3ed1af9 2014-07-28 except for
the addition of README.md which we aren't using.
This is post-version 3.0.

Omitted files:
  router/java/src/org/cybergarage/xml/parser/XercesParser.java
  router/java/src/org/cybergarage/xml/parser/XmlPullParser.java
  router/java/src/org/cybergarage/xml/parser/kXML2Parser.java
chmod all files back to 644.

Diverging from 2.1 checkin rev 59eae97dbb470d8c4a1e4dba3a9763e134bb0c53
in prep for merging.

License unchanged.
Compile tested only.
2015-03-17 14:36:05 +00:00

272 lines
5.9 KiB
Java

/******************************************************************
*
* CyberUPnP for Java
*
* Copyright (C) Satoshi Konno 2002-2003
*
* File: DeviceData.java
*
* Revision;
*
* 03/28/03
* - first revision.
* 12/25/03
* - Added Advertiser functions.
*
******************************************************************/
package org.cybergarage.upnp.xml;
import java.io.*;
import java.net.InetAddress;
import org.cybergarage.util.*;
import org.cybergarage.http.*;
import org.cybergarage.upnp.*;
import org.cybergarage.upnp.ssdp.*;
import org.cybergarage.upnp.device.*;
public class DeviceData extends NodeData
{
public DeviceData()
{
}
////////////////////////////////////////////////
// description
////////////////////////////////////////////////
private String descriptionURI = null;
private File descriptionFile = null;
public File getDescriptionFile() {
return descriptionFile;
}
public String getDescriptionURI() {
return descriptionURI;
}
public void setDescriptionFile(File descriptionFile) {
this.descriptionFile = descriptionFile;
}
public void setDescriptionURI(String descriptionURI) {
this.descriptionURI = descriptionURI;
}
////////////////////////////////////////////////
// description
////////////////////////////////////////////////
private String location = "";
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
////////////////////////////////////////////////
// LeaseTime
////////////////////////////////////////////////
private int leaseTime = Device.DEFAULT_LEASE_TIME;
public int getLeaseTime()
{
return leaseTime;
}
public void setLeaseTime(int val)
{
leaseTime = val;
}
////////////////////////////////////////////////
// HTTPServer
////////////////////////////////////////////////
private HTTPServerList httpServerList = null;
public HTTPServerList getHTTPServerList() {
if(this.httpServerList==null){
this.httpServerList = new HTTPServerList(this.httpBinds,this.httpPort);
}
return this.httpServerList;
}
private InetAddress[] httpBinds = null;
public void setHTTPBindAddress(InetAddress[] inets){
this.httpBinds=inets;
}
public InetAddress[] getHTTPBindAddress(){
return this.httpBinds;
}
////////////////////////////////////////////////
// httpPort
////////////////////////////////////////////////
private int httpPort = Device.HTTP_DEFAULT_PORT;
public int getHTTPPort() {
return httpPort;
}
public void setHTTPPort(int port) {
httpPort = port;
}
////////////////////////////////////////////////
// controlActionListenerList
////////////////////////////////////////////////
private ListenerList controlActionListenerList = new ListenerList();
public ListenerList getControlActionListenerList() {
return controlActionListenerList;
}
/*
public void setControlActionListenerList(ListenerList controlActionListenerList) {
this.controlActionListenerList = controlActionListenerList;
}
*/
////////////////////////////////////////////////
// SSDPSearchSocket
////////////////////////////////////////////////
private SSDPSearchSocketList ssdpSearchSocketList = null;
private String ssdpMulticastIPv4 = SSDP.ADDRESS;
private String ssdpMulticastIPv6 = SSDP.getIPv6Address();
private int ssdpPort = SSDP.PORT;
private InetAddress[] ssdpBinds = null;
public SSDPSearchSocketList getSSDPSearchSocketList() {
if(this.ssdpSearchSocketList==null){
this.ssdpSearchSocketList = new SSDPSearchSocketList(this.ssdpBinds,ssdpPort,ssdpMulticastIPv4,ssdpMulticastIPv6);
}
return ssdpSearchSocketList;
}
/**
*
* @param port The port to use for binding the SSDP service.
* The port will be used as source port for all SSDP messages
* @since 1.8
*/
public void setSSDPPort(int port){
this.ssdpPort=port;
}
/**
*
* @return The port used for binding the SSDP service.
* The port will be used as source port for all SSDP messages
*/
public int getSSDPPort(){
return this.ssdpPort;
}
/**
*
* @param inets The <tt>InetAddress</tt> that will be binded for listing this service.
* Use <code>null</code> for the default behaviur.
* @see {@link UPnP}
* @see {@link USSDP}
* @see {@link HostInterface}
* @since 1.8
*/
public void setSSDPBindAddress(InetAddress[] inets){
this.ssdpBinds=inets;
}
/**
*
* @return inets The <tt>InetAddress</tt> that will be binded for this service
* <code>null</code> means that defulat behaviur will be used
* @since 1.8
*/
public InetAddress[] getSSDPBindAddress(){
return this.ssdpBinds;
}
/**
*
* @param ip The IPv4 address used as destination address for Multicast comunication
* @since 1.8
*/
public void setMulticastIPv4Address(String ip){
this.ssdpMulticastIPv4=ip;
}
/**
*
* @return The IPv4 address used for Multicast comunication
*/
public String getMulticastIPv4Address(){
return this.ssdpMulticastIPv4;
}
/**
*
* @param ip The IPv6 address used as destination address for Multicast comunication
* @since 1.8
*/
public void setMulticastIPv6Address(String ip){
this.ssdpMulticastIPv6=ip;
}
/**
*
* @return The IPv6 address used as destination address for Multicast comunication
* @since 1.8
*/
public String getMulticastIPv6Address(){
return this.ssdpMulticastIPv6;
}
////////////////////////////////////////////////
// SSDPPacket
////////////////////////////////////////////////
private SSDPPacket ssdpPacket = null;
public SSDPPacket getSSDPPacket() {
return ssdpPacket;
}
public void setSSDPPacket(SSDPPacket packet) {
ssdpPacket = packet;
}
////////////////////////////////////////////////
// Advertiser
////////////////////////////////////////////////
private Advertiser advertiser = null;
public void setAdvertiser(Advertiser adv)
{
advertiser = adv;
}
public Advertiser getAdvertiser()
{
return advertiser;
}
}