View Javadoc

1   package fr.in2p3.jsaga.impl.context;
2   
3   /* ***************************************************
4   * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
5   * ***             http://cc.in2p3.fr/             ***
6   * ***************************************************
7   * File:   ConfiguredContext
8   * Author: Lionel Schwarz (lionel.schwarz@in2p3.fr)
9   * Date:   31/03/2011
10  * ***************************************************
11  * Description:                                      */
12  
13  public class ConfiguredContext {
14  	private String m_urlPrefix;
15  	private String m_type;
16  	public ConfiguredContext(String url, String type) {
17  		m_urlPrefix = url;
18  		m_type = type;
19  	}
20  	
21  	public String getUrlPrefix() {
22  		return m_urlPrefix;
23  	}
24  	
25  	public String getType() {
26  		return m_type;
27  	}
28  }