001// ***************************************************************************************************************************
002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
003// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
005// * with the License.  You may obtain a copy of the License at                                                              *
006// *                                                                                                                         *
007// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
008// *                                                                                                                         *
009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
011// * specific language governing permissions and limitations under the License.                                              *
012// ***************************************************************************************************************************
013package org.apache.juneau.examples.core.html;
014
015import org.apache.juneau.examples.core.pojo.Pojo;
016import org.apache.juneau.examples.core.pojo.PojoComplex;
017import org.apache.juneau.html.HtmlSerializer;
018import org.apache.juneau.html.HtmlParser;
019
020import java.util.ArrayList;
021import java.util.HashMap;
022import java.util.List;
023
024/**
025 * Sample class which shows the complex usage of HtmlSerializer and HtmlParser.
026 *
027 * <ul class='seealso'>
028 *    <li class='extlink'>{@source}
029 * </ul>
030 */
031public class HtmlComplexExample {
032
033   /**
034    * Serializing PojoComplex bean into Html type
035    * and Deserialize back to PojoComplex instance type.
036    *
037    * @param args Unused.
038    * @throws Exception Unused.
039    */
040   public static void main(String[] args) throws Exception {
041      // Juneau provides static constants with the most commonly used configurations
042      // Get a reference to a serializer - converting POJO to flat format
043      /**
044       * Produces
045       * <table><tr><td>innerPojo</td><td><table><tr><td>name</td><td>name0</td></tr>
046       * <tr><td>id</td><td>1.0</td></tr></table></td></tr><tr><td>values</td><td><table>
047       * <tr><td>setOne</td><td><table _type="array"><tr><th>name</th><th>id</th></tr>
048       * <tr><td>name1</td><td>1.1</td></tr><tr><td>name2</td><td>1.1</td></tr>
049       * </table></td></tr><tr><td>setTwo</td><td><table _type="array"><tr><th>name
050       * </th><th>id</th></tr><tr><td>name1</td><td>1.2</td></tr><tr><td>name2</td><td>1.2
051       * </td></tr></table></td></tr></table></td></tr><tr><td>id</td><td>pojo</td></tr></table>
052       */
053      HtmlSerializer htmlSerializer = HtmlSerializer.DEFAULT;
054      // Get a reference to a parser - converts that flat format back into the POJO
055      HtmlParser htmlParser = HtmlParser.DEFAULT;
056
057      // Fill some data to a PojoComplex bean
058      HashMap<String, List<Pojo>> values = new HashMap<>();
059      ArrayList<Pojo> setOne = new ArrayList<>();
060      setOne.add(new Pojo("1.1", "name1"));
061      setOne.add(new Pojo("1.1", "name2"));
062      ArrayList<Pojo> setTwo = new ArrayList<>();
063      setTwo.add(new Pojo("1.2", "name1"));
064      setTwo.add(new Pojo("1.2", "name2"));
065      values.put("setOne", setOne);
066      values.put("setTwo", setTwo);
067      PojoComplex pojoc = new PojoComplex("pojo", new Pojo("1.0", "name0"), values);
068
069      String flat = htmlSerializer.serialize(pojoc);
070
071      // Print out the created POJO in JSON format.
072      System.out.println(flat);
073
074      PojoComplex parse = htmlParser.parse(flat, PojoComplex.class);
075
076      assert parse.getId().equals(pojoc.getId());
077      assert parse.getInnerPojo().getName().equals(pojoc.getInnerPojo().getName());
078      assert parse.getInnerPojo().getId().equals(pojoc.getInnerPojo().getId());
079
080      // The object above can be parsed thanks to the @Beanc(properties = id,name) annotation on Pojo
081      // Using this approach, you can keep your POJOs immutable, and still serialize and deserialize them.
082   }
083}