001/*
002 * Copyright (c) 2013 Nu Echo Inc. All rights reserved.
003 */
004
005package com.nuecho.rivr.voicexml.util.json;
006
007import javax.json.*;
008
009/**
010 * Indicates that the class intances can be converted to a {@link JsonValue JSON
011 * value}.
012 * 
013 * @author Nu Echo Inc.
014 */
015public interface JsonSerializable {
016    JsonValue asJson();
017}