1 /**********************************************************************
2 * EJOEExtensionsRegistry.java
3 * created on 13.07.2006 by netseeker
4 * $Source$
5 * $Date$
6 * $Revision$
7 *
8 * ====================================================================
9 *
10 * Copyright 2006 netseeker aka Michael Manske
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 * ====================================================================
24 *
25 * This file is part of the EJOE framework.
26 * For more information on the author, please see
27 * <http://www.manskes.de/>.
28 *
29 *********************************************************************/
30
31 package de.netseeker.ejoe.ext.wsif.wsdl;
32
33 import javax.wsdl.extensions.ExtensionRegistry;
34
35 import org.apache.wsif.logging.Trc;
36
37 /***
38 * ExtensionRegistry for the EJOE WSDL binding extensions
39 *
40 * @author netseeker
41 * @since 0.3.9.1
42 */
43 public class EJOEExtensionsRegistry extends ExtensionRegistry
44 {
45 private static final long serialVersionUID = 1L;
46
47 public EJOEExtensionsRegistry()
48 {
49 super();
50 Trc.entry( this );
51 EJOEBindingSerializer ejoeBindingSerializer = new EJOEBindingSerializer();
52 ejoeBindingSerializer.registerSerializer( this );
53 Trc.exit();
54 }
55 }