Package org.codehaus.xfire.plexus.type

Examples of org.codehaus.xfire.plexus.type.TypeMappingRegistry


public class TypeMappingRegistryTest
    extends PlexusTestCase
{
    public void testRegistry() throws Exception
    {
        TypeMappingRegistry reg = (TypeMappingRegistry) lookup( TypeMappingRegistry.ROLE );
       
        assertNotNull(reg);
       
        TypeMapping tm = reg.getTypeMapping(SoapConstants.XSD);
       
        assertNotNull(tm);
       
        assertNotNull(tm.getType(String.class));
        assertNotNull(tm.getType(Integer.class));
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.plexus.type.TypeMappingRegistry

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.