com.sap.ip.me.api.pios.rfid
Class RfidParameters

java.lang.Object
  extended bycom.sap.ip.me.api.pios.connection.ConnectionParameters
      extended bycom.sap.ip.me.api.pios.rfid.RfidParameters

public class RfidParameters
extends ConnectionParameters

This class represents the RFID parameters required to open an RFID connection. Use the RfidParameters class instance as a parameter to the open method of the Connector to create an RFID connection.

Example: Set RFID parameters and open an RFID connection.
 
 
 	Connector connector = Connector.getInstance();
 			
 	DriverInfo[] rfidDrivers = connector.listDrivers(ConnectionType.RFID);
 			
 	RfidParameters rfidParams = new RfidParameters(rfidDrivers[0]);
 			
 	RfidConnection rfidConnection = (RfidConnection)connector.open(rfidParams); 

 
 

Since:
MI 2.5
Author:
Abaco
See Also:
ConnectionParameters, DriverInfo, Enumeration, RfidConnection

Constructor Summary
RfidParameters(DriverInfo info)
          Creates a new RfidParameters object given the driver info.
 
Methods inherited from class com.sap.ip.me.api.pios.connection.ConnectionParameters
getConnection, getDriver
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RfidParameters

public RfidParameters(DriverInfo info)
Creates a new RfidParameters object given the driver info.

Parameters:
info - the driver information object
See Also:
DriverInfo


Copyright © 2005 SAP AG. All Rights Reserved.