/* * Copyright (c) 2014. by Robusta Code and individual contributors * as indicated by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * 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 io.robusta.rra.representation; import io.robusta.rra.resource.Resource; import java.io.InputStream; import java.util.List; /** * Created by Nicolas Zozol for Robusta Code * * @author Nicolas Zozol */ public interface Representation<Document> { /** * Returns the representation usually written in http tubes * * @return */ @Override public String toString(); /** * Returns a String value, or throw a RepresentationException if it's not * found. * <p> * Use #getValues() to return a collection * </p> * * @param type * type of the object * @return the node value * @throws RepresentationException * if the key is not found * @see #get(Class, String) */ public <T> T get(Class<T> type) throws RepresentationException; /** * Returns a String value, or throw a RepresentationException if it's not * found. * <p> * Use #getValues() to return a collection * </p> * * @param key * name of the searched node * @return the node value * @throws RepresentationException * if the key is not found * @see #get(Class, String) */ public String get(String key) throws RepresentationException; /** * Returns a value, or throw a RepresentationException if it's not found. * <p> * Usually, the method will return a String or a Number, but if this * Representation implements also Mapper, then get() could return a complex * object. * </p> * <p> * Use #getValues() to return a collection * </p> * * @param type * type of the returned object * @param key * name of the searched node * @return the node value * @throws RepresentationException * if the key is not found */ public <T> T get(Class<T> type, String key) throws RepresentationException; /** * @return Document */ public Document getDocument(); /** * Returns true if the Representation has the keys as * <strong>direct</strong> child * * @param keys * searched keys * @return true if the Representation has all keys, false if not */ public boolean hasPossiblyEmpty(String... keys); /** * Returns true if the Representation has not empty values for the specified * keys In JSON, empty means null or empty String * <p> * Useful to validate a representation sent by a client * </p> * * @param keys * searched keys * @return true if the Representation has all set keys, false if not */ public boolean has(String... keys); /** * Returns the the missing keys when #has() and #hasNotEmpty() was called * * @return the missing keys * @throws IllegalStateException * if #has() or#hasNotEmpty() has not been called */ public List<String> getMissingKeys(); /** * Update a node with its value, or create a new node * * @param key * name of the node * @param value * value set * @return the updated representation */ public Representation set(String key, String value); /** * update the representation * * @param key * @param value * @return the updated representation */ public Representation set(String key, Object value); /** * Return String values whey the send points to a collection * * @param key * key of the collection * @return * @throws RepresentationException */ public List<String> getValues(String key) throws RepresentationException; /** * Return values whey the send points to a collection * * @param key * key of the collection * @return * @throws RepresentationException */ public <T> List<T> getValues(Class<T> type, String key) throws RepresentationException; /** * Add a new element, even if one of the same key exists or a value to a * Json array. * * @param key * @param value * @return the updated representation */ public Representation add(String key, Object value); /** * Add a new element, even if one of the same key exists or a value to a * Json array. * * @param key * @param resource * @param eager * : if false, Resource dependencies will show only their ids * @return the updated representation */ public Representation add(String key, Resource resource, boolean eager); /** * Add a list of objects to the Representation. If list is empty, an empty * node <strong>is</strong> created. * * @param key * @param values * @return the updated representation */ public Representation addAll(String key, List values); /** * Build a new Representation containing this representation along with the * representation parameter * * Say we have a User, its userRepresentation and we want it merged with its * schoolRepresentation * <p> * userRepresentation.merge("user", "school", schoolRepresentation) will * give : <code> * { * user : {id:12, name:"Jo"}, * school:{id:3, name:"Harvard", price:40000} * } * </code> * </p> * * @param keyForCurrent * @param representation * Representation to merge * @param keyForNew * @throws IllegalArgumentException * if representations are not of the same kind * @return a new merged Representation */ public Representation merge(String keyForCurrent, String keyForNew, Representation representation); /** * Removes the <strong>first</strong> element found with this key * * @param key * @return the new representation * @throws RepresentationException * if the struncture is irrelevant for the removal */ public Representation remove(String key) throws RepresentationException; /** * Find the element and returns it detached. The key can be like * 'user.school.adress' * * @param key * @return * @throws IllegalArgumentException * if the key does not point to a valid object */ public Representation fetch(String key); /** * Returns a deep copy. Each descending elements of the new structure have * different memory adresses. * * @return a new Representation */ public Representation copy(); /** * create a new representation from json * * @param json * @return a Representation of json */ public Representation createNewRepresentation(String json); /** * Returns a new Representation object of newObject. This current * Representation object is NOT affected. * * @return a Representation of newObject */ public Representation createNewRepresentation(Object newObject); /** * create a new representation from an inputStream * * @param inputStream * @return a Representation of inputStream */ public Representation createNewRepresentation(InputStream inputStream); /** * create a new representation * * @return a Representation */ public Representation createNewRepresentation(); }