View Javadoc

1   /*
2   Copyright 2011-2014 AGH-UST, http://www.agh.edu.pl
3   Faculty of Computer Science, Electronics and Telecommunications
4   Department of Computer Science 
5   
6   See the NOTICE file distributed with this work for additional
7   information regarding copyright ownership
8   
9   Licensed under the Apache License, Version 2.0 (the "License");
10  you may not use this file except in compliance with the License.
11  You may obtain a copy of the License at
12  
13    http://www.apache.org/licenses/LICENSE-2.0
14  
15  Unless required by applicable law or agreed to in writing, software
16  distributed under the License is distributed on an "AS IS" BASIS,
17  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  See the License for the specific language governing permissions and
19  limitations under the License.
20  */
21  package org.universAAL.ri.gateway.communicator.service.impl;
22  
23  import java.net.MalformedURLException;
24  import java.net.URL;
25  
26  public class GatewayAddress {
27      
28      public final String PROTOCOL = "http";
29      private URL url;
30      
31      public GatewayAddress(final String host, final int port) throws MalformedURLException{
32  	this.url = new URL(PROTOCOL, host, port, "/"
33  		+ CommunicatorStarter
34  		.createAlias(null));
35      }
36      
37      public GatewayAddress(final String host, final int port, final String id)
38  	    throws MalformedURLException {
39  	this.url = new URL(PROTOCOL, host, port, "/"
40  		+ CommunicatorStarter
41  		.createAlias(id));
42      }
43  
44      public URL getUrl() {
45  	return url;
46      }
47  
48  }