James Moger
2015-11-19 e41e8f8c3bc9f5edab1d271464364f95620ece8c
src/main/java/com/gitblit/models/FederationModel.java
@@ -30,7 +30,7 @@
 * Gitblit instance to pull the repositories and configuration from another
 * Gitblit instance. This is a backup operation and can be considered something
 * like svn-sync.
 *
 *
 */
public class FederationModel implements Serializable, Comparable<FederationModel> {
@@ -45,7 +45,7 @@
   public String frequency;
   public String folder;
   public boolean bare;
    public boolean mirror;
@@ -68,7 +68,7 @@
   /**
    * The constructor for a remote server configuration.
    *
    *
    * @param serverName
    */
   public FederationModel(String serverName) {
@@ -109,7 +109,7 @@
   /**
    * Updates the pull status of a particular repository in this federation
    * registration.
    *
    *
    * @param repository
    * @param status
    */
@@ -133,7 +133,7 @@
   /**
    * Iterates over the current pull results and returns the lowest pull
    * status.
    *
    *
    * @return the lowest pull status of the registration
    */
   public FederationPullStatus getLowestStatus() {
@@ -152,7 +152,7 @@
   /**
    * Returns true if this registration represents the result data sent by a
    * pulling Gitblit instance.
    *
    *
    * @return true, if this is result data
    */
   public boolean isResultData() {
@@ -181,7 +181,7 @@
   /**
    * Class that encapsulates a point-in-time pull result.
    *
    *
    */
   public static class RepositoryStatus implements Serializable, Comparable<RepositoryStatus> {