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.dynamicdatamapping.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.dynamicdatamapping.service.http.DDMStructureServiceSoap}.
025     *
026     * @author Brian Wing Shun Chan
027     * @see com.liferay.portlet.dynamicdatamapping.service.http.DDMStructureServiceSoap
028     * @generated
029     */
030    public class DDMStructureSoap implements Serializable {
031            public static DDMStructureSoap toSoapModel(DDMStructure model) {
032                    DDMStructureSoap soapModel = new DDMStructureSoap();
033    
034                    soapModel.setUuid(model.getUuid());
035                    soapModel.setStructureId(model.getStructureId());
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.setParentStructureId(model.getParentStructureId());
043                    soapModel.setClassNameId(model.getClassNameId());
044                    soapModel.setStructureKey(model.getStructureKey());
045                    soapModel.setName(model.getName());
046                    soapModel.setDescription(model.getDescription());
047                    soapModel.setXsd(model.getXsd());
048                    soapModel.setStorageType(model.getStorageType());
049                    soapModel.setType(model.getType());
050    
051                    return soapModel;
052            }
053    
054            public static DDMStructureSoap[] toSoapModels(DDMStructure[] models) {
055                    DDMStructureSoap[] soapModels = new DDMStructureSoap[models.length];
056    
057                    for (int i = 0; i < models.length; i++) {
058                            soapModels[i] = toSoapModel(models[i]);
059                    }
060    
061                    return soapModels;
062            }
063    
064            public static DDMStructureSoap[][] toSoapModels(DDMStructure[][] models) {
065                    DDMStructureSoap[][] soapModels = null;
066    
067                    if (models.length > 0) {
068                            soapModels = new DDMStructureSoap[models.length][models[0].length];
069                    }
070                    else {
071                            soapModels = new DDMStructureSoap[0][0];
072                    }
073    
074                    for (int i = 0; i < models.length; i++) {
075                            soapModels[i] = toSoapModels(models[i]);
076                    }
077    
078                    return soapModels;
079            }
080    
081            public static DDMStructureSoap[] toSoapModels(List<DDMStructure> models) {
082                    List<DDMStructureSoap> soapModels = new ArrayList<DDMStructureSoap>(models.size());
083    
084                    for (DDMStructure model : models) {
085                            soapModels.add(toSoapModel(model));
086                    }
087    
088                    return soapModels.toArray(new DDMStructureSoap[soapModels.size()]);
089            }
090    
091            public DDMStructureSoap() {
092            }
093    
094            public long getPrimaryKey() {
095                    return _structureId;
096            }
097    
098            public void setPrimaryKey(long pk) {
099                    setStructureId(pk);
100            }
101    
102            public String getUuid() {
103                    return _uuid;
104            }
105    
106            public void setUuid(String uuid) {
107                    _uuid = uuid;
108            }
109    
110            public long getStructureId() {
111                    return _structureId;
112            }
113    
114            public void setStructureId(long structureId) {
115                    _structureId = structureId;
116            }
117    
118            public long getGroupId() {
119                    return _groupId;
120            }
121    
122            public void setGroupId(long groupId) {
123                    _groupId = groupId;
124            }
125    
126            public long getCompanyId() {
127                    return _companyId;
128            }
129    
130            public void setCompanyId(long companyId) {
131                    _companyId = companyId;
132            }
133    
134            public long getUserId() {
135                    return _userId;
136            }
137    
138            public void setUserId(long userId) {
139                    _userId = userId;
140            }
141    
142            public String getUserName() {
143                    return _userName;
144            }
145    
146            public void setUserName(String userName) {
147                    _userName = userName;
148            }
149    
150            public Date getCreateDate() {
151                    return _createDate;
152            }
153    
154            public void setCreateDate(Date createDate) {
155                    _createDate = createDate;
156            }
157    
158            public Date getModifiedDate() {
159                    return _modifiedDate;
160            }
161    
162            public void setModifiedDate(Date modifiedDate) {
163                    _modifiedDate = modifiedDate;
164            }
165    
166            public long getParentStructureId() {
167                    return _parentStructureId;
168            }
169    
170            public void setParentStructureId(long parentStructureId) {
171                    _parentStructureId = parentStructureId;
172            }
173    
174            public long getClassNameId() {
175                    return _classNameId;
176            }
177    
178            public void setClassNameId(long classNameId) {
179                    _classNameId = classNameId;
180            }
181    
182            public String getStructureKey() {
183                    return _structureKey;
184            }
185    
186            public void setStructureKey(String structureKey) {
187                    _structureKey = structureKey;
188            }
189    
190            public String getName() {
191                    return _name;
192            }
193    
194            public void setName(String name) {
195                    _name = name;
196            }
197    
198            public String getDescription() {
199                    return _description;
200            }
201    
202            public void setDescription(String description) {
203                    _description = description;
204            }
205    
206            public String getXsd() {
207                    return _xsd;
208            }
209    
210            public void setXsd(String xsd) {
211                    _xsd = xsd;
212            }
213    
214            public String getStorageType() {
215                    return _storageType;
216            }
217    
218            public void setStorageType(String storageType) {
219                    _storageType = storageType;
220            }
221    
222            public int getType() {
223                    return _type;
224            }
225    
226            public void setType(int type) {
227                    _type = type;
228            }
229    
230            private String _uuid;
231            private long _structureId;
232            private long _groupId;
233            private long _companyId;
234            private long _userId;
235            private String _userName;
236            private Date _createDate;
237            private Date _modifiedDate;
238            private long _parentStructureId;
239            private long _classNameId;
240            private String _structureKey;
241            private String _name;
242            private String _description;
243            private String _xsd;
244            private String _storageType;
245            private int _type;
246    }