com.aliyuncs.clouddesktop.transform.v20170301.DescribeUserActionsResponseUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-clouddesktop Show documentation
Show all versions of aliyun-java-sdk-clouddesktop Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* 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.aliyuncs.clouddesktop.transform.v20170301;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.clouddesktop.model.v20170301.DescribeUserActionsResponse;
import com.aliyuncs.clouddesktop.model.v20170301.DescribeUserActionsResponse.UserActionInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeUserActionsResponseUnmarshaller {
public static DescribeUserActionsResponse unmarshall(DescribeUserActionsResponse describeUserActionsResponse, UnmarshallerContext context) {
describeUserActionsResponse.setRequestId(context.stringValue("DescribeUserActionsResponse.RequestId"));
describeUserActionsResponse.setSuccess(context.booleanValue("DescribeUserActionsResponse.Success"));
describeUserActionsResponse.setErrorCode(context.stringValue("DescribeUserActionsResponse.ErrorCode"));
describeUserActionsResponse.setMessage(context.stringValue("DescribeUserActionsResponse.Message"));
describeUserActionsResponse.setTotal(context.integerValue("DescribeUserActionsResponse.Total"));
describeUserActionsResponse.setPageSize(context.integerValue("DescribeUserActionsResponse.PageSize"));
describeUserActionsResponse.setPageCount(context.integerValue("DescribeUserActionsResponse.PageCount"));
describeUserActionsResponse.setPage(context.integerValue("DescribeUserActionsResponse.Page"));
List userActions = new ArrayList();
for (int i = 0; i < context.lengthValue("DescribeUserActionsResponse.UserActions.Length"); i++) {
UserActionInfo userActionInfo = new UserActionInfo();
userActionInfo.setDesktopName(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].DesktopName"));
userActionInfo.setUserName(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].UserName"));
userActionInfo.setEvent(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].Event"));
userActionInfo.setEventDateTime(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].EventDateTime"));
userActionInfo.setResult(context.booleanValue("DescribeUserActionsResponse.UserActions["+ i +"].Result"));
userActionInfo.setResultDetail(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].ResultDetail"));
userActionInfo.setClientIp(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].ClientIp"));
userActionInfo.setClientType(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].ClientType"));
userActionInfo.setClientVersion(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].ClientVersion"));
userActionInfo.setAgentVersion(context.stringValue("DescribeUserActionsResponse.UserActions["+ i +"].AgentVersion"));
userActions.add(userActionInfo);
}
describeUserActionsResponse.setUserActions(userActions);
return describeUserActionsResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy