de.otto.jsonhome.registry.controller.LinkConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonhome-registry Show documentation
Show all versions of jsonhome-registry Show documentation
Library used to write json-home registries for multiple json-home sources.
The newest version!
/*
* Copyright 2012 Guido Steinacker
*
* Licensed 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 de.otto.jsonhome.registry.controller;
import de.otto.jsonhome.registry.store.Link;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import static java.net.URI.create;
import static java.util.stream.Collectors.toList;
/**
* @author Guido Steinacker
* @since 11.02.13
*/
public class LinkConverter {
private LinkConverter() {}
public static Map linkToJson(final Link link) {
final Map json = new LinkedHashMap<>();
json.put("href", link.getHref().toString());
if (!link.getTitle().isEmpty()) {
json.put("title", link.getTitle());
}
return json;
}
public static Link jsonToLink(final Map json) {
return new Link(
create(json.get("href")),
json.get("title")
);
}
public static List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy