Package net.alteiar.newversion.server.document

Examples of net.alteiar.newversion.server.document.DocumentLocal


      } else {
        // try to find it globaly
        bean = searchBean(getGlobalPath(), id);
        if (bean != null) {
          // add to document in order to avoid search agains
          addDocument(new DocumentLocal(bean));
        }
      }
      doc = getDocument(id, timeout);
    }
View Full Code Here


      }
    }
  }

  public void saveGlobalBean(BasicBean bean) throws Exception {
    DocumentLocal doc = new DocumentLocal(bean);
    doc.save(getGlobalPath());
  }
View Full Code Here

TOP

Related Classes of net.alteiar.newversion.server.document.DocumentLocal

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.