blob: 5ea1b1e35575d84fa98e4030762e9c86b6b1e214 [file] [log] [blame]
// Copyright (C) 2011 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.entities;
import java.util.Objects;
/**
* Defining a project/branch subscription to a project/branch project.
*
* <p>This means a class instance represents a repo/branch subscription to a project/branch (the
* subscriber).
*
* <p>A subscriber operates a submodule in defined path.
*/
public final class SubmoduleSubscription {
protected BranchNameKey superProject;
protected String submodulePath;
protected BranchNameKey submodule;
public SubmoduleSubscription(BranchNameKey superProject, BranchNameKey submodule, String path) {
this.superProject = superProject;
this.submodule = submodule;
this.submodulePath = path;
}
/**
* Indicates the super project, aka subscriber: the project owner of the gitlinks to the
* submodules.
*/
public BranchNameKey getSuperProject() {
return superProject;
}
public String getPath() {
return submodulePath;
}
public BranchNameKey getSubmodule() {
return submodule;
}
@Override
public boolean equals(Object o) {
if (o instanceof SubmoduleSubscription) {
SubmoduleSubscription s = (SubmoduleSubscription) o;
return superProject.equals(s.superProject)
&& submodulePath.equals(s.submodulePath)
&& submodule.equals(s.submodule);
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(superProject, submodulePath, submodule);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getSuperProject()).append(':').append(getPath());
sb.append(" follows ");
sb.append(getSubmodule());
return sb.toString();
}
}