?? xmlparamtypetest.java
字號:
package org.codehaus.xfire.aegis.type.java5;import java.lang.reflect.Method;import javax.xml.namespace.QName;import org.codehaus.xfire.aegis.AbstractXFireAegisTest;import org.codehaus.xfire.aegis.type.Configuration;import org.codehaus.xfire.aegis.type.CustomTypeMapping;import org.codehaus.xfire.aegis.type.DefaultTypeCreator;import org.codehaus.xfire.aegis.type.Type;import org.codehaus.xfire.service.Service;import org.codehaus.xfire.soap.SoapConstants;import org.jdom.Document;public class XmlParamTypeTest extends AbstractXFireAegisTest{ private CustomTypeMapping tm; private Java5TypeCreator creator; public void setUp() throws Exception { super.setUp(); tm = new CustomTypeMapping(); creator = new Java5TypeCreator(); creator.setNextCreator(new DefaultTypeCreator()); creator.setConfiguration(new Configuration()); tm.setTypeCreator(creator); } public void testType() throws Exception { Method m = CustomTypeService.class.getMethod("doFoo", new Class[] { String.class }); Type type = creator.createType(m, 0); tm.register(type); assertTrue( type instanceof CustomStringType ); assertEquals( new QName("urn:xfire:foo", "custom"), type.getSchemaType()); type = creator.createType(m, -1); tm.register(type); assertTrue( type instanceof CustomStringType ); assertEquals( new QName("urn:xfire:foo", "custom"), type.getSchemaType()); } public void testMapServiceWSDL() throws Exception { Service service = getServiceFactory().create(CustomTypeService.class); getServiceRegistry().register(service); Document wsdl = getWSDLDocument(service.getSimpleName()); addNamespace("xsd", SoapConstants.XSD); assertValid("//xsd:element[@name='s'][@type='ns1:custom']", wsdl); } public class CustomTypeService { @XmlReturnType(type=CustomStringType.class, namespace="urn:xfire:foo", name="custom") public String doFoo(@XmlParamType(type=CustomStringType.class, namespace="urn:xfire:foo", name="custom") String s) { return null; } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -