KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > caucho > j2ee > deployclient > DeploymentFactoryImpl


1 /*
2  * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved
3  *
4  * This file is part of Resin(R) Open Source
5  *
6  * Each copy or derived work must preserve the copyright notice and this
7  * notice unmodified.
8  *
9  * Resin Open Source is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Resin Open Source is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
17  * of NON-INFRINGEMENT. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with Resin Open Source; if not, write to the
22  * Free SoftwareFoundation, Inc.
23  * 59 Temple Place, Suite 330
24  * Boston, MA 02111-1307 USA
25  *
26  * @author Scott Ferguson
27  */

28
29 package com.caucho.j2ee.deployclient;
30
31 import javax.enterprise.deploy.spi.DeploymentManager JavaDoc;
32 import javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException JavaDoc;
33 import javax.enterprise.deploy.spi.factories.DeploymentFactory JavaDoc;
34
35 /**
36  * Factory for the implementation classes.
37  */

38 public class DeploymentFactoryImpl implements DeploymentFactory JavaDoc {
39   /**
40    * Returns true if the deployment manager handles the URI.
41    */

42   public boolean handlesURI(String JavaDoc uri)
43   {
44     return uri.startsWith("resin:");
45   }
46
47   /**
48    * Returns a deployment manager for the URI.
49    */

50   public DeploymentManager JavaDoc getDeploymentManager(String JavaDoc uri,
51                         String JavaDoc username,
52                         String JavaDoc password)
53     throws DeploymentManagerCreationException JavaDoc
54   {
55     try {
56       DeploymentManagerImpl manager = createManager(uri);
57
58       manager.connect(username, password);
59
60       return manager;
61     } catch (Throwable JavaDoc e) {
62       e.printStackTrace();
63       throw new RuntimeException JavaDoc(e);
64     }
65   }
66
67   /**
68    * Returns a deployment manager for the URI.
69    */

70   public DeploymentManager JavaDoc getDisconnectedDeploymentManager(String JavaDoc uri)
71     throws DeploymentManagerCreationException JavaDoc
72   {
73     return createManager(uri);
74   }
75
76   /**
77    * Creates the manager.
78    */

79   private DeploymentManagerImpl createManager(String JavaDoc uri)
80     throws DeploymentManagerCreationException JavaDoc
81   {
82     if (! handlesURI(uri))
83       throw new DeploymentManagerCreationException JavaDoc("'" + uri + "' is an unsupported deployment URI.");
84
85     return new DeploymentManagerImpl(uri);
86   }
87
88   /**
89    * Returns the name of the vendor's manager.
90    */

91   public String JavaDoc getDisplayName()
92   {
93     return "Resin J2EE DeploymentFactory";
94   }
95
96   /**
97    * Returns a string of the version.
98    */

99   public String JavaDoc getProductVersion()
100   {
101     return com.caucho.Version.FULL_VERSION;
102   }
103 }
104
105
Popular Tags