All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface mct.users.VMCProvisioningProcedures

public interface VMCProvisioningProcedures
This is another service of the VirtualManagedComponent for provisioning.


Method Index

 o discover()
This method should be called by the daemon at the first start up to locate the location of the servers (CommunicationServer, SecurityServer, etc.).
 o getServerAddresses()
As a result of discovery, the server addresses are resolved.
 o getSysDesc()
It returns the description of the device.
 o getSysID()
It returns the System ID of the network component.
 o getSysName()
It returns the name of the device.
 o getSysType()
It returns the type of the device.
 o register()
This method should be called by the daemon at the first start up to register the network component to associated servers whose locations are found by method discover().

Methods

 o getSysID
 public abstract String getSysID()
It returns the System ID of the network component. This id is unique and no two IDs are identical. The id is typically serial number of the device.

 o getSysDesc
 public abstract String getSysDesc()
It returns the description of the device.

 o getSysName
 public abstract String getSysName()
It returns the name of the device.

 o getSysType
 public abstract String getSysType()
It returns the type of the device.

 o getServerAddresses
 public abstract Object getServerAddresses()
As a result of discovery, the server addresses are resolved.

 o discover
 public abstract void discover()
This method should be called by the daemon at the first start up to locate the location of the servers (CommunicationServer, SecurityServer, etc.). As soon as the the locations of servers found, the method register() is called to register to associated servers notifying that a new network component is introduced in the network. The discovery can be by using broadcast facility of TCP/IP or by releases provisioning mobile code to the network. The former, I thinks, is much more desireable, and reliable solution.

 o register
 public abstract void register()
This method should be called by the daemon at the first start up to register the network component to associated servers whose locations are found by method discover(). The registering can be by opening socket or releases provisioning mobile code to the network.

See Also:
MCDDirectory

All Packages  Class Hierarchy  This Package  Previous  Next  Index