View Javadoc
1   /**
2    * This Source Code Form is subject to the terms of the Mozilla Public
3    * License, v. 2.0. If a copy of the MPL was not distributed with this
4    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5    *
6    * If it is not possible or desirable to put the notice in a particular
7    * file, then You may include the notice in a location (such as a LICENSE
8    * file in a relevant directory) where a recipient would be likely to look
9    * for such a notice.
10  
11   * 
12   */
13   
14  /*  ---------------------------------------------------------------------------
15   *  U.S. Government, Department of the Army
16   *  Army Materiel Command
17   *  Research Development Engineering Command
18   *  Communications Electronics Research Development and Engineering Center
19   *  ---------------------------------------------------------------------------
20   */
21  
22  package org.miloss.fgsms.presentation;
23  
24  import org.uddi.v3_service.UDDIInquiryPortType;
25  import org.uddi.v3_service.UDDIPublicationPortType;
26  import org.uddi.v3_service.UDDISecurityPortType;
27  
28  
29  /**
30   *Provides a simple container to hold configuration and proxy class instances for presentation layer uddi discovery
31   * @author AO
32   */
33  public class UDDIConfig {
34           public UDDIInquiryPortType inquiry=null;
35           public String inquiryendpoint="";
36          public UDDISecurityPortType security=null;
37          public String secendpoint="";
38          
39          public UDDIPublicationPortType publish=null;
40          public String publishendpoint="";
41          
42          
43          public boolean useUDDI = false;
44          public boolean useHTTPUsernamePassword = false;
45          public boolean useHTTPClientCert = false;
46  
47          public String username=null;
48          public String encryptedPassword=null;
49          public boolean IsjUDDI=false;
50  }