001    /**
002     * Copyright (c) 2000-2013 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.journal.model;
016    
017    import java.io.Serializable;
018    
019    import java.util.ArrayList;
020    import java.util.Date;
021    import java.util.List;
022    
023    /**
024     * This class is used by SOAP remote services, specifically {@link com.liferay.portlet.journal.service.http.JournalStructureServiceSoap}.
025     *
026     * @author    Brian Wing Shun Chan
027     * @see       com.liferay.portlet.journal.service.http.JournalStructureServiceSoap
028     * @generated
029     */
030    public class JournalStructureSoap implements Serializable {
031            public static JournalStructureSoap toSoapModel(JournalStructure model) {
032                    JournalStructureSoap soapModel = new JournalStructureSoap();
033    
034                    soapModel.setUuid(model.getUuid());
035                    soapModel.setId(model.getId());
036                    soapModel.setGroupId(model.getGroupId());
037                    soapModel.setCompanyId(model.getCompanyId());
038                    soapModel.setUserId(model.getUserId());
039                    soapModel.setUserName(model.getUserName());
040                    soapModel.setCreateDate(model.getCreateDate());
041                    soapModel.setModifiedDate(model.getModifiedDate());
042                    soapModel.setStructureId(model.getStructureId());
043                    soapModel.setParentStructureId(model.getParentStructureId());
044                    soapModel.setName(model.getName());
045                    soapModel.setDescription(model.getDescription());
046                    soapModel.setXsd(model.getXsd());
047    
048                    return soapModel;
049            }
050    
051            public static JournalStructureSoap[] toSoapModels(JournalStructure[] models) {
052                    JournalStructureSoap[] soapModels = new JournalStructureSoap[models.length];
053    
054                    for (int i = 0; i < models.length; i++) {
055                            soapModels[i] = toSoapModel(models[i]);
056                    }
057    
058                    return soapModels;
059            }
060    
061            public static JournalStructureSoap[][] toSoapModels(
062                    JournalStructure[][] models) {
063                    JournalStructureSoap[][] soapModels = null;
064    
065                    if (models.length > 0) {
066                            soapModels = new JournalStructureSoap[models.length][models[0].length];
067                    }
068                    else {
069                            soapModels = new JournalStructureSoap[0][0];
070                    }
071    
072                    for (int i = 0; i < models.length; i++) {
073                            soapModels[i] = toSoapModels(models[i]);
074                    }
075    
076                    return soapModels;
077            }
078    
079            public static JournalStructureSoap[] toSoapModels(
080                    List<JournalStructure> models) {
081                    List<JournalStructureSoap> soapModels = new ArrayList<JournalStructureSoap>(models.size());
082    
083                    for (JournalStructure model : models) {
084                            soapModels.add(toSoapModel(model));
085                    }
086    
087                    return soapModels.toArray(new JournalStructureSoap[soapModels.size()]);
088            }
089    
090            public JournalStructureSoap() {
091            }
092    
093            public long getPrimaryKey() {
094                    return _id;
095            }
096    
097            public void setPrimaryKey(long pk) {
098                    setId(pk);
099            }
100    
101            public String getUuid() {
102                    return _uuid;
103            }
104    
105            public void setUuid(String uuid) {
106                    _uuid = uuid;
107            }
108    
109            public long getId() {
110                    return _id;
111            }
112    
113            public void setId(long id) {
114                    _id = id;
115            }
116    
117            public long getGroupId() {
118                    return _groupId;
119            }
120    
121            public void setGroupId(long groupId) {
122                    _groupId = groupId;
123            }
124    
125            public long getCompanyId() {
126                    return _companyId;
127            }
128    
129            public void setCompanyId(long companyId) {
130                    _companyId = companyId;
131            }
132    
133            public long getUserId() {
134                    return _userId;
135            }
136    
137            public void setUserId(long userId) {
138                    _userId = userId;
139            }
140    
141            public String getUserName() {
142                    return _userName;
143            }
144    
145            public void setUserName(String userName) {
146                    _userName = userName;
147            }
148    
149            public Date getCreateDate() {
150                    return _createDate;
151            }
152    
153            public void setCreateDate(Date createDate) {
154                    _createDate = createDate;
155            }
156    
157            public Date getModifiedDate() {
158                    return _modifiedDate;
159            }
160    
161            public void setModifiedDate(Date modifiedDate) {
162                    _modifiedDate = modifiedDate;
163            }
164    
165            public String getStructureId() {
166                    return _structureId;
167            }
168    
169            public void setStructureId(String structureId) {
170                    _structureId = structureId;
171            }
172    
173            public String getParentStructureId() {
174                    return _parentStructureId;
175            }
176    
177            public void setParentStructureId(String parentStructureId) {
178                    _parentStructureId = parentStructureId;
179            }
180    
181            public String getName() {
182                    return _name;
183            }
184    
185            public void setName(String name) {
186                    _name = name;
187            }
188    
189            public String getDescription() {
190                    return _description;
191            }
192    
193            public void setDescription(String description) {
194                    _description = description;
195            }
196    
197            public String getXsd() {
198                    return _xsd;
199            }
200    
201            public void setXsd(String xsd) {
202                    _xsd = xsd;
203            }
204    
205            private String _uuid;
206            private long _id;
207            private long _groupId;
208            private long _companyId;
209            private long _userId;
210            private String _userName;
211            private Date _createDate;
212            private Date _modifiedDate;
213            private String _structureId;
214            private String _parentStructureId;
215            private String _name;
216            private String _description;
217            private String _xsd;
218    }