View Javadoc
1   package org.argeo.cli.jcr;
2   
3   import org.argeo.cli.CommandsCli;
4   
5   /** File utilities. */
6   public class JcrCommands extends CommandsCli {
7   
8   	public JcrCommands(String commandName) {
9   		super(commandName);
10  		addCommand("sync", new JcrSync());
11  	}
12  
13  	@Override
14  	public String getDescription() {
15  		return "Utilities around remote and local JCR repositories";
16  	}
17  
18  }