blob: 479f204ab0980ff97c39b9d39827ca12d7c58fc6 [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.
***************************************************************************************************************************/
-->
Custom Entry Serialization
<p>
Setter methods that take in a <code>Serializer</code> can be used to provide custom serialization of entries
instead of using the predefined serializer.
</p>
<p class='bpcode w800'>
<jc>// Set an XML value instead of JSON.</jc>
c.set(<js>"key1"</js>, myAddress, XmlSerializer.<jsf>DEFAULT_SQ_READABLE</jsf>);
</p>
<p class='bpcode w800'>
<ck>key1</ck> =
<cv>&lt;address&gt;
&lt;street&gt;123 Main Street&lt;/street&gt;
&lt;city&gt;Anywhere&lt;/city&gt;
&lt;state&gt;NY&lt;/state&gt;
&lt;zip&gt;12345&lt;/zip&gt;
&lt;/address&gt;</cv>
</p>
<p>
The value can then be retrieved using the equivalent parser:
</p>
<p class='bpcode w800'>
Address myAddress = c.getObject(<js>"key1"</js>, XmlParser.<jsf>DEFAULT</jsf>, Address.<jk>class</jk>);
</p>