Package com.dyuproject.ioc

Source Code of com.dyuproject.ioc.DefaultConvertorCache

//========================================================================
//Copyright 2007-2009 David Yu dyuproject@gmail.com
//------------------------------------------------------------------------
//Licensed 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.
//========================================================================

package com.dyuproject.ioc;

import java.util.Map;

import org.mortbay.util.ajax.JSON.Convertor;
import org.mortbay.util.ajax.JSON.Output;

import com.dyuproject.ioc.config.Reference;
import com.dyuproject.json.StandardConvertorCache;

/**
* The default convertor cache which creates a {@link DefaultPojoConvertor} for a given pojo.
*
* @author David Yu
* @created Feb 21, 2009
*/

@SuppressWarnings("unchecked")
public class DefaultConvertorCache extends StandardConvertorCache
{
   
    public DefaultConvertorCache()
    {
        final Convertor wrapped = newConvertor(Reference.class);
        addConvertor(Reference.class, new Convertor()
        {
            public Object fromJSON(Map map)
            {
                return wrapped.fromJSON(map);
            }
            public void toJSON(Object obj, Output out)
            {
                getConvertor(obj.getClass(), true).toJSON(obj, out);               
            }           
        });
    }
   
    public Convertor newConvertor(Class<?> clazz, boolean addClass)
    {
        return new DefaultPojoConvertor(clazz, addClass);
    }

}
TOP

Related Classes of com.dyuproject.ioc.DefaultConvertorCache

TOP
Copyright © 2018 www.massapi.com. 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.