org.cybergarage.upnp.control.Control Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of upnp-stack Show documentation
Show all versions of upnp-stack Show documentation
A pure Java Open Source implementation of the UPnP stack for JDK 1.4 or above
The newest version!
/******************************************************************
*
* CyberUPnP for Java
*
* Copyright (C) Satoshi Konno 2002
*
* File: Control.java
*
* Revision;
*
* 01/20/03
* - first revision.
*
******************************************************************/
package org.cybergarage.upnp.control;
public class Control
{
public final static String NS = "u";
public final static String QUERY_SOAPACTION = "urn:schemas-upnp-org:control-1-0#QueryStateVariable";
public final static String XMLNS = "urn:schemas-upnp-org:control-1-0";
public final static String QUERY_STATE_VARIABLE = "QueryStateVariable";
public final static String QUERY_STATE_VARIABLE_RESPONSE = "QueryStateVariableResponse";
public final static String VAR_NAME = "varName";
public final static String RETURN = "return";
}