001
014
015 package com.liferay.portlet.softwarecatalog.model;
016
017
026 public class SCLicenseWrapper implements SCLicense {
027 public SCLicenseWrapper(SCLicense scLicense) {
028 _scLicense = scLicense;
029 }
030
031
036 public long getPrimaryKey() {
037 return _scLicense.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _scLicense.setPrimaryKey(pk);
047 }
048
049
054 public long getLicenseId() {
055 return _scLicense.getLicenseId();
056 }
057
058
063 public void setLicenseId(long licenseId) {
064 _scLicense.setLicenseId(licenseId);
065 }
066
067
072 public java.lang.String getName() {
073 return _scLicense.getName();
074 }
075
076
081 public void setName(java.lang.String name) {
082 _scLicense.setName(name);
083 }
084
085
090 public java.lang.String getUrl() {
091 return _scLicense.getUrl();
092 }
093
094
099 public void setUrl(java.lang.String url) {
100 _scLicense.setUrl(url);
101 }
102
103
108 public boolean getOpenSource() {
109 return _scLicense.getOpenSource();
110 }
111
112
117 public boolean isOpenSource() {
118 return _scLicense.isOpenSource();
119 }
120
121
126 public void setOpenSource(boolean openSource) {
127 _scLicense.setOpenSource(openSource);
128 }
129
130
135 public boolean getActive() {
136 return _scLicense.getActive();
137 }
138
139
144 public boolean isActive() {
145 return _scLicense.isActive();
146 }
147
148
153 public void setActive(boolean active) {
154 _scLicense.setActive(active);
155 }
156
157
162 public boolean getRecommended() {
163 return _scLicense.getRecommended();
164 }
165
166
171 public boolean isRecommended() {
172 return _scLicense.isRecommended();
173 }
174
175
180 public void setRecommended(boolean recommended) {
181 _scLicense.setRecommended(recommended);
182 }
183
184 public boolean isNew() {
185 return _scLicense.isNew();
186 }
187
188 public void setNew(boolean n) {
189 _scLicense.setNew(n);
190 }
191
192 public boolean isCachedModel() {
193 return _scLicense.isCachedModel();
194 }
195
196 public void setCachedModel(boolean cachedModel) {
197 _scLicense.setCachedModel(cachedModel);
198 }
199
200 public boolean isEscapedModel() {
201 return _scLicense.isEscapedModel();
202 }
203
204 public void setEscapedModel(boolean escapedModel) {
205 _scLicense.setEscapedModel(escapedModel);
206 }
207
208 public java.io.Serializable getPrimaryKeyObj() {
209 return _scLicense.getPrimaryKeyObj();
210 }
211
212 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
213 return _scLicense.getExpandoBridge();
214 }
215
216 public void setExpandoBridgeAttributes(
217 com.liferay.portal.service.ServiceContext serviceContext) {
218 _scLicense.setExpandoBridgeAttributes(serviceContext);
219 }
220
221 public java.lang.Object clone() {
222 return _scLicense.clone();
223 }
224
225 public int compareTo(
226 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense) {
227 return _scLicense.compareTo(scLicense);
228 }
229
230 public int hashCode() {
231 return _scLicense.hashCode();
232 }
233
234 public com.liferay.portlet.softwarecatalog.model.SCLicense toEscapedModel() {
235 return _scLicense.toEscapedModel();
236 }
237
238 public java.lang.String toString() {
239 return _scLicense.toString();
240 }
241
242 public java.lang.String toXmlString() {
243 return _scLicense.toXmlString();
244 }
245
246 public SCLicense getWrappedSCLicense() {
247 return _scLicense;
248 }
249
250 private SCLicense _scLicense;
251 }