Package org.springmodules.javaspaces.entry.support

Source Code of org.springmodules.javaspaces.entry.support.JGUidFactory

/**
*
*/
package org.springmodules.javaspaces.entry.support;

import java.io.Serializable;

import org.springmodules.javaspaces.entry.UidFactory;

import com.activescript.GUID.GUIDException;
import com.activescript.GUID.GUIDGenerator;

/**
* ActiveScript jguid generator.
*
* @author Costin Leau
*
*/
public class JGUidFactory implements UidFactory {

  private GUIDGenerator generator;
 
  /* (non-Javadoc)
   * @see org.springmodules.javaspaces.entry.UidFactory#generateUid()
   */
  public Serializable generateUid() {
    return generator.getUUID();
  }
 
  public JGUidFactory()
  {
    try {
      generator = new GUIDGenerator();
    }
    catch (GUIDException e) {
      throw new RuntimeException(e);
    }
  }

}
TOP

Related Classes of org.springmodules.javaspaces.entry.support.JGUidFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.