1 /* 2 * Copyright 2001-2004 The Apache Software Foundation. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package org.apache.axis2.wsdl.databinding; 18 19 import javax.xml.namespace.QName; 20 21 /* 22 * Copyright 2004,2005 The Apache Software Foundation. 23 * 24 * Licensed under the Apache License, Version 2.0 (the "License"); 25 * you may not use this file except in compliance with the License. 26 * You may obtain a copy of the License at 27 * 28 * http://www.apache.org/licenses/LICENSE-2.0 29 * 30 * Unless required by applicable law or agreed to in writing, software 31 * distributed under the License is distributed on an "AS IS" BASIS, 32 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 * See the License for the specific language governing permissions and 34 * limitations under the License. 35 * 36 * Interface for the type mapping 37 */ 38 public interface TypeMapper { 39 /** 40 * Get the type mapping class 41 * @param qname name of the XML element to be mapped 42 * @return a class that represents the particualr type 43 */ 44 public String getTypeMapping(QName qname); 45 46 /** 47 * Get the parameter name 48 * @param qname name of the XML element to get a parameter 49 * @return a unique parameter name 50 */ 51 public String getParameterName(QName qname); 52 53 /** 54 * Adds a type mapping to the type mapper 55 * @param qname 56 * @param value 57 */ 58 public void addTypeMapping(QName qname,Object value); 59 60 } 61