Example usage for com.liferay.portal.kernel.json JSONSerializable JSONSerializable

List of usage examples for com.liferay.portal.kernel.json JSONSerializable JSONSerializable

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.json JSONSerializable JSONSerializable.

Prototype

JSONSerializable

Source Link

Usage

From source file:com.liferay.alloy.mvc.jsonwebservice.BaseAlloyControllerInvokerImpl.java

License:Open Source License

protected JSONSerializable getJSONSerializable(final String content) {
    return new JSONSerializable() {

        @Override//from   www .  j a v  a 2  s  .c o  m
        public String toJSONString() {
            return content;
        }

    };
}