/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.manifoldcf.crawler.connectors.confluence.model; import org.apache.manifoldcf.crawler.connectors.confluence.model.builder.ConfluenceResourceBuilder; import org.json.simple.JSONObject; /** * <p> * Label class * </p> * <p> * Represents a Confluence Label * </p> * * @author Antonio David Perez Morales <adperezmorales@gmail.com> */ public class Label extends ConfluenceResource{ protected static final String KEY_LINKS = "_links"; protected static final String KEY_ID = "id"; protected static final String KEY_SELF = "self"; protected static final String KEY_PREFIX = "prefix"; protected static final String KEY_NAME = "name"; protected String id; protected String prefix; protected String name; @SuppressWarnings("unused") private JSONObject delegated; public Label() { } public String getId() { return this.id; } public String getPrefix() { return this.prefix; } public String getName() { return this.name; } public static LabelBuilder builder() { return new LabelBuilder(); } /** * <p> * LabelBuilder internal class * </p> * <p> * Used to build Labels * </p> * * @author Antonio David Perez Morales <adperezmorales@gmail.com> * */ public static class LabelBuilder implements ConfluenceResourceBuilder<Label>{ public Label fromJson(JSONObject jsonLabel) { return fromJson(jsonLabel, new Label()); } public Label fromJson(JSONObject jsonPage, Label label) { label.id = (jsonPage.get(KEY_ID)==null)?"":jsonPage.get(KEY_ID).toString(); label.prefix = (jsonPage.get(KEY_PREFIX)==null)?"":jsonPage.get(KEY_PREFIX).toString(); label.name = (jsonPage.get(KEY_NAME)==null)?"":jsonPage.get(KEY_NAME).toString(); label.delegated = jsonPage; return label; } @Override public Class<Label> getType() { return Label.class; } } }