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

com.theoryinpractise.halbuilder.json.JsonRepresentationFactory Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
package com.theoryinpractise.halbuilder.json;

import com.theoryinpractise.halbuilder.DefaultRepresentationFactory;

/**
 * Simple representation factory configured for JSON usage.
 */
public class JsonRepresentationFactory extends DefaultRepresentationFactory {
    public JsonRepresentationFactory() {
        withRenderer(HAL_JSON, JsonRepresentationWriter.class);
        withReader(HAL_JSON, JsonRepresentationReader.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy