2013-11-06 09:36:19 -08:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* Copyright © 2013 Deutsche Telekom, Inc. */
|
|
|
|
|
2014-08-20 02:35:18 -07:00
|
|
|
enum TNF {
|
|
|
|
"empty",
|
|
|
|
"well-known",
|
|
|
|
"media-type",
|
|
|
|
"absolute-uri",
|
|
|
|
"external",
|
|
|
|
"unknown",
|
|
|
|
"unchanged"
|
|
|
|
};
|
|
|
|
|
2014-08-17 23:56:12 -07:00
|
|
|
[Constructor(optional MozNDEFRecordOptions options)]
|
2014-01-28 16:20:17 -08:00
|
|
|
interface MozNDEFRecord
|
2013-11-06 09:36:19 -08:00
|
|
|
{
|
|
|
|
/**
|
2014-08-20 02:35:18 -07:00
|
|
|
* Type Name Field - Specifies the NDEF record type in general.
|
2013-11-06 09:36:19 -08:00
|
|
|
*/
|
2013-11-08 15:04:47 -08:00
|
|
|
[Constant]
|
2014-08-20 02:35:18 -07:00
|
|
|
readonly attribute TNF tnf;
|
2013-11-06 09:36:19 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* type - Describes the content of the payload. This can be a mime type.
|
|
|
|
*/
|
2013-11-08 15:04:47 -08:00
|
|
|
[Constant]
|
2014-02-19 23:08:46 -08:00
|
|
|
readonly attribute Uint8Array? type;
|
2013-11-06 09:36:19 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* id - Identifer is application dependent.
|
|
|
|
*/
|
2013-11-08 15:04:47 -08:00
|
|
|
[Constant]
|
2014-02-19 23:08:46 -08:00
|
|
|
readonly attribute Uint8Array? id;
|
2013-11-06 09:36:19 -08:00
|
|
|
|
|
|
|
/**
|
2013-11-08 15:04:47 -08:00
|
|
|
* payload - Binary data blob. The meaning of this field is application
|
|
|
|
* dependent.
|
2013-11-06 09:36:19 -08:00
|
|
|
*/
|
2013-11-08 15:04:47 -08:00
|
|
|
[Constant]
|
2014-02-19 23:08:46 -08:00
|
|
|
readonly attribute Uint8Array? payload;
|
2014-11-06 22:24:34 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the size of this NDEF Record.
|
|
|
|
*/
|
|
|
|
[Constant]
|
|
|
|
readonly attribute unsigned long size;
|
2013-11-06 09:36:19 -08:00
|
|
|
};
|
2014-08-17 23:56:12 -07:00
|
|
|
|
|
|
|
dictionary MozNDEFRecordOptions {
|
2014-08-20 02:35:18 -07:00
|
|
|
TNF tnf = "empty";
|
2014-08-17 23:56:12 -07:00
|
|
|
Uint8Array type;
|
|
|
|
Uint8Array id;
|
|
|
|
Uint8Array payload;
|
|
|
|
};
|