blob: 84401d58d5a1b89ce705132eda14a2a4d911d3e2 [file] [log] [blame]
<!--
/***************************************************************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright ownership. The ASF licenses this file
* to you 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.
***************************************************************************************************************************/
-->
HTTP Part Serializers
<p>
There is a separate set of serializers for serializing HTTP parts (query, form-data, headers, path variables, and plain-text request bodies).
The distinction is that these are designed to serialize directly to strings based on Open-API schema information.
</p>
<p class='bpcode w800'>
<jc>// Schema information about our part.</jc>
HttpPartSchema schema = HttpPartSchema
.<jsm>create</jsm>(<js>"array"</js>)
.collectionFormat(<js>"pipes"</js>)
.items(
HttpPartSchema
.<jsm>create</jsm>(<js>"array"</js>)
.collectionFormat(<js>"csv"</js>)
.items(
HttpPartSchema.<jsm>create</jsm>(<js>"integer"</js>,<js>"int64"</js>)
)
)
.build();
<jc>// Our value to serialize</jc>
Object value = <jk>new long</jk>[][]{{1,2,3},{4,5,6},{7,8,9}};
<jc>// Produces "1,2,3|4,5,6|7,8,9"</jc>
String output = OpenApiSerializer.<jsf>DEFAULT</jsf>.serialize(HttpPartType.<jsf>HEADER</jsf>, schema, value);
</p>
<p>
The class hierarchy for the part serializers are:
</p>
<ul class='javatree'>
<li class='jic'>{@link oaj.httppart.HttpPartSerializer}
<ul>
<li class='jc'>{@link oaj.httppart.SimplePartSerializer} - Serializes directly to strings.
<li class='jc'>{@link oaj.uon.UonSerializer} - Serializes to UON notation.
<ul>
<li class='jc'>{@link oaj.oapi.OpenApiSerializer} - Serializes using Open-API schema rules.
</ul>
</ul>
</ul>