All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tinymediamanager.jsonrpc.api.model.ApplicationModel Maven / Gradle / Ivy

Go to download

This library is the result of freezy's Kodi JSON introspection, merged with dereulenspiegel's adoption without android, and patched to Kodi 16 Jarvis.

The newest version!
/*
 *      Copyright (C) 2005-2013 Team XBMC
 *      http://xbmc.org
 *
 *  This Program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This Program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with XBMC Remote; see the file license.  If not, write to
 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *  http://www.gnu.org/copyleft/gpl.html
 *
 */
package org.tinymediamanager.jsonrpc.api.model;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.codehaus.jackson.JsonNode;
import org.codehaus.jackson.node.ArrayNode;
import org.codehaus.jackson.node.IntNode;
import org.codehaus.jackson.node.ObjectNode;
import org.codehaus.jackson.node.TextNode;
import org.tinymediamanager.jsonrpc.api.AbstractModel;

public final class ApplicationModel {

  /**
   * API Name: Application.Property.Value
   * 

* Note: This class is used as result only.
* This class was generated automatically from XBMC's JSON-RPC introspect. */ public static class PropertyValue extends AbstractModel { public final static String API_TYPE = "Application.Property.Value"; // field names public static final String MUTED = "muted"; public static final String NAME = "name"; public static final String VERSION = "version"; public static final String VOLUME = "volume"; // class members public final Boolean muted; public final String name; public final Version version; public final Integer volume; /** * @param muted * @param name * @param version * @param volume */ public PropertyValue(Boolean muted, String name, Version version, Integer volume) { this.muted = muted; this.name = name; this.version = version; this.volume = volume; } /** * Construct from JSON object. * * @param node * JSON object representing a PropertyValue object */ public PropertyValue(JsonNode node) { muted = parseBoolean(node, MUTED); name = parseString(node, NAME); version = node.has(VERSION) ? new Version(node.get(VERSION)) : null; volume = parseInt(node, VOLUME); } @Override public JsonNode toJsonNode() { final ObjectNode node = OM.createObjectNode(); node.put(MUTED, muted); node.put(NAME, name); node.put(VERSION, version == null ? null : version.toJsonNode()); node.put(VOLUME, volume); return node; } /** * Extracts a list of {@link PropertyValue} objects from a JSON array. * * @param node * ObjectNode containing the list of objects. * @param key * Key pointing to the node where the list is stored. */ static List getApplicationModelPropertyValueList(JsonNode node, String key) { if (node.has(key)) { final ArrayNode a = (ArrayNode) node.get(key); final List l = new ArrayList(a.size()); for (int i = 0; i < a.size(); i++) { l.add(new PropertyValue((JsonNode) a.get(i))); } return l; } return new ArrayList(0); } /** * Note: This class is used as result only.
* This class was generated automatically from XBMC's JSON-RPC introspect. */ public static class Version extends AbstractModel { // field names public static final String MAJOR = "major"; public static final String MINOR = "minor"; public static final String REVISION = "revision"; public static final String TAG = "tag"; public static final String TAGVERSION = "tagversion"; // class members public final Integer major; public final Integer minor; public final Revision revision; public final String tag; public final String tagversion; /** * @param major * @param minor * @param revision * @param tag * One of: prealpha, alpha, beta, releasecandidate, stable. See constants at * {@link ApplicationModel.Version.Tag}. * @param tagversion */ public Version(Integer major, Integer minor, Revision revision, String tag, String tagversion) { this.major = major; this.minor = minor; this.revision = revision; this.tag = tag; this.tagversion = tagversion; } /** * Construct from JSON object. * * @param node * JSON object representing a Version object */ public Version(JsonNode node) { major = node.get(MAJOR).getIntValue(); // required value minor = node.get(MINOR).getIntValue(); // required value revision = node.has(REVISION) ? new Revision(node.get(REVISION)) : null; tag = parseString(node, TAG); tagversion = parseString(node, TAGVERSION); } @Override public JsonNode toJsonNode() { final ObjectNode node = OM.createObjectNode(); node.put(MAJOR, major); node.put(MINOR, minor); node.put(REVISION, revision == null ? null : revision.toJsonNode()); node.put(TAG, tag); // enum node.put(TAGVERSION, tagversion); return node; } /** * Extracts a list of {@link Version} objects from a JSON array. * * @param node * ObjectNode containing the list of objects. * @param key * Key pointing to the node where the list is stored. */ static List getApplicationModelVersionList(JsonNode node, String key) { if (node.has(key)) { final ArrayNode a = (ArrayNode) node.get(key); final List l = new ArrayList(a.size()); for (int i = 0; i < a.size(); i++) { l.add(new Version((JsonNode) a.get(i))); } return l; } return new ArrayList(0); } /** * Note: This class is used as result only.
* This class was generated automatically from XBMC's JSON-RPC introspect. */ public static class Revision extends AbstractModel { // class members public final Integer integerArg; public final String stringArg; /** * @param integerArg */ public Revision(Integer integerArg) { this.integerArg = integerArg; this.stringArg = null; } /** * @param stringArg */ public Revision(String stringArg) { this.stringArg = stringArg; this.integerArg = null; } /** * Construct from JSON object. * * @param node * JSON object representing a Revision object */ public Revision(JsonNode node) { if (node.isInt()) { integerArg = node.getIntValue(); stringArg = null; } else if (node.isTextual()) { stringArg = node.getTextValue(); integerArg = null; } else { throw new RuntimeException("Weird type for \"revision\", I'm confused!"); } } @Override public JsonNode toJsonNode() { if (integerArg != null) { return new IntNode(integerArg); } if (stringArg != null) { return new TextNode(stringArg); } return null; // this is completely excluded. theoretically. } /** * Extracts a list of {@link Revision} objects from a JSON array. * * @param node * ObjectNode containing the list of objects. * @param key * Key pointing to the node where the list is stored. */ static List getApplicationModelRevisionList(JsonNode node, String key) { if (node.has(key)) { final ArrayNode a = (ArrayNode) node.get(key); final List l = new ArrayList(a.size()); for (int i = 0; i < a.size(); i++) { l.add(new Revision((JsonNode) a.get(i))); } return l; } return new ArrayList(0); } } /** * API Name: tag */ public interface Tag { public final String PREALPHA = "prealpha"; public final String ALPHA = "alpha"; public final String BETA = "beta"; public final String RELEASECANDIDATE = "releasecandidate"; public final String STABLE = "stable"; public final static Set values = new HashSet(Arrays.asList(PREALPHA, ALPHA, BETA, RELEASECANDIDATE, STABLE)); } } } /** * API Name: Application.Property.Name */ public interface PropertyName { public final String VOLUME = "volume"; public final String MUTED = "muted"; public final String NAME = "name"; public final String VERSION = "version"; public final static Set values = new HashSet(Arrays.asList(VOLUME, MUTED, NAME, VERSION)); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy