com.liferay.portal.model.UserIdMapperSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* This class is used by SOAP remote services.
*
* @author Brian Wing Shun Chan
* @generated
*/
public class UserIdMapperSoap implements Serializable {
public static UserIdMapperSoap toSoapModel(UserIdMapper model) {
UserIdMapperSoap soapModel = new UserIdMapperSoap();
soapModel.setUserIdMapperId(model.getUserIdMapperId());
soapModel.setUserId(model.getUserId());
soapModel.setType(model.getType());
soapModel.setDescription(model.getDescription());
soapModel.setExternalUserId(model.getExternalUserId());
return soapModel;
}
public static UserIdMapperSoap[] toSoapModels(UserIdMapper[] models) {
UserIdMapperSoap[] soapModels = new UserIdMapperSoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static UserIdMapperSoap[][] toSoapModels(UserIdMapper[][] models) {
UserIdMapperSoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new UserIdMapperSoap[models.length][models[0].length];
}
else {
soapModels = new UserIdMapperSoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static UserIdMapperSoap[] toSoapModels(List models) {
List soapModels = new ArrayList(models.size());
for (UserIdMapper model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new UserIdMapperSoap[soapModels.size()]);
}
public UserIdMapperSoap() {
}
public long getPrimaryKey() {
return _userIdMapperId;
}
public void setPrimaryKey(long pk) {
setUserIdMapperId(pk);
}
public long getUserIdMapperId() {
return _userIdMapperId;
}
public void setUserIdMapperId(long userIdMapperId) {
_userIdMapperId = userIdMapperId;
}
public long getUserId() {
return _userId;
}
public void setUserId(long userId) {
_userId = userId;
}
public String getType() {
return _type;
}
public void setType(String type) {
_type = type;
}
public String getDescription() {
return _description;
}
public void setDescription(String description) {
_description = description;
}
public String getExternalUserId() {
return _externalUserId;
}
public void setExternalUserId(String externalUserId) {
_externalUserId = externalUserId;
}
private long _userIdMapperId;
private long _userId;
private String _type;
private String _description;
private String _externalUserId;
}