Examples of SvnProject


Examples of org.codeandmagic.affected.svn.SvnProject

  }

  @Transactional(readOnly = false)
  public SvnProject create(String name, String url, long lastCheckedVersion)
      throws SvnException {
    SvnProject proj = new SvnProject();
    proj.setName(name);
    proj.setUrl(url);
    proj.setLastCheckedVersion(lastCheckedVersion);
    save(proj);
    return proj;
  }
View Full Code Here
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.