org.apache.maven.scm.provider.bazaar.command
Interface BazaarCommand

All Superinterfaces:
Command
All Known Implementing Classes:
BazaarAddCommand, BazaarChangeLogCommand, BazaarCheckOutCommand, BazaarDiffCommand, BazaarRemoveCommand, BazaarStatusCommand, BazaarUpdateCommand

public interface BazaarCommand
extends Command

Available/Used bazaar commands.

These commands does not necessarily correspond to the SCM API. Eg. "check in" is translated to be "commit" and "push".

Author:
Torbj?rn Eikli Sm?rgrav

Field Summary
static String ADD_CMD
          Default recursive.
static String BRANCH_CMD
          Create a new copy of a branch.
static String CHECK
           
static String COMMIT_CMD
          Commit changes into a new revision
static String DIFF_CMD
          Show differences in workingtree.
static String EXEC
          Executable for Bazaar
static String INIT_CMD
          Use to create an empty branch or before importing an existing project
static String INVENTORY_CMD
          Show inventory of the current working copy or a revision
static String LOG_CMD
          Show log of this branch Common option: --revision
static String MESSAGE_OPTION
           
static String NO_RECURSE_OPTION
           
static String PULL_CMD
          Pull any changes from another branch into the current one
static String PUSH_CMD
          Push this branch into another branch
static String REMOVE_CMD
          Make a file unversioned
static String REVISION_OPTION
           
static String REVNO_CMD
          Show current revision number
static String STATUS_CMD
          Reports the following states: added, removed, modified, unchanged, unknown
static String VERBOSE_OPTION
           
static String VERSION
           
 
Fields inherited from interface org.apache.maven.scm.command.Command
ROLE
 
Method Summary
 
Methods inherited from interface org.apache.maven.scm.command.Command
execute, getLogger, setLogger
 

Field Detail

EXEC

static final String EXEC
Executable for Bazaar

See Also:
Constant Field Values

INIT_CMD

static final String INIT_CMD
Use to create an empty branch or before importing an existing project

See Also:
Constant Field Values

ADD_CMD

static final String ADD_CMD
Default recursive. Common option: --dry-run and --no-recursive

See Also:
Constant Field Values

STATUS_CMD

static final String STATUS_CMD
Reports the following states: added, removed, modified, unchanged, unknown

See Also:
Constant Field Values

REMOVE_CMD

static final String REMOVE_CMD
Make a file unversioned

See Also:
Constant Field Values

BRANCH_CMD

static final String BRANCH_CMD
Create a new copy of a branch. Alias get or clone

See Also:
Constant Field Values

COMMIT_CMD

static final String COMMIT_CMD
Commit changes into a new revision

See Also:
Constant Field Values

PULL_CMD

static final String PULL_CMD
Pull any changes from another branch into the current one

See Also:
Constant Field Values

LOG_CMD

static final String LOG_CMD
Show log of this branch Common option: --revision

See Also:
Constant Field Values

DIFF_CMD

static final String DIFF_CMD
Show differences in workingtree. Common option: --revision

See Also:
Constant Field Values

PUSH_CMD

static final String PUSH_CMD
Push this branch into another branch

See Also:
Constant Field Values

REVNO_CMD

static final String REVNO_CMD
Show current revision number

See Also:
Constant Field Values

INVENTORY_CMD

static final String INVENTORY_CMD
Show inventory of the current working copy or a revision

See Also:
Constant Field Values

NO_RECURSE_OPTION

static final String NO_RECURSE_OPTION
See Also:
Constant Field Values

MESSAGE_OPTION

static final String MESSAGE_OPTION
See Also:
Constant Field Values

REVISION_OPTION

static final String REVISION_OPTION
See Also:
Constant Field Values

VERBOSE_OPTION

static final String VERBOSE_OPTION
See Also:
Constant Field Values

VERSION

static final String VERSION
See Also:
Constant Field Values

CHECK

static final String CHECK
See Also:
Constant Field Values


Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.