forked from I2P_Developers/i2p.i2p
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.
31 lines
582 B
Java
31 lines
582 B
Java
/******************************************************************
|
|
*
|
|
* CyberUPnP for Java
|
|
*
|
|
* Copyright (C) Satoshi Konno 2002
|
|
*
|
|
* File: NT.java
|
|
*
|
|
* Revision;
|
|
*
|
|
* 12/09/02
|
|
* - first revision.
|
|
*
|
|
******************************************************************/
|
|
|
|
package org.cybergarage.upnp.device;
|
|
|
|
public class NT
|
|
{
|
|
public final static String ROOTDEVICE = "upnp:rootdevice";
|
|
public final static String EVENT = "upnp:event";
|
|
|
|
public final static boolean isRootDevice(String ntValue)
|
|
{
|
|
if (ntValue == null)
|
|
return false;
|
|
return ntValue.startsWith(ROOTDEVICE);
|
|
}
|
|
}
|
|
|