FileDocCategorySizeDatePackage
UUIDGenFactory.javaAPI DocApache Axis 1.41970Sat Apr 22 18:57:26 BST 2006org.apache.axis.components.uuid

UUIDGenFactory

public abstract class UUIDGenFactory extends Object
A Universally Unique Identifier (UUID) is a 128 bit number generated according to an algorithm that is garanteed to be unique in time and space from all other UUIDs. It consists of an IEEE 802 Internet Address and various time stamps to ensure uniqueness. For a complete specification, see ftp://ietf.org/internet-drafts/draft-leach-uuids-guids-01.txt [leach].
author
Steve Viens
version
1.0 11/7/2000
since
JDK1.2.2

Fields Summary
protected static Log
log
Constructors Summary
Methods Summary
public static UUIDGengetUUIDGen()
Returns an instance of UUIDGen


     
        AxisProperties.setClassOverrideProperty(UUIDGen.class, "axis.UUIDGenerator");
        AxisProperties.setClassDefault(UUIDGen.class, "org.apache.axis.components.uuid.FastUUIDGen");
    
        UUIDGen uuidgen = (UUIDGen) AxisProperties.newInstance(UUIDGen.class);
        log.debug("axis.UUIDGenerator:" + uuidgen.getClass().getName());
        return uuidgen;