1 
2 package com.example.android.wifidirect.discovery;
3 
4 import android.net.wifi.p2p.WifiP2pDevice;
5 
6 /**
7  * A structure to hold service information.
8  */
9 public class WiFiP2pService {
10     WifiP2pDevice device;
11     String instanceName = null;
12     String serviceRegistrationType = null;
13 }
14