Package org.jboss.util.id

Examples of org.jboss.util.id.UID


/*     */   }
/*     */
/*     */   public Object createId(StatefulSessionEnterpriseContext ctx)
/*     */     throws Exception
/*     */   {
/* 287 */     return new UID();
/*     */   }
View Full Code Here


/*     */
/* 177 */     File dir = ServerConfigLocator.locate().getServerTempDir();
/*     */
/* 180 */     dir = new File(dir, this.storeDirName);
/*     */
/* 182 */     dir = new File(dir, ejbName + "-" + new UID().toString());
/* 183 */     this.storeDir = dir;
/*     */
/* 185 */     if (debug)
/*     */     {
/* 187 */       log.debug("Storing sessions for '" + ejbName + "' in: " + this.storeDir);
View Full Code Here

      // jason: could probably use org.jboss.util.collection.CompoundKey here
      //        for better uniqueness based on hashCode and such...
      //
      // return new CompoundKey(this.localNodeName, new UID());
      //
      return this.localNodeName + ":" + new UID();
   }
View Full Code Here

TOP

Related Classes of org.jboss.util.id.UID

Copyright © 2018 www.massapicom. 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.