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

org.tinymediamanager.jsonrpc.api.model.ProfilesModel 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.ObjectNode;
import org.tinymediamanager.jsonrpc.api.AbstractModel;

public final class ProfilesModel {

  /**
   * API Name: Profiles.Details.Profile
   * 

* Note: This class is used as result only.
* This class was generated automatically from XBMC's JSON-RPC introspect. */ public static class ProfileDetail extends ItemModel.BaseDetail { public final static String API_TYPE = "Profiles.Details.Profile"; // field names public static final String LOCKMODE = "lockmode"; public static final String THUMBNAIL = "thumbnail"; // class members public final Integer lockmode; public final String thumbnail; /** * Construct from JSON object. * * @param node * JSON object representing a ProfileDetail object */ public ProfileDetail(JsonNode node) { super(node); lockmode = parseInt(node, LOCKMODE); thumbnail = parseString(node, THUMBNAIL); } @Override public JsonNode toJsonNode() { final ObjectNode node = (ObjectNode) super.toJsonNode(); node.put(LOCKMODE, lockmode); node.put(THUMBNAIL, thumbnail); return node; } /** * Extracts a list of {@link ProfileDetail} 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 getProfilesModelProfileDetailList(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 ProfileDetail((JsonNode) a.get(i))); } return l; } return new ArrayList(0); } } /** * API Name: Profiles.Password *

* Note: This class is used as parameter only.
* This class was generated automatically from XBMC's JSON-RPC introspect. */ public static class Password extends AbstractModel { public final static String API_TYPE = "Profiles.Password"; // field names public static final String ENCRYPTION = "encryption"; public static final String VALUE = "value"; // class members public final String encryption; public final String value; /** * @param encryption * One of: none, md5. See constants at {@link ProfilesModel.Password.Encryption}. * @param value */ public Password(String encryption, String value) { this.encryption = encryption; this.value = value; } @Override public JsonNode toJsonNode() { final ObjectNode node = OM.createObjectNode(); node.put(ENCRYPTION, encryption); // enum node.put(VALUE, value); return node; } /** * API Name: encryption */ public interface Encryption { public final String NONE = "none"; public final String MD5 = "md5"; public final static Set values = new HashSet(Arrays.asList(NONE, MD5)); } } /** * API Name: Profiles.Fields.Profile */ public interface ProfileFields { public final String THUMBNAIL = "thumbnail"; public final String LOCKMODE = "lockmode"; public final static Set values = new HashSet(Arrays.asList(THUMBNAIL, LOCKMODE)); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy