01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * $Id: CustomDataContentHandlerFactory.java,v 1.2 2007/07/16 16:41:28 ofung Exp $
22: * $Revision: 1.2 $
23: * $Date: 2007/07/16 16:41:28 $
24: */
25:
26: /*
27: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
28: *
29: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
30: *
31: * The contents of this file are subject to the terms of either the GNU
32: * General Public License Version 2 only ("GPL") or the Common Development
33: * and Distribution License("CDDL") (collectively, the "License"). You
34: * may not use this file except in compliance with the License. You can obtain
35: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
36: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
37: * language governing permissions and limitations under the License.
38: *
39: * When distributing the software, include this License Header Notice in each
40: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
41: * Sun designates this particular file as subject to the "Classpath" exception
42: * as provided by Sun in the GPL Version 2 section of the License file that
43: * accompanied this code. If applicable, add the following below the License
44: * Header, with the fields enclosed by brackets [] replaced by your own
45: * identifying information: "Portions Copyrighted [year]
46: * [name of copyright owner]"
47: *
48: * Contributor(s):
49: *
50: * If you wish your version of this file to be governed by only the CDDL or
51: * only the GPL Version 2, indicate your decision by adding "[Contributor]
52: * elects to include this software in this distribution under the [CDDL or GPL
53: * Version 2] license." If you don't indicate a single choice of license, a
54: * recipient has the option to distribute your version of this file under
55: * either the CDDL, the GPL Version 2 or to extend the choice of license to
56: * its licensees as provided above. However, if you add GPL Version 2 code
57: * and therefore, elected the GPL Version 2 license, then the option applies
58: * only if the new code is made subject to such option by the copyright
59: * holder.
60: */
61: package mime.custom;
62:
63: import javax.activation.DataContentHandler;
64: import javax.activation.DataContentHandlerFactory;
65:
66: /**
67: * The data content handler factory.
68: *
69: * @author Jitendra Kotamraju (jitendra.kotamraju@sun.com)
70: */
71: public class CustomDataContentHandlerFactory implements
72: DataContentHandlerFactory {
73:
74: /**
75: * Data handler for "custom/factory" MIME type
76: */
77: public DataContentHandler createDataContentHandler(String mimeType) {
78: if (mimeType.equals("custom/factory")) {
79: return new FactoryDataContentHandler();
80: }
81: return null;
82: }
83: }
|