001
014
015 package com.liferay.portlet.documentlibrary.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
030 @ProviderType
031 public class DLSyncEventSoap implements Serializable {
032 public static DLSyncEventSoap toSoapModel(DLSyncEvent model) {
033 DLSyncEventSoap soapModel = new DLSyncEventSoap();
034
035 soapModel.setSyncEventId(model.getSyncEventId());
036 soapModel.setCompanyId(model.getCompanyId());
037 soapModel.setModifiedTime(model.getModifiedTime());
038 soapModel.setEvent(model.getEvent());
039 soapModel.setType(model.getType());
040 soapModel.setTypePK(model.getTypePK());
041
042 return soapModel;
043 }
044
045 public static DLSyncEventSoap[] toSoapModels(DLSyncEvent[] models) {
046 DLSyncEventSoap[] soapModels = new DLSyncEventSoap[models.length];
047
048 for (int i = 0; i < models.length; i++) {
049 soapModels[i] = toSoapModel(models[i]);
050 }
051
052 return soapModels;
053 }
054
055 public static DLSyncEventSoap[][] toSoapModels(DLSyncEvent[][] models) {
056 DLSyncEventSoap[][] soapModels = null;
057
058 if (models.length > 0) {
059 soapModels = new DLSyncEventSoap[models.length][models[0].length];
060 }
061 else {
062 soapModels = new DLSyncEventSoap[0][0];
063 }
064
065 for (int i = 0; i < models.length; i++) {
066 soapModels[i] = toSoapModels(models[i]);
067 }
068
069 return soapModels;
070 }
071
072 public static DLSyncEventSoap[] toSoapModels(List<DLSyncEvent> models) {
073 List<DLSyncEventSoap> soapModels = new ArrayList<DLSyncEventSoap>(models.size());
074
075 for (DLSyncEvent model : models) {
076 soapModels.add(toSoapModel(model));
077 }
078
079 return soapModels.toArray(new DLSyncEventSoap[soapModels.size()]);
080 }
081
082 public DLSyncEventSoap() {
083 }
084
085 public long getPrimaryKey() {
086 return _syncEventId;
087 }
088
089 public void setPrimaryKey(long pk) {
090 setSyncEventId(pk);
091 }
092
093 public long getSyncEventId() {
094 return _syncEventId;
095 }
096
097 public void setSyncEventId(long syncEventId) {
098 _syncEventId = syncEventId;
099 }
100
101 public long getCompanyId() {
102 return _companyId;
103 }
104
105 public void setCompanyId(long companyId) {
106 _companyId = companyId;
107 }
108
109 public long getModifiedTime() {
110 return _modifiedTime;
111 }
112
113 public void setModifiedTime(long modifiedTime) {
114 _modifiedTime = modifiedTime;
115 }
116
117 public String getEvent() {
118 return _event;
119 }
120
121 public void setEvent(String event) {
122 _event = event;
123 }
124
125 public String getType() {
126 return _type;
127 }
128
129 public void setType(String type) {
130 _type = type;
131 }
132
133 public long getTypePK() {
134 return _typePK;
135 }
136
137 public void setTypePK(long typePK) {
138 _typePK = typePK;
139 }
140
141 private long _syncEventId;
142 private long _companyId;
143 private long _modifiedTime;
144 private String _event;
145 private String _type;
146 private long _typePK;
147 }