Package com.dbxml.labrador

Examples of com.dbxml.labrador.ID


    *
    * @param obj The Object to register
    * @return A unique ID
    */
   public static ID register(Object obj) {
      ID id = new ID();
      return register(id, obj);
   }
View Full Code Here


   }
  
   public static final String[] PARAMS_describe = {"name", "type"};
  
   public String describe(String name, String type) throws RequestException, IOException {
      ID id = new ID(name);

      String key = type + ":" + id;
      String result;

      synchronized ( cacheMutex ) {
View Full Code Here

   public static void main(String[] args) {
      HTTPServer server = new HTTPServer();
      server.setDaemon(false);
      server.start();

      new FileServer(new ID("FileServer"));
   }
View Full Code Here

TOP

Related Classes of com.dbxml.labrador.ID

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.