KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > websphere6 > WSURIManager


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.j2ee.websphere6;
20
21 import java.io.File JavaDoc;
22 import org.netbeans.modules.j2ee.deployment.plugins.api.InstanceCreationException;
23 import org.netbeans.modules.j2ee.deployment.plugins.api.InstanceProperties;
24
25 /**
26  *
27  * @author dlm198383
28  */

29 public class WSURIManager {
30     public static final String JavaDoc WSURI = "deployer:WebSphere:"; //NOI18N
31

32     /**
33      * Returns instance properties for the server instance.
34      *
35      * @param url the url connection string to get the instance deployment manager.
36      * @return the InstanceProperties object, null if instance does not exists.
37      */

38     
39     public static InstanceProperties getInstanceProperties(String JavaDoc host, String JavaDoc port){
40         InstanceProperties instanceProperties =
41                 InstanceProperties.getInstanceProperties(WSURI+host+":"+port);
42         return instanceProperties;
43     }
44     /**
45      * Create new instance and returns instance properties for the server instance.
46      *
47      * @param url the url connection string to get the instance deployment manager.
48      * @param username username which is used by the deployment manager.
49      * @param password password which is used by the deployment manager.
50      * @param displayName display name which is used by IDE to represent this
51      * server instance.
52      * @return the <code>InstanceProperties</code> object, <code>null</code> if
53      * instance does not exists.
54      * @exception InstanceCreationException when instance with same url already
55      * registered.
56      */

57     public static InstanceProperties createInstanceProperties(String JavaDoc host, String JavaDoc port, String JavaDoc user, String JavaDoc password, String JavaDoc displayName) throws InstanceCreationException {
58         InstanceProperties instanceProperties = InstanceProperties.createInstanceProperties(WSURI+host+":"+port,user,password,displayName);
59        
60         return instanceProperties;
61     }
62     
63     
64 }
65
Popular Tags