001
014
015 package com.liferay.portlet.expando.model;
016
017 import java.io.Serializable;
018
019 import java.util.ArrayList;
020 import java.util.List;
021
022
028 public class ExpandoRowSoap implements Serializable {
029 public static ExpandoRowSoap toSoapModel(ExpandoRow model) {
030 ExpandoRowSoap soapModel = new ExpandoRowSoap();
031
032 soapModel.setRowId(model.getRowId());
033 soapModel.setCompanyId(model.getCompanyId());
034 soapModel.setTableId(model.getTableId());
035 soapModel.setClassPK(model.getClassPK());
036
037 return soapModel;
038 }
039
040 public static ExpandoRowSoap[] toSoapModels(ExpandoRow[] models) {
041 ExpandoRowSoap[] soapModels = new ExpandoRowSoap[models.length];
042
043 for (int i = 0; i < models.length; i++) {
044 soapModels[i] = toSoapModel(models[i]);
045 }
046
047 return soapModels;
048 }
049
050 public static ExpandoRowSoap[][] toSoapModels(ExpandoRow[][] models) {
051 ExpandoRowSoap[][] soapModels = null;
052
053 if (models.length > 0) {
054 soapModels = new ExpandoRowSoap[models.length][models[0].length];
055 }
056 else {
057 soapModels = new ExpandoRowSoap[0][0];
058 }
059
060 for (int i = 0; i < models.length; i++) {
061 soapModels[i] = toSoapModels(models[i]);
062 }
063
064 return soapModels;
065 }
066
067 public static ExpandoRowSoap[] toSoapModels(List<ExpandoRow> models) {
068 List<ExpandoRowSoap> soapModels = new ArrayList<ExpandoRowSoap>(models.size());
069
070 for (ExpandoRow model : models) {
071 soapModels.add(toSoapModel(model));
072 }
073
074 return soapModels.toArray(new ExpandoRowSoap[soapModels.size()]);
075 }
076
077 public ExpandoRowSoap() {
078 }
079
080 public long getPrimaryKey() {
081 return _rowId;
082 }
083
084 public void setPrimaryKey(long pk) {
085 setRowId(pk);
086 }
087
088 public long getRowId() {
089 return _rowId;
090 }
091
092 public void setRowId(long rowId) {
093 _rowId = rowId;
094 }
095
096 public long getCompanyId() {
097 return _companyId;
098 }
099
100 public void setCompanyId(long companyId) {
101 _companyId = companyId;
102 }
103
104 public long getTableId() {
105 return _tableId;
106 }
107
108 public void setTableId(long tableId) {
109 _tableId = tableId;
110 }
111
112 public long getClassPK() {
113 return _classPK;
114 }
115
116 public void setClassPK(long classPK) {
117 _classPK = classPK;
118 }
119
120 private long _rowId;
121 private long _companyId;
122 private long _tableId;
123 private long _classPK;
124 }