本文整理了Java中net.nemerosa.ontrack.model.structure.Branch.withId()
方法的一些代码示例,展示了Branch.withId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Branch.withId()
方法的具体详情如下:
包路径:net.nemerosa.ontrack.model.structure.Branch
类名称:Branch
方法名:withId
暂无
代码示例来源:origin: net.nemerosa.ontrack/ontrack-model
public Branch update(NameDescriptionState form) {
return of(project, form).withId(id).withDisabled(form.isDisabled());
}
}
代码示例来源:origin: net.nemerosa.ontrack/ontrack-repository-impl
protected Branch toBranch(ResultSet rs, Function<ID, Project> projectSupplier) throws SQLException {
ID projectId = id(rs, "projectId");
ID branchId = id(rs);
return Branch.of(
projectSupplier.apply(projectId),
new NameDescription(
rs.getString("name"),
rs.getString("description")
)
)
.withId(branchId)
.withSignature(readSignature(rs))
.withType(getBranchType(branchId))
.withDisabled(rs.getBoolean("disabled"));
}
代码示例来源:origin: net.nemerosa.ontrack/ontrack-repository-impl
@Override
public Branch newBranch(Branch branch) {
// Creation
try {
int id = dbCreate(
"INSERT INTO BRANCHES(PROJECTID, NAME, DESCRIPTION, DISABLED, CREATION, CREATOR) VALUES (:projectId, :name, :description, :disabled, :creation, :creator)",
params("name", branch.getName())
.addValue("description", branch.getDescription())
.addValue("disabled", branch.isDisabled())
.addValue("projectId", branch.getProject().id())
.addValue("creation", dateTimeForDB(branch.getSignature().getTime()))
.addValue("creator", branch.getSignature().getUser().getName())
);
// Returns with ID
return branch.withId(id(id));
} catch (DuplicateKeyException ex) {
throw new BranchNameAlreadyDefinedException(branch.getName());
}
}
内容来源于网络,如有侵权,请联系作者删除!