- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将用户添加到项目中用户 abcd@web.com 拥有 workSpace1 的用户权限项目 1 存在于工作空间 1 中现在通过 Java 代码 - 我需要向用户授予 Project1 的编辑权限
我有以下代码 - 没有错误 - 但没有更新
//fetch project as JSonObject
JsonObject prjObj = new Example1().fetchPrjDetails("../project/12399939580.js", restApi);
//get Editors as JSonArray
JsonArray editorsList = prjObj.get("Editors").getAsJsonArray();
//Create new JSonObject with new user information
JsonObject newUser = new JsonObject();
newUser.addProperty("_rallyAPIMajor", "1");
newUser.addProperty("_rallyAPIMinor", "37");
newUser.addProperty("_ref", "../user/12418060172.js");
newUser.addProperty("_refObjectName", "venu");
newUser.addProperty("_type", "User");
//add this new JSonObject to Editors Array
editorsList.add(newUser);
//remove the existing editors
prjObj.remove("Editors");
//i dont know whether i need the above line
//add editors to
prjObj.add("Editors", editorsList);
UpdateRequest uRequest = new UpdateRequest("..project/12399939580.js", prjObj);
UpdateResponse uResponse = restApi.update(uRequest);
if (uResponse.wasSuccessful()) {
System.out.println("update success");
}
最佳答案
项目上的编辑器集合是只读的。在 Rally 的 Web 服务 API 中,Rally 用户的用户权限在用户对象的 UserPermissions 集合下进行管理。您可以通过为用户创建新的 ProjectPermission 将用户作为编辑者添加到项目中。以下示例说明如何为现有 Rally 用户创建编辑器级别的 ProjectPermission,以及如何更新用户的 TeamMemberships 集合,以便他或她也是该项目中的团队成员。
public class RestExample_AddExistingUserToProject {
public static void main(String[] args) throws URISyntaxException, IOException {
// Create and configure a new instance of RallyRestApi
// Connection parameters
String rallyURL = "https://rally1.rallydev.com";
String wsapiVersion = "1.43";
String applicationName = "RestExample_AddExistingUserToProject";
// Integration Credentials
// Must be a Rally Subscription Administrator, or a Workspace Administrator
// in a Rally Workspace whose Workspace Admins have been granted user administration
// privileges
String myUserName = "subadmin@company.com";
String myUserPassword = "topsecret";
RallyRestApi restApi = new RallyRestApi(
new URI(rallyURL),
myUserName,
myUserPassword);
restApi.setWsapiVersion(wsapiVersion);
restApi.setApplicationName(applicationName);
// Workspace and Project Settings
String myWorkspace = "Middle Earth";
String myProject = "Mirkwood";
// Rally UserID and meta-data for whom we wish to add a new Project Permission
String rallyUserId = "tauriel@midearth.com";
// Workspace Permission Strings
final String WORKSPACE_ADMIN = "Admin";
final String WORKSPACE_USER = "User";
final String PROJECT_EDITOR = "Editor";
final String PROJECT_VIEWER = "Viewer";
//Read User
QueryRequest userRequest = new QueryRequest("User");
userRequest.setFetch(new Fetch(
"UserName",
"FirstName",
"LastName",
"DisplayName",
"UserPermissions",
"Name",
"Role",
"Workspace",
"ObjectID",
"Project",
"ObjectID",
"TeamMemberships")
);
userRequest.setQueryFilter(new QueryFilter("UserName", "=", rallyUserId));
QueryResponse userQueryResponse = restApi.query(userRequest);
JsonObject userObject = userQueryResponse.getResults().get(0).getAsJsonObject();
String userRef = userObject.get("_ref").toString();
System.out.println("Found User with Ref: " + userRef);
// Now add an additional Project Permission to the found User
// Get reference to Workspace in which Project for Permission Grant Resides
QueryRequest workspaceRequest = new QueryRequest("Workspace");
workspaceRequest.setFetch(new Fetch("Name", "Owner", "Projects"));
workspaceRequest.setQueryFilter(new QueryFilter("Name", "=", myWorkspace));
QueryResponse workspaceQueryResponse = restApi.query(workspaceRequest);
String workspaceRef = workspaceQueryResponse.getResults().get(0).getAsJsonObject().get("_ref").toString();
// Get reference to Project for this Permission Grant
QueryRequest projectRequest = new QueryRequest("Project");
projectRequest.setFetch(new Fetch("Name", "Owner", "Projects"));
projectRequest.setQueryFilter(new QueryFilter("Name", "=", myProject));
QueryResponse projectQueryResponse = restApi.query(projectRequest);
JsonObject projectObj = projectQueryResponse.getResults().get(0).getAsJsonObject();
String projectRef = projectObj.get("_ref").toString();
// Create the new ProjectPermission for the User
JsonObject newProjectPermission = new JsonObject();
newProjectPermission.addProperty("Workspace", workspaceRef);
newProjectPermission.addProperty("Project", projectRef);
newProjectPermission.addProperty("User", userRef);
newProjectPermission.addProperty("Role", PROJECT_EDITOR);
CreateRequest createProjectPermissionRequest = new CreateRequest("projectpermission", newProjectPermission);
System.out.println(createProjectPermissionRequest.getBody());
CreateResponse createProjectPermissionResponse = restApi.create(createProjectPermissionRequest);
if (createProjectPermissionResponse.wasSuccessful()) {
System.out.println(String.format("Create Project Permission Successful? %s", createProjectPermissionResponse.wasSuccessful()));
System.out.println(String.format("Added %s Access to Project %s", PROJECT_EDITOR, myProject));
System.out.println(String.format("For user %s", rallyUserId));
} else {
String[] createErrors;
createErrors = createProjectPermissionResponse.getErrors();
System.out.println("Error occurred creating User Project Permissions: ");
for (int i=0; i<createErrors.length;i++) {
System.out.println(createErrors[i]);
}
}
// Also Make this User a Team Member for Project of interest.
// Get this User's Existing Team Memberships
JsonArray existTeamMemberships = (JsonArray) userQueryResponse.getResults().get(0).getAsJsonObject().get("TeamMemberships");
// Add this Project to User's Team Membership collection
existTeamMemberships.add(projectObj);
// Setup update fields/values for Team Membership
JsonObject updateUserTeamMembershipObj = new JsonObject();
updateUserTeamMembershipObj.add("TeamMemberships", existTeamMemberships);
// Issue UpdateRequest for Team Membership
System.out.println("\nUpdating User's Team Membership...");
UpdateRequest updateTeamMembershipsRequest = new UpdateRequest(userRef, updateUserTeamMembershipObj);
UpdateResponse updateTeamMembershipResponse = restApi.update(updateTeamMembershipsRequest);
if (updateTeamMembershipResponse.wasSuccessful()) {
System.out.println("Updated User to be Team Member in Project: " + myProject);
} else {
String[] updateTeamMembershipErrors;
updateTeamMembershipErrors = updateTeamMembershipResponse.getErrors();
System.out.println("Error occurred updating Team Membership: ");
for (int i=0; i<updateTeamMembershipErrors.length;i++) {
System.out.println(updateTeamMembershipErrors[i]);
}
}
restApi.close();
}
}
关于Java拉力赛休息API : How to add new user to the Project,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17640566/
假设我有两个集合资源: /persons /organizations 一个 GET至 /persons/id/返回一个特定的人。同样,一个 GET至 /organizations/id返回一个特定的
这个问题在这里已经有了答案: Rest best practice: when to return 404 not found (1 个回答) 关闭 7 年前。 我有以下 API: api/gues
背景: 我正在尝试创建一个系统,允许用户对其他用户撰写的评论进行投票(类似于 Reddit)。用户可以选择三个投票值:-1、0 或 1。我创建了一个 POST API(使用 django Rest-f
我正在尝试使用休息调用,该调用获取操作系统中文件的位置。作为返回,其余调用模拟文件的下载。 下面是代码 Welcome to CoinPay Click on bel
我正在向后端发送一个文件,这是上传代码: export class FileUploadComponent { @Input() multiple: boolean = false; @Vie
字符串用户年龄; while(true){ System.out.println("Enter user Age"); userAge = scInput.ne
我正在使用堆栈进行括号检查。包含 break; 语句的 if else 语句之一导致段错误。 我尝试删除 break 程序运行正常但打印错误答案,因为需要 break 才能打印正确的输出。这种段错误的
我是新手,正在学习编程,但无法正确“中断”它。如果硬币不是 0、5、10 或 25,它应该“打破”(最后一个 if)。该程序应该像自动售货机一样工作,只使用 10 美分、5 分硬币、25 美分硬币,当
每次“打破”for-each 结构(PHP/Javascript)时,我都觉得很脏 所以像这样: //Javascript 示例 for (object in objectList) { if
对于这段代码: type Callback = (err: Error | null, result: String) => void; let apiThatAcceptsCallback = (c
如何获取 teamcity build 的变化?我得到以下 URL,其中列出了所有构建更改并提供了一个 URL,我们可以使用该 URL 查看更改 http://teamcityserver/httpA
社区 我正在寻找有关富文本的一些建议。目前的问题是:在后端(在数据库中)存储和管理富文本内容的最佳方式是什么。为什么这看起来像个问题,因为我们可以有多个平台:桌面、移动、网络,这会带来问题。 据我所知
我在向 html 返回错误时遇到问题。所以,我有带有“sql解释器”的网络应用程序。 HTML 在解释器中输入查询后,我在 javascript 中运行 POST 并拍摄到 sprin
我正在尝试为 Rest Controller 进行单元测试。我为经理对数据库访问做了一个 stub (~mock),它运行良好。我唯一的问题是,当我开始单元测试时,它不会启动应用程序。 如何从我的单元
我想使用 azure blob Rest api 创建文件夹,并且还想检查文件夹是否存在。 Hierarchy: arjun/images/ arjun/Videos/001.avi arjun/Vi
我正在寻找使用 django Rest 和 Angular 处理用户登录的最佳方法。目前我正在 Controller 中执行此操作, $http.post('accounts/login/', $sc
我想设计一个允许客户端上传图像的 API,然后应用程序创建图像的不同变体,例如调整大小或更改图像格式,最后应用程序将每个变体的图像信息存储在数据库中。当我尝试确定实现此任务的正确策略时出现问题,这里有
我无法使用 Angular Ajax 连接我的服务器 web2py Restful,但如果我在浏览器中设置 url,它就可以工作,但我不能在 Angular ajax =( Angular 链接
我想在我的项目中添加一个 rest api,因此我需要一个选择性的 mysql 语句 bt 我总是回来 { “错误”:“(1054,你\“'where子句'中的未知列'无'\”)” 代码有什么问题?我
我想为自己创建一个启动/停止 Azure VM 机器人。我想做的是拥有一个 slack/telegram 机器人,它可以监听消息并通过命令/start/stop 启动/停止我的虚拟机。我应该使用什么
我是一名优秀的程序员,十分优秀!