/**
* Copyright (c) 2000-present 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.kernel.model;
import aQute.bnd.annotation.ProviderType;
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
*/
@ProviderType
public class ServiceComponentSoap implements Serializable {
public static ServiceComponentSoap toSoapModel(ServiceComponent model) {
ServiceComponentSoap soapModel = new ServiceComponentSoap();
soapModel.setMvccVersion(model.getMvccVersion());
soapModel.setServiceComponentId(model.getServiceComponentId());
soapModel.setBuildNamespace(model.getBuildNamespace());
soapModel.setBuildNumber(model.getBuildNumber());
soapModel.setBuildDate(model.getBuildDate());
soapModel.setData(model.getData());
return soapModel;
}
public static ServiceComponentSoap[] toSoapModels(ServiceComponent[] models) {
ServiceComponentSoap[] soapModels = new ServiceComponentSoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static ServiceComponentSoap[][] toSoapModels(
ServiceComponent[][] models) {
ServiceComponentSoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new ServiceComponentSoap[models.length][models[0].length];
}
else {
soapModels = new ServiceComponentSoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static ServiceComponentSoap[] toSoapModels(
List<ServiceComponent> models) {
List<ServiceComponentSoap> soapModels = new ArrayList<ServiceComponentSoap>(models.size());
for (ServiceComponent model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new ServiceComponentSoap[soapModels.size()]);
}
public ServiceComponentSoap() {
}
public long getPrimaryKey() {
return _serviceComponentId;
}
public void setPrimaryKey(long pk) {
setServiceComponentId(pk);
}
public long getMvccVersion() {
return _mvccVersion;
}
public void setMvccVersion(long mvccVersion) {
_mvccVersion = mvccVersion;
}
public long getServiceComponentId() {
return _serviceComponentId;
}
public void setServiceComponentId(long serviceComponentId) {
_serviceComponentId = serviceComponentId;
}
public String getBuildNamespace() {
return _buildNamespace;
}
public void setBuildNamespace(String buildNamespace) {
_buildNamespace = buildNamespace;
}
public long getBuildNumber() {
return _buildNumber;
}
public void setBuildNumber(long buildNumber) {
_buildNumber = buildNumber;
}
public long getBuildDate() {
return _buildDate;
}
public void setBuildDate(long buildDate) {
_buildDate = buildDate;
}
public String getData() {
return _data;
}
public void setData(String data) {
_data = data;
}
private long _mvccVersion;
private long _serviceComponentId;
private String _buildNamespace;
private long _buildNumber;
private long _buildDate;
private String _data;
}