View | Details | Raw Unified | Return to bug 122752 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jst/ws/internal/consumption/ui/wizard/uddi/PublicUDDIRegistryMicrosoftTest.java (-41 lines)
Removed Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2004 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
12
package org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi;
13
14
import org.eclipse.wst.ws.parser.PluginMessages;
15
16
public class PublicUDDIRegistryMicrosoftTest implements PublicUDDIRegistryType
17
{
18
19
    // Copyright
20
    public static final String copyright = "(c) Copyright IBM Corporation 2002.";
21
22
    public PublicUDDIRegistryMicrosoftTest() {
23
    }
24
25
    public String getName() {
26
        return PluginMessages.PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT_TEST;
27
    }
28
29
    public String getInquiryURL() {
30
        return "http://test.uddi.microsoft.com/inquire";
31
    }
32
33
    public String getPublishURL() {
34
        return "https://test.uddi.microsoft.com/publish";
35
    }
36
37
    public String getRegistrationURL() {
38
        return "http://test.uddi.microsoft.com/register.aspx";
39
    }
40
41
}
(-)src/org/eclipse/jst/ws/internal/consumption/ui/wizard/uddi/PublicUDDIRegistryIBMTest.java (-41 lines)
Removed Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2004 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
12
package org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi;
13
14
import org.eclipse.wst.ws.parser.PluginMessages;
15
16
public class PublicUDDIRegistryIBMTest implements PublicUDDIRegistryType
17
{
18
19
    // Copyright
20
    public static final String copyright = "(c) Copyright IBM Corporation 2002.";
21
22
    public PublicUDDIRegistryIBMTest() {
23
    }
24
25
    public String getName() {
26
        return PluginMessages.PUBLICUDDIREGISTRYTYPE_NAME_IBM_TEST;
27
    }
28
29
    public String getInquiryURL() {
30
        return "http://uddi.ibm.com/testregistry/inquiryapi";
31
    }
32
33
    public String getPublishURL() {
34
        return "https://uddi.ibm.com/testregistry/publishapi";
35
    }
36
37
    public String getRegistrationURL() {
38
        return "http://uddi.ibm.com/testregistry/registry.html";
39
    }
40
41
}
(-)src/org/eclipse/jst/ws/internal/consumption/ui/wizard/uddi/PublicUDDIRegistryMicrosoft.java (-41 lines)
Removed Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2004 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
12
package org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi;
13
14
import org.eclipse.wst.ws.parser.PluginMessages;
15
16
public class PublicUDDIRegistryMicrosoft implements PublicUDDIRegistryType
17
{
18
19
    // Copyright
20
    public static final String copyright = "(c) Copyright IBM Corporation 2002.";
21
22
    public PublicUDDIRegistryMicrosoft() {
23
    }
24
25
    public String getName() {
26
        return PluginMessages.PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT;
27
    }
28
29
    public String getInquiryURL() {
30
        return "http://uddi.microsoft.com/inquire";
31
    }
32
33
    public String getPublishURL() {
34
        return "https://uddi.microsoft.com/publish";
35
    }
36
37
    public String getRegistrationURL() {
38
        return "https://uddi.microsoft.com/register.aspx";
39
    }
40
41
}
(-)src/org/eclipse/jst/ws/internal/consumption/ui/wizard/uddi/PublicUDDIRegistryIBM.java (-41 lines)
Removed Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2004 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
12
package org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi;
13
14
import org.eclipse.wst.ws.parser.PluginMessages;
15
16
public class PublicUDDIRegistryIBM implements PublicUDDIRegistryType
17
{
18
19
    // Copyright
20
    public static final String copyright = "(c) Copyright IBM Corporation 2002.";
21
22
    public PublicUDDIRegistryIBM() {
23
    }
24
25
    public String getName() {
26
        return PluginMessages.PUBLICUDDIREGISTRYTYPE_NAME_IBM;
27
    }
28
29
    public String getInquiryURL() {
30
        return "http://uddi.ibm.com/ubr/inquiryapi";
31
    }
32
33
    public String getPublishURL() {
34
        return "https://uddi.ibm.com/ubr/publishapi";
35
    }
36
37
    public String getRegistrationURL() {
38
        return "http://uddi.ibm.com/ubr/registry.html";
39
    }
40
41
}
(-)plugin.properties (-4 lines)
Lines 92-101 Link Here
92
#
92
#
93
# PublicUDDIRegistryType
93
# PublicUDDIRegistryType
94
#
94
#
95
PUBLICUDDIREGISTRYTYPE_NAME_IBM=IBM UDDI Registry
96
PUBLICUDDIREGISTRYTYPE_NAME_IBM_TEST=IBM UDDI Test Registry
97
PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT=Microsoft UDDI Registry
98
PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT_TEST=Microsoft UDDI Test Registry
99
PUBLICUDDIREGISTRYTYPE_NAME_SAP=SAP UDDI Registry
95
PUBLICUDDIREGISTRYTYPE_NAME_SAP=SAP UDDI Registry
100
PUBLICUDDIREGISTRYTYPE_NAME_SAP_TEST=SAP UDDI Test Registry
96
PUBLICUDDIREGISTRYTYPE_NAME_SAP_TEST=SAP UDDI Test Registry
101
PUBLICUDDIREGISTRYTYPE_NAME_XMETHODS=XMethods Registry
97
PUBLICUDDIREGISTRYTYPE_NAME_XMETHODS=XMethods Registry
(-)plugin.xml (-36 lines)
Lines 30-71 Link Here
30
   <extension
30
   <extension
31
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
31
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
32
      <publicUDDIRegistryType
32
      <publicUDDIRegistryType
33
            name="%PUBLICUDDIREGISTRYTYPE_NAME_IBM_TEST"
34
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryIBMTest"
35
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryIBMTest">
36
      </publicUDDIRegistryType>
37
   </extension>
38
39
   <extension
40
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
41
      <publicUDDIRegistryType
42
            name="%PUBLICUDDIREGISTRYTYPE_NAME_IBM"
43
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryIBM"
44
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryIBM">
45
      </publicUDDIRegistryType>
46
   </extension>
47
48
   <extension
49
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
50
      <publicUDDIRegistryType
51
            name="%PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT_TEST"
52
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryMicrosoftTest"
53
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryMicrosoftTest">
54
      </publicUDDIRegistryType>
55
   </extension>
56
57
   <extension
58
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
59
      <publicUDDIRegistryType
60
            name="%PUBLICUDDIREGISTRYTYPE_NAME_MICROSOFT"
61
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryMicrosoft"
62
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistryMicrosoft">
63
      </publicUDDIRegistryType>
64
   </extension>
65
66
   <extension
67
         point="org.eclipse.jst.ws.consumption.ui.publicUDDIRegistryType">
68
      <publicUDDIRegistryType
69
            name="%PUBLICUDDIREGISTRYTYPE_NAME_SAP_TEST"
33
            name="%PUBLICUDDIREGISTRYTYPE_NAME_SAP_TEST"
70
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistrySAPTest"
34
            class="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistrySAPTest"
71
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistrySAPTest">
35
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.uddi.PublicUDDIRegistrySAPTest">

Return to bug 122752