OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package org.chromium.chromoting; |
| 6 |
| 7 /** Class to represent a Host returned by {@link HostListLoader}. */ |
| 8 public class HostInfo { |
| 9 public final String name; |
| 10 public final String id; |
| 11 public final String jabberId; |
| 12 public final String publicKey; |
| 13 public final boolean isOnline; |
| 14 |
| 15 public HostInfo(String name, String id, String jabberId, String publicKey, b
oolean isOnline) { |
| 16 this.name = name; |
| 17 this.id = id; |
| 18 this.jabberId = jabberId; |
| 19 this.publicKey = publicKey; |
| 20 this.isOnline = isOnline; |
| 21 } |
| 22 } |
OLD | NEW |