001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.wiki.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import java.io.Serializable;
020    
021    import java.util.ArrayList;
022    import java.util.List;
023    
024    /**
025     * This class is used by SOAP remote services.
026     *
027     * @author Brian Wing Shun Chan
028     * @generated
029     */
030    @ProviderType
031    public class WikiPageResourceSoap implements Serializable {
032            public static WikiPageResourceSoap toSoapModel(WikiPageResource model) {
033                    WikiPageResourceSoap soapModel = new WikiPageResourceSoap();
034    
035                    soapModel.setUuid(model.getUuid());
036                    soapModel.setResourcePrimKey(model.getResourcePrimKey());
037                    soapModel.setNodeId(model.getNodeId());
038                    soapModel.setTitle(model.getTitle());
039    
040                    return soapModel;
041            }
042    
043            public static WikiPageResourceSoap[] toSoapModels(WikiPageResource[] models) {
044                    WikiPageResourceSoap[] soapModels = new WikiPageResourceSoap[models.length];
045    
046                    for (int i = 0; i < models.length; i++) {
047                            soapModels[i] = toSoapModel(models[i]);
048                    }
049    
050                    return soapModels;
051            }
052    
053            public static WikiPageResourceSoap[][] toSoapModels(
054                    WikiPageResource[][] models) {
055                    WikiPageResourceSoap[][] soapModels = null;
056    
057                    if (models.length > 0) {
058                            soapModels = new WikiPageResourceSoap[models.length][models[0].length];
059                    }
060                    else {
061                            soapModels = new WikiPageResourceSoap[0][0];
062                    }
063    
064                    for (int i = 0; i < models.length; i++) {
065                            soapModels[i] = toSoapModels(models[i]);
066                    }
067    
068                    return soapModels;
069            }
070    
071            public static WikiPageResourceSoap[] toSoapModels(
072                    List<WikiPageResource> models) {
073                    List<WikiPageResourceSoap> soapModels = new ArrayList<WikiPageResourceSoap>(models.size());
074    
075                    for (WikiPageResource model : models) {
076                            soapModels.add(toSoapModel(model));
077                    }
078    
079                    return soapModels.toArray(new WikiPageResourceSoap[soapModels.size()]);
080            }
081    
082            public WikiPageResourceSoap() {
083            }
084    
085            public long getPrimaryKey() {
086                    return _resourcePrimKey;
087            }
088    
089            public void setPrimaryKey(long pk) {
090                    setResourcePrimKey(pk);
091            }
092    
093            public String getUuid() {
094                    return _uuid;
095            }
096    
097            public void setUuid(String uuid) {
098                    _uuid = uuid;
099            }
100    
101            public long getResourcePrimKey() {
102                    return _resourcePrimKey;
103            }
104    
105            public void setResourcePrimKey(long resourcePrimKey) {
106                    _resourcePrimKey = resourcePrimKey;
107            }
108    
109            public long getNodeId() {
110                    return _nodeId;
111            }
112    
113            public void setNodeId(long nodeId) {
114                    _nodeId = nodeId;
115            }
116    
117            public String getTitle() {
118                    return _title;
119            }
120    
121            public void setTitle(String title) {
122                    _title = title;
123            }
124    
125            private String _uuid;
126            private long _resourcePrimKey;
127            private long _nodeId;
128            private String _title;
129    }