Package org.exoplatform.commons.serialization.api.factory

Examples of org.exoplatform.commons.serialization.api.factory.DefaultObjectFactory


   private final Map<Class<?>, ObjectFactory<?>> factories;

   public SerializationContext(TypeDomain typeDomain)
   {
      HashMap<Class<?>, ObjectFactory<?>> factories = new HashMap<Class<?>, ObjectFactory<?>>();
      factories.put(Object.class, new DefaultObjectFactory());

      //
      this.typeDomain = typeDomain;
      this.factories = factories;
   }
View Full Code Here


    /** . */
    private final Map<Class<?>, ObjectFactory<?>> factories;

    public SerializationContext(TypeDomain typeDomain) {
        HashMap<Class<?>, ObjectFactory<?>> factories = new HashMap<Class<?>, ObjectFactory<?>>();
        factories.put(Object.class, new DefaultObjectFactory());

        //
        this.typeDomain = typeDomain;
        this.factories = factories;
    }
View Full Code Here

TOP

Related Classes of org.exoplatform.commons.serialization.api.factory.DefaultObjectFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.