io.resys.thena.docdb.api.exceptions.RepoException Maven / Gradle / Ivy
The newest version!
package io.resys.thena.docdb.api.exceptions;
import java.util.List;
/*-
* #%L
* thena-docdb-api
* %%
* Copyright (C) 2021 Copyright 2021 ReSys OÜ
* %%
* 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.
* #L%
*/
import io.resys.thena.docdb.api.models.ImmutableMessage;
import io.resys.thena.docdb.api.models.Message;
public class RepoException extends DocDBException {
private static final long serialVersionUID = 4311634600357697485L;
public RepoException(String msg) {
super(msg);
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
public Message notRepoWithName(String repoId) {
return ImmutableMessage.builder()
.text(new StringBuilder()
.append("Repo with name: '").append(repoId).append("' does not exist!")
.toString())
.build();
}
public Message noRepoRef(String repo, String ref) {
return ImmutableMessage.builder()
.text(new StringBuilder()
.append("Repo with name: '").append(repo).append("',")
.append(" has no ref: '").append(ref).append("'")
.append("!")
.toString())
.build();
}
public Message noRepoRef(String repo, String ref, List allRefs) {
return ImmutableMessage.builder()
.text(new StringBuilder()
.append("Repo with name: '").append(repo).append("',")
.append(" has no ref: '").append(ref).append("'")
.append(" known refs: '").append(String.join(",", allRefs)).append("'")
.append("!")
.toString())
.build();
}
public Message nameNotUnique(String name, String id) {
return ImmutableMessage.builder()
.text(new StringBuilder()
.append("Repo with name: '").append(name).append("' already exists,")
.append(" id: '").append(id).append("'")
.append("!")
.toString())
.build();
}
public String updateConflict(String id, String dbRev, String userRev, String name) {
return new StringBuilder()
.append("Repo with")
.append(" id: '").append(id).append("'")
.append(" name: '").append(name).append("'")
.append(" can't be updated")
.append(" because of revision conflict")
.append(" '").append(dbRev).append("' (db) != (user) '").append(userRev).append("'")
.append("!")
.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy