@Override
  public void save(Name name, SString string) {
    Path artifactPath = artifactPath(name);
    Path targetPath = targetPath(string);

    smoothFileSystem.delete(artifactPath);
    smoothFileSystem.createLink(artifactPath, targetPath);
  }