Search in sources :

Example 11 with UiContext

use of io.vertigo.vega.engines.webservice.json.UiContext in project vertigo by KleeGroup.

the class DtListJsonConverter method populateWebServiceCallContext.

/**
 * {@inheritDoc}
 */
@Override
public void populateWebServiceCallContext(final Object input, final WebServiceParam webServiceParam, final WebServiceCallContext routeContext) {
    final Class<?> paramClass = webServiceParam.getType();
    Assertion.checkArgument(DtList.class.isAssignableFrom(paramClass), "This JsonConverter can't read the asked type {0}. Only {1} is supported", paramClass.getSimpleName(), DtList.class.getSimpleName());
    Assertion.checkArgument(getSupportedInputs()[0].isInstance(input) || getSupportedInputs()[1].isInstance(input), "This JsonConverter doesn't support this input type {0}. Only {1} is supported", input.getClass().getSimpleName(), Arrays.toString(getSupportedInputs()));
    // -----
    final Type paramGenericType = webServiceParam.getGenericType();
    final String objectPath;
    final UiListModifiable<DtObject> uiList;
    if (input instanceof String) {
        uiList = jsonReaderEngine.uiListFromJson((String) input, paramGenericType);
        objectPath = "";
    } else if (input instanceof UiContext) {
        uiList = (UiListModifiable<DtObject>) ((UiContext) input).get(webServiceParam.getName());
        Assertion.checkNotNull(uiList, "InnerParam not found : {0}", webServiceParam);
        objectPath = webServiceParam.getName();
    } else {
        throw new IllegalArgumentException(String.format("This JsonConverter can't read the asked type %s. Only %s is supported", paramClass.getSimpleName(), UiListDelta.class.getSimpleName()));
    }
    // -----
    UiObjectUtil.postReadUiList(uiList, objectPath, webServiceParam);
    routeContext.setParamValue(webServiceParam, uiList);
}
Also used : UiListDelta(io.vertigo.vega.engines.webservice.json.UiListDelta) Type(java.lang.reflect.Type) DtObject(io.vertigo.dynamo.domain.model.DtObject) UiListModifiable(io.vertigo.vega.engines.webservice.json.UiListModifiable) DtList(io.vertigo.dynamo.domain.model.DtList) UiContext(io.vertigo.vega.engines.webservice.json.UiContext)

Aggregations

UiContext (io.vertigo.vega.engines.webservice.json.UiContext)11 DtObject (io.vertigo.dynamo.domain.model.DtObject)4 UiListDelta (io.vertigo.vega.engines.webservice.json.UiListDelta)3 PUT (io.vertigo.vega.webservice.stereotype.PUT)3 Type (java.lang.reflect.Type)3 UiObject (io.vertigo.vega.webservice.model.UiObject)2 POST (io.vertigo.vega.webservice.stereotype.POST)2 FacetDefinition (io.vertigo.dynamo.collections.metamodel.FacetDefinition)1 FacetedQueryDefinition (io.vertigo.dynamo.collections.metamodel.FacetedQueryDefinition)1 FacetValue (io.vertigo.dynamo.collections.model.FacetValue)1 DtList (io.vertigo.dynamo.domain.model.DtList)1 UiListModifiable (io.vertigo.vega.engines.webservice.json.UiListModifiable)1 ExtendedObject (io.vertigo.vega.webservice.model.ExtendedObject)1 Doc (io.vertigo.vega.webservice.stereotype.Doc)1 ExcludedFields (io.vertigo.vega.webservice.stereotype.ExcludedFields)1 GET (io.vertigo.vega.webservice.stereotype.GET)1 ServerSideSave (io.vertigo.vega.webservice.stereotype.ServerSideSave)1 Serializable (java.io.Serializable)1