All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.grails.web.converters.marshaller.xml.ToStringBeanMarshaller Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2004-2008 the original author or authors.
 *
 * 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 org.grails.web.converters.marshaller.xml;

import grails.converters.XML;

import java.net.URL;
import java.util.Arrays;
import java.util.Collections;
import java.util.Currency;
import java.util.HashSet;
import java.util.Locale;
import java.util.Set;
import java.util.TimeZone;

import org.grails.web.converters.exceptions.ConverterException;
import org.grails.web.converters.marshaller.ObjectMarshaller;

/**
 * @author Siegfried Puchbauer
 * @since 1.1
 */
public class ToStringBeanMarshaller implements ObjectMarshaller {

    private final Set> classes;

    public ToStringBeanMarshaller(Set> classes) {
        this.classes = classes;
    }

    @SuppressWarnings("unchecked")
    public ToStringBeanMarshaller() {
        classes = Collections.unmodifiableSet(new HashSet>(Arrays.asList(
                Currency.class, TimeZone.class, Locale.class, URL.class)));
    }

    public boolean supports(Object object) {
        return classes.contains(object.getClass());
    }

    public void marshalObject(Object object, XML converter) throws ConverterException {
        converter.convertAnother(object.toString());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy