Package org.apache.wookie.w3c.util

Examples of org.apache.wookie.w3c.util.RandomGUID


      }
      // Unsupported
      if (widget == null) return null;

      // generate a nonce
      RandomGUID r = new RandomGUID();
      String nonce = "nonce-" + r.toString();         //$NON-NLS-1$

      // now use SHA hash on the nonce       
      String hashKey = HashGenerator.getInstance().encrypt(nonce)

      // get rid of any chars that might upset a url...
View Full Code Here


   * @return a String usable as an API key
   * @throws SystemUnavailableException
   */
  public static String generateAPIKey(String email) throws SystemUnavailableException{
    // generate a nonce
    RandomGUID r = new RandomGUID();
    String nonce = "nonce-" + r.toString();        //$NON-NLS-1$

    // now use SHA hash on the nonce       
    String hashKey = HashGenerator.getInstance().encrypt(nonce+email)

    // get rid of any chars that might upset a url...
View Full Code Here

      //is there a default?
      if (defaultIdentifier != null){
        fIdentifier = defaultIdentifier;
      } else {
        //give up & generate one
        RandomGUID r = new RandomGUID();
        fIdentifier = "http://incubator.apache.org/wookie/generated/" + r.toString();
      }
    }
   
    // DEFAULTLOCALE IS OPTIONAL
    defaultLocale = UnicodeUtils.normalizeSpaces(element.getAttributeValue(IW3CXMLConfiguration.DEFAULTLOCALE_ATTRIBUTE));
View Full Code Here

    //
    // Select a filename using a RandomGUID. Its important that flatpack names
    // are not trivial to guess as currently there are no download restrictions.
    //
    String name = new RandomGUID().toString() + ".wgt";

    //
    // Pack up the widget in a Zip
    //
    File outputWidget = new File(flatpackFolder, name);
View Full Code Here

    if (!IRIValidator.isValidIRI(fIdentifier)){
      fIdentifier = null;
    }
    if(fIdentifier == null){
      //give up & generate one
      RandomGUID r = new RandomGUID();
      fIdentifier = "http://incubator.apache.org/wookie/generated/" + r.toString();
    }
    // VERSION IS OPTIONAL   
    fVersion = UnicodeUtils.normalizeSpaces(element.getAttributeValue(IW3CXMLConfiguration.VERSION_ATTRIBUTE));
   
    // HEIGHT IS OPTIONAL 
View Full Code Here

TOP

Related Classes of org.apache.wookie.w3c.util.RandomGUID

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.