KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > transformers > codec > SgmlEntityEncoder


1 /*
2  * $Id: SgmlEntityEncoder.java 3937 2006-11-20 16:04:25Z lajos $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.transformers.codec;
12
13 /**
14  * Encodes an XML String into entity-encoded form
15  *
16  * @deprecated use {@link XmlEntityEncoder} instead
17  */

18 public class SgmlEntityEncoder extends XmlEntityEncoder
19 {
20     /**
21      * Serial version
22      */

23     private static final long serialVersionUID = 4229616539951956886L;
24
25     public SgmlEntityEncoder()
26     {
27         super();
28         logger.warn(this.getClass().getName() + " is deprecated; please use "
29                     + this.getClass().getSuperclass().getName());
30     }
31
32 }
33
Popular Tags