com.speedment.plugins.json.JsonComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stream Show documentation
Show all versions of json-stream Show documentation
This plugin allows you to easily convert Speedment entities into JSON.
/**
*
* Copyright (c) 2006-2018, Speedment, Inc. All Rights Reserved.
*
* Licensed 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 com.speedment.plugins.json;
import com.speedment.common.injector.annotation.InjectKey;
import com.speedment.runtime.core.manager.Manager;
import com.speedment.runtime.field.Field;
/**
*
* @author Emil Forslund
* @since 3.0.1
*/
@InjectKey(JsonComponent.class)
public interface JsonComponent {
/**
* Creates and return a new JsonEncoder with no fields added to the
* renderer.
*
* @param the Entity type
* @param manager of the entity
* @return a new JsonEncoder with no fields added to the renderer
*/
JsonEncoder noneOf(Manager manager);
/**
* Creates and return a new JsonEncoder with all the Entity fields added to
* the renderer. The field(s) will be rendered using their default class
* renderer.
*
* @param the Entity type
* @param manager of the entity
* @return a new JsonEncoder with all the Entity fields added to the
* renderer
*/
JsonEncoder allOf(Manager manager);
/**
* Creates and return a new JsonEncoder with the provided Entity field(s)
* added to the renderer. The field(s) will be rendered using their default
* class renderer.
*
* @param the Entity type
* @param manager of the ENTITY
* @param fields to add to the output renderer
* @return a new JsonEncoder with the specified fields added to the renderer
*/
@SuppressWarnings ({"unchecked", "varargs"})
JsonEncoder of(Manager manager, Field... fields);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy