View Javadoc

1    /****************************************************************************
2    * Copyright (c) 2005, 2006, 2007, 2008, 2009 Imola Informatica.
3    * All rights reserved. This program and the accompanying materials
4    * are made available under the terms of the LGPL License v2.1
5    * which accompanies this distribution, and is available at
6    * http://www.gnu.org/licenses/lgpl.html
7    ****************************************************************************/
8   package it.imolinfo.jbi4corba.utils;
9   
10  
11  
12  /**
13   * Holder for Enpoint Reference information
14   * @author <a href="mailto:lacquaviva@imolinfo.it">Luca Acquaviva</a>
15   */
16  public class IdlFileDataHolder {
17  
18  	/**
19  	 * List of Interface's Name
20  	 * 
21  	 */
22  	private String interfaceName;
23  	
24  	/**
25  	 * List of Namespace's 
26  	 **/
27  	private String interfaceNameSpaces;
28  	
29  	
30  	public String getInterfaceNameSpace() {
31  		return interfaceNameSpaces;
32  	}
33  
34  	public void setInterfaceNameSpaces(String interfaceNameSpace) {
35  		this.interfaceNameSpaces = interfaceNameSpace;
36  	}
37  
38  	public IdlFileDataHolder(){	
39  		
40  	}
41  	
42  	public IdlFileDataHolder(String name,String nameSpace){	
43  		this.interfaceName=name;
44  		this.interfaceNameSpaces=nameSpace;
45  	}
46  
47  	public void setInterfaceName(String interfaceName) {
48  		this.interfaceName = interfaceName;
49  	}
50  
51  	public String getInterfaceName() {
52  		return interfaceName;
53  	}
54  	
55  	
56  	
57  }