com.sdicons.json.serializer.helper.MarshallHelper Maven / Gradle / Ivy
Go to download
Java JSON Tools core library. It is independent of third party libraries.
It is meant to minimize transitive dependencies.
Applications of the JSON tools which relate to other libraries will
be in separate optional pacakges.
package com.sdicons.json.serializer.helper;
/*
JSONTools - Java JSON Tools
Copyright (C) 2006 S.D.I.-Consulting BVBA
http://www.sdi-consulting.com
mailto://[email protected]
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
import com.sdicons.json.serializer.marshall.MarshallException;
import com.sdicons.json.serializer.marshall.JSONMarshall;
import com.sdicons.json.model.JSONObject;
import com.sdicons.json.helper.Helper;
import java.util.HashMap;
/** A helper can render an instance of a specific class in a custom way.
* It is the helpers responsability to render instances of a class to/from JSON.
*/
public interface MarshallHelper
extends Helper
{
/** Convert an element to JSON.
*
* @param aObj Instance that should be rendered to JSON.
* @param aObjectElement The parent element where we have to put the rendered information. A helper is allowed to add
* child elements.
* @param aMarshall The marshall we can use to recursively render parts of our own object.
* @param aPool A pool of objects already encountered. Is used to resolve references.
* @throws MarshallException
*/
public void renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
throws MarshallException;
/** Convert JSON representation into an instance of a class.
*
* @param aObjectElement The source element we have to convert into an object.
* @param aMarshall The marshall we can use to convert sub elements into subobjects to compose our target object.
* @param aPool A pool of objects already encountered. Is used to resolve references.
* @return The newly created object.
* @throws MarshallException
*/
public Object parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
throws MarshallException;
}