-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathConstants.java
More file actions
25 lines (23 loc) · 1.13 KB
/
Copy pathConstants.java
File metadata and controls
25 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jens Reimann - initial API and implementation
*******************************************************************************/
package de.dentrassi.ece2017.milo;
public final class Constants {
private Constants() {
}
// public static final String HOST = "apollo.muc.redhat.com";
public static final String HOST = "localhost";
// public static final String HOST = "[fe80::2c82:aeff:fe0b:ac2%enp0s31f6]";
// public static final String HOST = "[fe80::458b:2d95:d98a:7ffc%enp0s31f6]";
// public static final String HOST = "[fe80::9289:e377:bacb:f608%enp0s31f6]";
// public static final String HOST = System.getProperty("host",
// "jreimann-up2-1.muc.redhat.com");
public static final int PORT = Integer.getInteger("port", 4840);
}