com.liferay.document.library.kernel.model.DLFileEntryMetadataSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel 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-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.document.library.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 DLFileEntryMetadataSoap implements Serializable {
public static DLFileEntryMetadataSoap toSoapModel(DLFileEntryMetadata model) {
DLFileEntryMetadataSoap soapModel = new DLFileEntryMetadataSoap();
soapModel.setUuid(model.getUuid());
soapModel.setFileEntryMetadataId(model.getFileEntryMetadataId());
soapModel.setCompanyId(model.getCompanyId());
soapModel.setDDMStorageId(model.getDDMStorageId());
soapModel.setDDMStructureId(model.getDDMStructureId());
soapModel.setFileEntryId(model.getFileEntryId());
soapModel.setFileVersionId(model.getFileVersionId());
return soapModel;
}
public static DLFileEntryMetadataSoap[] toSoapModels(
DLFileEntryMetadata[] models) {
DLFileEntryMetadataSoap[] soapModels = new DLFileEntryMetadataSoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static DLFileEntryMetadataSoap[][] toSoapModels(
DLFileEntryMetadata[][] models) {
DLFileEntryMetadataSoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new DLFileEntryMetadataSoap[models.length][models[0].length];
}
else {
soapModels = new DLFileEntryMetadataSoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static DLFileEntryMetadataSoap[] toSoapModels(
List models) {
List soapModels = new ArrayList(models.size());
for (DLFileEntryMetadata model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new DLFileEntryMetadataSoap[soapModels.size()]);
}
public DLFileEntryMetadataSoap() {
}
public long getPrimaryKey() {
return _fileEntryMetadataId;
}
public void setPrimaryKey(long pk) {
setFileEntryMetadataId(pk);
}
public String getUuid() {
return _uuid;
}
public void setUuid(String uuid) {
_uuid = uuid;
}
public long getFileEntryMetadataId() {
return _fileEntryMetadataId;
}
public void setFileEntryMetadataId(long fileEntryMetadataId) {
_fileEntryMetadataId = fileEntryMetadataId;
}
public long getCompanyId() {
return _companyId;
}
public void setCompanyId(long companyId) {
_companyId = companyId;
}
public long getDDMStorageId() {
return _DDMStorageId;
}
public void setDDMStorageId(long DDMStorageId) {
_DDMStorageId = DDMStorageId;
}
public long getDDMStructureId() {
return _DDMStructureId;
}
public void setDDMStructureId(long DDMStructureId) {
_DDMStructureId = DDMStructureId;
}
public long getFileEntryId() {
return _fileEntryId;
}
public void setFileEntryId(long fileEntryId) {
_fileEntryId = fileEntryId;
}
public long getFileVersionId() {
return _fileVersionId;
}
public void setFileVersionId(long fileVersionId) {
_fileVersionId = fileVersionId;
}
private String _uuid;
private long _fileEntryMetadataId;
private long _companyId;
private long _DDMStorageId;
private long _DDMStructureId;
private long _fileEntryId;
private long _fileVersionId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy