attributes) {
- Long artLeggeId = (Long)attributes.get("artLeggeId");
-
- if (artLeggeId != null) {
- setArtLeggeId(artLeggeId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- String codArtLegge = (String)attributes.get("codArtLegge");
-
- if (codArtLegge != null) {
- setCodArtLegge(codArtLegge);
- }
-
- String tipologia = (String)attributes.get("tipologia");
-
- if (tipologia != null) {
- setTipologia(tipologia);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- @Override
- public long getArtLeggeId() {
- return _artLeggeId;
- }
-
- @Override
- public void setArtLeggeId(long artLeggeId) {
- _artLeggeId = artLeggeId;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setArtLeggeId", long.class);
-
- method.invoke(_boArtLeggeRemoteModel, artLeggeId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boArtLeggeRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boArtLeggeRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boArtLeggeRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boArtLeggeRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boArtLeggeRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodArtLegge() {
- return _codArtLegge;
- }
-
- @Override
- public void setCodArtLegge(String codArtLegge) {
- _codArtLegge = codArtLegge;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodArtLegge", String.class);
-
- method.invoke(_boArtLeggeRemoteModel, codArtLegge);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipologia() {
- return _tipologia;
- }
-
- @Override
- public void setTipologia(String tipologia) {
- _tipologia = tipologia;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipologia", String.class);
-
- method.invoke(_boArtLeggeRemoteModel, tipologia);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLong() {
- return _descLong;
- }
-
- @Override
- public void setDescLong(String descLong) {
- _descLong = descLong;
-
- if (_boArtLeggeRemoteModel != null) {
- try {
- Class> clazz = _boArtLeggeRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLong", String.class);
-
- method.invoke(_boArtLeggeRemoteModel, descLong);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoArtLeggeRemoteModel() {
- return _boArtLeggeRemoteModel;
- }
-
- public void setBoArtLeggeRemoteModel(BaseModel> boArtLeggeRemoteModel) {
- _boArtLeggeRemoteModel = boArtLeggeRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boArtLeggeRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boArtLeggeRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoArtLeggeLocalServiceUtil.addBoArtLegge(this);
- }
- else {
- BoArtLeggeLocalServiceUtil.updateBoArtLegge(this);
- }
- }
-
- @Override
- public BoArtLegge toEscapedModel() {
- return (BoArtLegge)ProxyUtil.newProxyInstance(BoArtLegge.class.getClassLoader(),
- new Class[] { BoArtLegge.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoArtLeggeClp clone = new BoArtLeggeClp();
-
- clone.setArtLeggeId(getArtLeggeId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setCodArtLegge(getCodArtLegge());
- clone.setTipologia(getTipologia());
- clone.setDescLong(getDescLong());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoArtLegge boArtLegge) {
- int value = 0;
-
- value = getCodArtLegge().compareTo(boArtLegge.getCodArtLegge());
-
- if (value != 0) {
- return value;
- }
-
- return 0;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoArtLeggeClp)) {
- return false;
- }
-
- BoArtLeggeClp boArtLegge = (BoArtLeggeClp)obj;
-
- long primaryKey = boArtLegge.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(19);
-
- sb.append("{artLeggeId=");
- sb.append(getArtLeggeId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", codArtLegge=");
- sb.append(getCodArtLegge());
- sb.append(", tipologia=");
- sb.append(getTipologia());
- sb.append(", descLong=");
- sb.append(getDescLong());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(31);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoArtLegge");
- sb.append("");
-
- sb.append(
- "artLeggeId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "codArtLegge");
- sb.append(
- "tipologia");
- sb.append(
- "descLong");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _artLeggeId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private String _codArtLegge;
- private String _tipologia;
- private String _descLong;
- private BaseModel> _boArtLeggeRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeModel.java
deleted file mode 100644
index b12005c1..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeModel.java
+++ /dev/null
@@ -1,278 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.AuditedModel;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoArtLegge service. Represents a row in the "gc_artlegge" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoArtLeggeModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoArtLeggeImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoArtLegge
- * @see it.tref.liferay.portos.portosimport.model.impl.BoArtLeggeImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoArtLeggeModelImpl
- * @generated
- */
-public interface BoArtLeggeModel extends AuditedModel, BaseModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo art legge model instance should use the {@link BoArtLegge} interface instead.
- */
-
- /**
- * Returns the primary key of this bo art legge.
- *
- * @return the primary key of this bo art legge
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo art legge.
- *
- * @param primaryKey the primary key of this bo art legge
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the art legge ID of this bo art legge.
- *
- * @return the art legge ID of this bo art legge
- */
- public long getArtLeggeId();
-
- /**
- * Sets the art legge ID of this bo art legge.
- *
- * @param artLeggeId the art legge ID of this bo art legge
- */
- public void setArtLeggeId(long artLeggeId);
-
- /**
- * Returns the company ID of this bo art legge.
- *
- * @return the company ID of this bo art legge
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo art legge.
- *
- * @param companyId the company ID of this bo art legge
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo art legge.
- *
- * @return the user ID of this bo art legge
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo art legge.
- *
- * @param userId the user ID of this bo art legge
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo art legge.
- *
- * @return the user uuid of this bo art legge
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo art legge.
- *
- * @param userUuid the user uuid of this bo art legge
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo art legge.
- *
- * @return the user name of this bo art legge
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo art legge.
- *
- * @param userName the user name of this bo art legge
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo art legge.
- *
- * @return the create date of this bo art legge
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo art legge.
- *
- * @param createDate the create date of this bo art legge
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo art legge.
- *
- * @return the modified date of this bo art legge
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo art legge.
- *
- * @param modifiedDate the modified date of this bo art legge
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the cod art legge of this bo art legge.
- *
- * @return the cod art legge of this bo art legge
- */
- @AutoEscape
- public String getCodArtLegge();
-
- /**
- * Sets the cod art legge of this bo art legge.
- *
- * @param codArtLegge the cod art legge of this bo art legge
- */
- public void setCodArtLegge(String codArtLegge);
-
- /**
- * Returns the tipologia of this bo art legge.
- *
- * @return the tipologia of this bo art legge
- */
- @AutoEscape
- public String getTipologia();
-
- /**
- * Sets the tipologia of this bo art legge.
- *
- * @param tipologia the tipologia of this bo art legge
- */
- public void setTipologia(String tipologia);
-
- /**
- * Returns the desc long of this bo art legge.
- *
- * @return the desc long of this bo art legge
- */
- @AutoEscape
- public String getDescLong();
-
- /**
- * Sets the desc long of this bo art legge.
- *
- * @param descLong the desc long of this bo art legge
- */
- public void setDescLong(String descLong);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoArtLegge boArtLegge);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoArtLegge toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoArtLegge toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeSoap.java
deleted file mode 100644
index 0b799da9..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeSoap.java
+++ /dev/null
@@ -1,175 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoArtLeggeSoap implements Serializable {
- public static BoArtLeggeSoap toSoapModel(BoArtLegge model) {
- BoArtLeggeSoap soapModel = new BoArtLeggeSoap();
-
- soapModel.setArtLeggeId(model.getArtLeggeId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setCodArtLegge(model.getCodArtLegge());
- soapModel.setTipologia(model.getTipologia());
- soapModel.setDescLong(model.getDescLong());
-
- return soapModel;
- }
-
- public static BoArtLeggeSoap[] toSoapModels(BoArtLegge[] models) {
- BoArtLeggeSoap[] soapModels = new BoArtLeggeSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoArtLeggeSoap[][] toSoapModels(BoArtLegge[][] models) {
- BoArtLeggeSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoArtLeggeSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoArtLeggeSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoArtLeggeSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoArtLegge model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoArtLeggeSoap[soapModels.size()]);
- }
-
- public BoArtLeggeSoap() {
- }
-
- public long getPrimaryKey() {
- return _artLeggeId;
- }
-
- public void setPrimaryKey(long pk) {
- setArtLeggeId(pk);
- }
-
- public long getArtLeggeId() {
- return _artLeggeId;
- }
-
- public void setArtLeggeId(long artLeggeId) {
- _artLeggeId = artLeggeId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public String getCodArtLegge() {
- return _codArtLegge;
- }
-
- public void setCodArtLegge(String codArtLegge) {
- _codArtLegge = codArtLegge;
- }
-
- public String getTipologia() {
- return _tipologia;
- }
-
- public void setTipologia(String tipologia) {
- _tipologia = tipologia;
- }
-
- public String getDescLong() {
- return _descLong;
- }
-
- public void setDescLong(String descLong) {
- _descLong = descLong;
- }
-
- private long _artLeggeId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private String _codArtLegge;
- private String _tipologia;
- private String _descLong;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeWrapper.java
deleted file mode 100644
index bec6f9f9..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoArtLeggeWrapper.java
+++ /dev/null
@@ -1,486 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoArtLegge}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoArtLegge
- * @generated
- */
-public class BoArtLeggeWrapper implements BoArtLegge, ModelWrapper {
- public BoArtLeggeWrapper(BoArtLegge boArtLegge) {
- _boArtLegge = boArtLegge;
- }
-
- @Override
- public Class> getModelClass() {
- return BoArtLegge.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoArtLegge.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("artLeggeId", getArtLeggeId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("codArtLegge", getCodArtLegge());
- attributes.put("tipologia", getTipologia());
- attributes.put("descLong", getDescLong());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long artLeggeId = (Long)attributes.get("artLeggeId");
-
- if (artLeggeId != null) {
- setArtLeggeId(artLeggeId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- String codArtLegge = (String)attributes.get("codArtLegge");
-
- if (codArtLegge != null) {
- setCodArtLegge(codArtLegge);
- }
-
- String tipologia = (String)attributes.get("tipologia");
-
- if (tipologia != null) {
- setTipologia(tipologia);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- /**
- * Returns the primary key of this bo art legge.
- *
- * @return the primary key of this bo art legge
- */
- @Override
- public long getPrimaryKey() {
- return _boArtLegge.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo art legge.
- *
- * @param primaryKey the primary key of this bo art legge
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boArtLegge.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the art legge ID of this bo art legge.
- *
- * @return the art legge ID of this bo art legge
- */
- @Override
- public long getArtLeggeId() {
- return _boArtLegge.getArtLeggeId();
- }
-
- /**
- * Sets the art legge ID of this bo art legge.
- *
- * @param artLeggeId the art legge ID of this bo art legge
- */
- @Override
- public void setArtLeggeId(long artLeggeId) {
- _boArtLegge.setArtLeggeId(artLeggeId);
- }
-
- /**
- * Returns the company ID of this bo art legge.
- *
- * @return the company ID of this bo art legge
- */
- @Override
- public long getCompanyId() {
- return _boArtLegge.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo art legge.
- *
- * @param companyId the company ID of this bo art legge
- */
- @Override
- public void setCompanyId(long companyId) {
- _boArtLegge.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo art legge.
- *
- * @return the user ID of this bo art legge
- */
- @Override
- public long getUserId() {
- return _boArtLegge.getUserId();
- }
-
- /**
- * Sets the user ID of this bo art legge.
- *
- * @param userId the user ID of this bo art legge
- */
- @Override
- public void setUserId(long userId) {
- _boArtLegge.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo art legge.
- *
- * @return the user uuid of this bo art legge
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boArtLegge.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo art legge.
- *
- * @param userUuid the user uuid of this bo art legge
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boArtLegge.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo art legge.
- *
- * @return the user name of this bo art legge
- */
- @Override
- public java.lang.String getUserName() {
- return _boArtLegge.getUserName();
- }
-
- /**
- * Sets the user name of this bo art legge.
- *
- * @param userName the user name of this bo art legge
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boArtLegge.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo art legge.
- *
- * @return the create date of this bo art legge
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boArtLegge.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo art legge.
- *
- * @param createDate the create date of this bo art legge
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boArtLegge.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo art legge.
- *
- * @return the modified date of this bo art legge
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boArtLegge.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo art legge.
- *
- * @param modifiedDate the modified date of this bo art legge
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boArtLegge.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the cod art legge of this bo art legge.
- *
- * @return the cod art legge of this bo art legge
- */
- @Override
- public java.lang.String getCodArtLegge() {
- return _boArtLegge.getCodArtLegge();
- }
-
- /**
- * Sets the cod art legge of this bo art legge.
- *
- * @param codArtLegge the cod art legge of this bo art legge
- */
- @Override
- public void setCodArtLegge(java.lang.String codArtLegge) {
- _boArtLegge.setCodArtLegge(codArtLegge);
- }
-
- /**
- * Returns the tipologia of this bo art legge.
- *
- * @return the tipologia of this bo art legge
- */
- @Override
- public java.lang.String getTipologia() {
- return _boArtLegge.getTipologia();
- }
-
- /**
- * Sets the tipologia of this bo art legge.
- *
- * @param tipologia the tipologia of this bo art legge
- */
- @Override
- public void setTipologia(java.lang.String tipologia) {
- _boArtLegge.setTipologia(tipologia);
- }
-
- /**
- * Returns the desc long of this bo art legge.
- *
- * @return the desc long of this bo art legge
- */
- @Override
- public java.lang.String getDescLong() {
- return _boArtLegge.getDescLong();
- }
-
- /**
- * Sets the desc long of this bo art legge.
- *
- * @param descLong the desc long of this bo art legge
- */
- @Override
- public void setDescLong(java.lang.String descLong) {
- _boArtLegge.setDescLong(descLong);
- }
-
- @Override
- public boolean isNew() {
- return _boArtLegge.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boArtLegge.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boArtLegge.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boArtLegge.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boArtLegge.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boArtLegge.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boArtLegge.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boArtLegge.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boArtLegge.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boArtLegge.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boArtLegge.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoArtLeggeWrapper((BoArtLegge)_boArtLegge.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoArtLegge boArtLegge) {
- return _boArtLegge.compareTo(boArtLegge);
- }
-
- @Override
- public int hashCode() {
- return _boArtLegge.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boArtLegge.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoArtLegge toEscapedModel() {
- return new BoArtLeggeWrapper(_boArtLegge.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoArtLegge toUnescapedModel() {
- return new BoArtLeggeWrapper(_boArtLegge.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boArtLegge.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boArtLegge.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boArtLegge.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoArtLeggeWrapper)) {
- return false;
- }
-
- BoArtLeggeWrapper boArtLeggeWrapper = (BoArtLeggeWrapper)obj;
-
- if (Validator.equals(_boArtLegge, boArtLeggeWrapper._boArtLegge)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoArtLegge getWrappedBoArtLegge() {
- return _boArtLegge;
- }
-
- @Override
- public BoArtLegge getWrappedModel() {
- return _boArtLegge;
- }
-
- @Override
- public void resetOriginalValues() {
- _boArtLegge.resetOriginalValues();
- }
-
- private BoArtLegge _boArtLegge;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvviso.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvviso.java
deleted file mode 100644
index 0d1d398b..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvviso.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoAvviso service. Represents a row in the "gc_avviso" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoAvvisoModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoAvvisoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoAvvisoModelImpl
- * @generated
- */
-public interface BoAvviso extends BoAvvisoModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoAvvisoImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoClp.java
deleted file mode 100644
index c8e53056..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoClp.java
+++ /dev/null
@@ -1,1735 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.DateUtil;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoAvvisoLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoAvvisoClp extends BaseModelImpl implements BoAvviso {
- public BoAvvisoClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoAvviso.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoAvviso.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _avvisoId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setAvvisoId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _avvisoId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("avvisoId", getAvvisoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("descLong", getDescLong());
- attributes.put("dtAvviso", getDtAvviso());
- attributes.put("tipoAvviso", getTipoAvviso());
- attributes.put("tipoDocumento", getTipoDocumento());
- attributes.put("fileEntryIdTemplate", getFileEntryIdTemplate());
- attributes.put("fileEntryIdBase", getFileEntryIdBase());
- attributes.put("fileEntryIdFirma", getFileEntryIdFirma());
- attributes.put("fileEntryIdInvio", getFileEntryIdInvio());
- attributes.put("dtCreateFileEntryInvio", getDtCreateFileEntryInvio());
- attributes.put("userIdPrimaFirma", getUserIdPrimaFirma());
- attributes.put("userIdSecondaFirma", getUserIdSecondaFirma());
- attributes.put("firmaInCorso", getFirmaInCorso());
- attributes.put("transactionIdPrimaFirma", getTransactionIdPrimaFirma());
- attributes.put("transactionIdSecondaFirma",
- getTransactionIdSecondaFirma());
- attributes.put("inviato", getInviato());
- attributes.put("dtInvio", getDtInvio());
- attributes.put("annullato", getAnnullato());
- attributes.put("errore", getErrore());
- attributes.put("signal", getSignal());
- attributes.put("dtInvioSignal", getDtInvioSignal());
- attributes.put("tempistica", getTempistica());
- attributes.put("dtTempistica", getDtTempistica());
- attributes.put("daxId", getDaxId());
- attributes.put("dtInvioDax", getDtInvioDax());
- attributes.put("erroreDax", getErroreDax());
- attributes.put("dtErroreDax", getDtErroreDax());
- attributes.put("jsonParameters", getJsonParameters());
- attributes.put("protocollo", getProtocollo());
- attributes.put("inviatoTecnico", getInviatoTecnico());
- attributes.put("dettPraticaId", getDettPraticaId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long avvisoId = (Long)attributes.get("avvisoId");
-
- if (avvisoId != null) {
- setAvvisoId(avvisoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
-
- Date dtAvviso = (Date)attributes.get("dtAvviso");
-
- if (dtAvviso != null) {
- setDtAvviso(dtAvviso);
- }
-
- String tipoAvviso = (String)attributes.get("tipoAvviso");
-
- if (tipoAvviso != null) {
- setTipoAvviso(tipoAvviso);
- }
-
- String tipoDocumento = (String)attributes.get("tipoDocumento");
-
- if (tipoDocumento != null) {
- setTipoDocumento(tipoDocumento);
- }
-
- Long fileEntryIdTemplate = (Long)attributes.get("fileEntryIdTemplate");
-
- if (fileEntryIdTemplate != null) {
- setFileEntryIdTemplate(fileEntryIdTemplate);
- }
-
- Long fileEntryIdBase = (Long)attributes.get("fileEntryIdBase");
-
- if (fileEntryIdBase != null) {
- setFileEntryIdBase(fileEntryIdBase);
- }
-
- Long fileEntryIdFirma = (Long)attributes.get("fileEntryIdFirma");
-
- if (fileEntryIdFirma != null) {
- setFileEntryIdFirma(fileEntryIdFirma);
- }
-
- Long fileEntryIdInvio = (Long)attributes.get("fileEntryIdInvio");
-
- if (fileEntryIdInvio != null) {
- setFileEntryIdInvio(fileEntryIdInvio);
- }
-
- Date dtCreateFileEntryInvio = (Date)attributes.get(
- "dtCreateFileEntryInvio");
-
- if (dtCreateFileEntryInvio != null) {
- setDtCreateFileEntryInvio(dtCreateFileEntryInvio);
- }
-
- Long userIdPrimaFirma = (Long)attributes.get("userIdPrimaFirma");
-
- if (userIdPrimaFirma != null) {
- setUserIdPrimaFirma(userIdPrimaFirma);
- }
-
- Long userIdSecondaFirma = (Long)attributes.get("userIdSecondaFirma");
-
- if (userIdSecondaFirma != null) {
- setUserIdSecondaFirma(userIdSecondaFirma);
- }
-
- Boolean firmaInCorso = (Boolean)attributes.get("firmaInCorso");
-
- if (firmaInCorso != null) {
- setFirmaInCorso(firmaInCorso);
- }
-
- String transactionIdPrimaFirma = (String)attributes.get(
- "transactionIdPrimaFirma");
-
- if (transactionIdPrimaFirma != null) {
- setTransactionIdPrimaFirma(transactionIdPrimaFirma);
- }
-
- String transactionIdSecondaFirma = (String)attributes.get(
- "transactionIdSecondaFirma");
-
- if (transactionIdSecondaFirma != null) {
- setTransactionIdSecondaFirma(transactionIdSecondaFirma);
- }
-
- String inviato = (String)attributes.get("inviato");
-
- if (inviato != null) {
- setInviato(inviato);
- }
-
- Date dtInvio = (Date)attributes.get("dtInvio");
-
- if (dtInvio != null) {
- setDtInvio(dtInvio);
- }
-
- Boolean annullato = (Boolean)attributes.get("annullato");
-
- if (annullato != null) {
- setAnnullato(annullato);
- }
-
- Boolean errore = (Boolean)attributes.get("errore");
-
- if (errore != null) {
- setErrore(errore);
- }
-
- Boolean signal = (Boolean)attributes.get("signal");
-
- if (signal != null) {
- setSignal(signal);
- }
-
- Date dtInvioSignal = (Date)attributes.get("dtInvioSignal");
-
- if (dtInvioSignal != null) {
- setDtInvioSignal(dtInvioSignal);
- }
-
- Boolean tempistica = (Boolean)attributes.get("tempistica");
-
- if (tempistica != null) {
- setTempistica(tempistica);
- }
-
- Date dtTempistica = (Date)attributes.get("dtTempistica");
-
- if (dtTempistica != null) {
- setDtTempistica(dtTempistica);
- }
-
- Long daxId = (Long)attributes.get("daxId");
-
- if (daxId != null) {
- setDaxId(daxId);
- }
-
- Date dtInvioDax = (Date)attributes.get("dtInvioDax");
-
- if (dtInvioDax != null) {
- setDtInvioDax(dtInvioDax);
- }
-
- String erroreDax = (String)attributes.get("erroreDax");
-
- if (erroreDax != null) {
- setErroreDax(erroreDax);
- }
-
- Date dtErroreDax = (Date)attributes.get("dtErroreDax");
-
- if (dtErroreDax != null) {
- setDtErroreDax(dtErroreDax);
- }
-
- String jsonParameters = (String)attributes.get("jsonParameters");
-
- if (jsonParameters != null) {
- setJsonParameters(jsonParameters);
- }
-
- String protocollo = (String)attributes.get("protocollo");
-
- if (protocollo != null) {
- setProtocollo(protocollo);
- }
-
- Boolean inviatoTecnico = (Boolean)attributes.get("inviatoTecnico");
-
- if (inviatoTecnico != null) {
- setInviatoTecnico(inviatoTecnico);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boAvvisoRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getAvvisoId() {
- return _avvisoId;
- }
-
- @Override
- public void setAvvisoId(long avvisoId) {
- _avvisoId = avvisoId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAvvisoId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, avvisoId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boAvvisoRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLong() {
- return _descLong;
- }
-
- @Override
- public void setDescLong(String descLong) {
- _descLong = descLong;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLong", String.class);
-
- method.invoke(_boAvvisoRemoteModel, descLong);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtAvviso() {
- return _dtAvviso;
- }
-
- @Override
- public void setDtAvviso(Date dtAvviso) {
- _dtAvviso = dtAvviso;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtAvviso", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtAvviso);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipoAvviso() {
- return _tipoAvviso;
- }
-
- @Override
- public void setTipoAvviso(String tipoAvviso) {
- _tipoAvviso = tipoAvviso;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipoAvviso", String.class);
-
- method.invoke(_boAvvisoRemoteModel, tipoAvviso);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipoDocumento() {
- return _tipoDocumento;
- }
-
- @Override
- public void setTipoDocumento(String tipoDocumento) {
- _tipoDocumento = tipoDocumento;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipoDocumento", String.class);
-
- method.invoke(_boAvvisoRemoteModel, tipoDocumento);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getFileEntryIdTemplate() {
- return _fileEntryIdTemplate;
- }
-
- @Override
- public void setFileEntryIdTemplate(long fileEntryIdTemplate) {
- _fileEntryIdTemplate = fileEntryIdTemplate;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFileEntryIdTemplate",
- long.class);
-
- method.invoke(_boAvvisoRemoteModel, fileEntryIdTemplate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getFileEntryIdBase() {
- return _fileEntryIdBase;
- }
-
- @Override
- public void setFileEntryIdBase(long fileEntryIdBase) {
- _fileEntryIdBase = fileEntryIdBase;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFileEntryIdBase", long.class);
-
- method.invoke(_boAvvisoRemoteModel, fileEntryIdBase);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getFileEntryIdFirma() {
- return _fileEntryIdFirma;
- }
-
- @Override
- public void setFileEntryIdFirma(long fileEntryIdFirma) {
- _fileEntryIdFirma = fileEntryIdFirma;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFileEntryIdFirma",
- long.class);
-
- method.invoke(_boAvvisoRemoteModel, fileEntryIdFirma);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getFileEntryIdInvio() {
- return _fileEntryIdInvio;
- }
-
- @Override
- public void setFileEntryIdInvio(long fileEntryIdInvio) {
- _fileEntryIdInvio = fileEntryIdInvio;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFileEntryIdInvio",
- long.class);
-
- method.invoke(_boAvvisoRemoteModel, fileEntryIdInvio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtCreateFileEntryInvio() {
- return _dtCreateFileEntryInvio;
- }
-
- @Override
- public void setDtCreateFileEntryInvio(Date dtCreateFileEntryInvio) {
- _dtCreateFileEntryInvio = dtCreateFileEntryInvio;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtCreateFileEntryInvio",
- Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtCreateFileEntryInvio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserIdPrimaFirma() {
- return _userIdPrimaFirma;
- }
-
- @Override
- public void setUserIdPrimaFirma(long userIdPrimaFirma) {
- _userIdPrimaFirma = userIdPrimaFirma;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserIdPrimaFirma",
- long.class);
-
- method.invoke(_boAvvisoRemoteModel, userIdPrimaFirma);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserIdSecondaFirma() {
- return _userIdSecondaFirma;
- }
-
- @Override
- public void setUserIdSecondaFirma(long userIdSecondaFirma) {
- _userIdSecondaFirma = userIdSecondaFirma;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserIdSecondaFirma",
- long.class);
-
- method.invoke(_boAvvisoRemoteModel, userIdSecondaFirma);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFirmaInCorso() {
- return _firmaInCorso;
- }
-
- @Override
- public boolean isFirmaInCorso() {
- return _firmaInCorso;
- }
-
- @Override
- public void setFirmaInCorso(boolean firmaInCorso) {
- _firmaInCorso = firmaInCorso;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFirmaInCorso", boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, firmaInCorso);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTransactionIdPrimaFirma() {
- return _transactionIdPrimaFirma;
- }
-
- @Override
- public void setTransactionIdPrimaFirma(String transactionIdPrimaFirma) {
- _transactionIdPrimaFirma = transactionIdPrimaFirma;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTransactionIdPrimaFirma",
- String.class);
-
- method.invoke(_boAvvisoRemoteModel, transactionIdPrimaFirma);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTransactionIdSecondaFirma() {
- return _transactionIdSecondaFirma;
- }
-
- @Override
- public void setTransactionIdSecondaFirma(String transactionIdSecondaFirma) {
- _transactionIdSecondaFirma = transactionIdSecondaFirma;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTransactionIdSecondaFirma",
- String.class);
-
- method.invoke(_boAvvisoRemoteModel, transactionIdSecondaFirma);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getInviato() {
- return _inviato;
- }
-
- @Override
- public void setInviato(String inviato) {
- _inviato = inviato;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setInviato", String.class);
-
- method.invoke(_boAvvisoRemoteModel, inviato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtInvio() {
- return _dtInvio;
- }
-
- @Override
- public void setDtInvio(Date dtInvio) {
- _dtInvio = dtInvio;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtInvio", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtInvio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getAnnullato() {
- return _annullato;
- }
-
- @Override
- public boolean isAnnullato() {
- return _annullato;
- }
-
- @Override
- public void setAnnullato(boolean annullato) {
- _annullato = annullato;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAnnullato", boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, annullato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getErrore() {
- return _errore;
- }
-
- @Override
- public boolean isErrore() {
- return _errore;
- }
-
- @Override
- public void setErrore(boolean errore) {
- _errore = errore;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setErrore", boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, errore);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getSignal() {
- return _signal;
- }
-
- @Override
- public boolean isSignal() {
- return _signal;
- }
-
- @Override
- public void setSignal(boolean signal) {
- _signal = signal;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSignal", boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, signal);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtInvioSignal() {
- return _dtInvioSignal;
- }
-
- @Override
- public void setDtInvioSignal(Date dtInvioSignal) {
- _dtInvioSignal = dtInvioSignal;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtInvioSignal", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtInvioSignal);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getTempistica() {
- return _tempistica;
- }
-
- @Override
- public boolean isTempistica() {
- return _tempistica;
- }
-
- @Override
- public void setTempistica(boolean tempistica) {
- _tempistica = tempistica;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTempistica", boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, tempistica);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtTempistica() {
- return _dtTempistica;
- }
-
- @Override
- public void setDtTempistica(Date dtTempistica) {
- _dtTempistica = dtTempistica;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtTempistica", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtTempistica);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDaxId() {
- return _daxId;
- }
-
- @Override
- public void setDaxId(long daxId) {
- _daxId = daxId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDaxId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, daxId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtInvioDax() {
- return _dtInvioDax;
- }
-
- @Override
- public void setDtInvioDax(Date dtInvioDax) {
- _dtInvioDax = dtInvioDax;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtInvioDax", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtInvioDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getErroreDax() {
- return _erroreDax;
- }
-
- @Override
- public void setErroreDax(String erroreDax) {
- _erroreDax = erroreDax;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setErroreDax", String.class);
-
- method.invoke(_boAvvisoRemoteModel, erroreDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtErroreDax() {
- return _dtErroreDax;
- }
-
- @Override
- public void setDtErroreDax(Date dtErroreDax) {
- _dtErroreDax = dtErroreDax;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtErroreDax", Date.class);
-
- method.invoke(_boAvvisoRemoteModel, dtErroreDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getJsonParameters() {
- return _jsonParameters;
- }
-
- @Override
- public void setJsonParameters(String jsonParameters) {
- _jsonParameters = jsonParameters;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setJsonParameters",
- String.class);
-
- method.invoke(_boAvvisoRemoteModel, jsonParameters);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProtocollo() {
- return _protocollo;
- }
-
- @Override
- public void setProtocollo(String protocollo) {
- _protocollo = protocollo;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProtocollo", String.class);
-
- method.invoke(_boAvvisoRemoteModel, protocollo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getInviatoTecnico() {
- return _inviatoTecnico;
- }
-
- @Override
- public boolean isInviatoTecnico() {
- return _inviatoTecnico;
- }
-
- @Override
- public void setInviatoTecnico(boolean inviatoTecnico) {
- _inviatoTecnico = inviatoTecnico;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setInviatoTecnico",
- boolean.class);
-
- method.invoke(_boAvvisoRemoteModel, inviatoTecnico);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boAvvisoRemoteModel != null) {
- try {
- Class> clazz = _boAvvisoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boAvvisoRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoAvviso.class.getName()));
- }
-
- public BaseModel> getBoAvvisoRemoteModel() {
- return _boAvvisoRemoteModel;
- }
-
- public void setBoAvvisoRemoteModel(BaseModel> boAvvisoRemoteModel) {
- _boAvvisoRemoteModel = boAvvisoRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boAvvisoRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boAvvisoRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoAvvisoLocalServiceUtil.addBoAvviso(this);
- }
- else {
- BoAvvisoLocalServiceUtil.updateBoAvviso(this);
- }
- }
-
- @Override
- public BoAvviso toEscapedModel() {
- return (BoAvviso)ProxyUtil.newProxyInstance(BoAvviso.class.getClassLoader(),
- new Class[] { BoAvviso.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoAvvisoClp clone = new BoAvvisoClp();
-
- clone.setUuid(getUuid());
- clone.setAvvisoId(getAvvisoId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setDescLong(getDescLong());
- clone.setDtAvviso(getDtAvviso());
- clone.setTipoAvviso(getTipoAvviso());
- clone.setTipoDocumento(getTipoDocumento());
- clone.setFileEntryIdTemplate(getFileEntryIdTemplate());
- clone.setFileEntryIdBase(getFileEntryIdBase());
- clone.setFileEntryIdFirma(getFileEntryIdFirma());
- clone.setFileEntryIdInvio(getFileEntryIdInvio());
- clone.setDtCreateFileEntryInvio(getDtCreateFileEntryInvio());
- clone.setUserIdPrimaFirma(getUserIdPrimaFirma());
- clone.setUserIdSecondaFirma(getUserIdSecondaFirma());
- clone.setFirmaInCorso(getFirmaInCorso());
- clone.setTransactionIdPrimaFirma(getTransactionIdPrimaFirma());
- clone.setTransactionIdSecondaFirma(getTransactionIdSecondaFirma());
- clone.setInviato(getInviato());
- clone.setDtInvio(getDtInvio());
- clone.setAnnullato(getAnnullato());
- clone.setErrore(getErrore());
- clone.setSignal(getSignal());
- clone.setDtInvioSignal(getDtInvioSignal());
- clone.setTempistica(getTempistica());
- clone.setDtTempistica(getDtTempistica());
- clone.setDaxId(getDaxId());
- clone.setDtInvioDax(getDtInvioDax());
- clone.setErroreDax(getErroreDax());
- clone.setDtErroreDax(getDtErroreDax());
- clone.setJsonParameters(getJsonParameters());
- clone.setProtocollo(getProtocollo());
- clone.setInviatoTecnico(getInviatoTecnico());
- clone.setDettPraticaId(getDettPraticaId());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoAvviso boAvviso) {
- int value = 0;
-
- value = DateUtil.compareTo(getDtAvviso(), boAvviso.getDtAvviso());
-
- value = value * -1;
-
- if (value != 0) {
- return value;
- }
-
- return 0;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoAvvisoClp)) {
- return false;
- }
-
- BoAvvisoClp boAvviso = (BoAvvisoClp)obj;
-
- long primaryKey = boAvviso.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(77);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", avvisoId=");
- sb.append(getAvvisoId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", descLong=");
- sb.append(getDescLong());
- sb.append(", dtAvviso=");
- sb.append(getDtAvviso());
- sb.append(", tipoAvviso=");
- sb.append(getTipoAvviso());
- sb.append(", tipoDocumento=");
- sb.append(getTipoDocumento());
- sb.append(", fileEntryIdTemplate=");
- sb.append(getFileEntryIdTemplate());
- sb.append(", fileEntryIdBase=");
- sb.append(getFileEntryIdBase());
- sb.append(", fileEntryIdFirma=");
- sb.append(getFileEntryIdFirma());
- sb.append(", fileEntryIdInvio=");
- sb.append(getFileEntryIdInvio());
- sb.append(", dtCreateFileEntryInvio=");
- sb.append(getDtCreateFileEntryInvio());
- sb.append(", userIdPrimaFirma=");
- sb.append(getUserIdPrimaFirma());
- sb.append(", userIdSecondaFirma=");
- sb.append(getUserIdSecondaFirma());
- sb.append(", firmaInCorso=");
- sb.append(getFirmaInCorso());
- sb.append(", transactionIdPrimaFirma=");
- sb.append(getTransactionIdPrimaFirma());
- sb.append(", transactionIdSecondaFirma=");
- sb.append(getTransactionIdSecondaFirma());
- sb.append(", inviato=");
- sb.append(getInviato());
- sb.append(", dtInvio=");
- sb.append(getDtInvio());
- sb.append(", annullato=");
- sb.append(getAnnullato());
- sb.append(", errore=");
- sb.append(getErrore());
- sb.append(", signal=");
- sb.append(getSignal());
- sb.append(", dtInvioSignal=");
- sb.append(getDtInvioSignal());
- sb.append(", tempistica=");
- sb.append(getTempistica());
- sb.append(", dtTempistica=");
- sb.append(getDtTempistica());
- sb.append(", daxId=");
- sb.append(getDaxId());
- sb.append(", dtInvioDax=");
- sb.append(getDtInvioDax());
- sb.append(", erroreDax=");
- sb.append(getErroreDax());
- sb.append(", dtErroreDax=");
- sb.append(getDtErroreDax());
- sb.append(", jsonParameters=");
- sb.append(getJsonParameters());
- sb.append(", protocollo=");
- sb.append(getProtocollo());
- sb.append(", inviatoTecnico=");
- sb.append(getInviatoTecnico());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(118);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoAvviso");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "avvisoId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "descLong");
- sb.append(
- "dtAvviso");
- sb.append(
- "tipoAvviso");
- sb.append(
- "tipoDocumento");
- sb.append(
- "fileEntryIdTemplate");
- sb.append(
- "fileEntryIdBase");
- sb.append(
- "fileEntryIdFirma");
- sb.append(
- "fileEntryIdInvio");
- sb.append(
- "dtCreateFileEntryInvio");
- sb.append(
- "userIdPrimaFirma");
- sb.append(
- "userIdSecondaFirma");
- sb.append(
- "firmaInCorso");
- sb.append(
- "transactionIdPrimaFirma");
- sb.append(
- "transactionIdSecondaFirma");
- sb.append(
- "inviato");
- sb.append(
- "dtInvio");
- sb.append(
- "annullato");
- sb.append(
- "errore");
- sb.append(
- "signal");
- sb.append(
- "dtInvioSignal");
- sb.append(
- "tempistica");
- sb.append(
- "dtTempistica");
- sb.append(
- "daxId");
- sb.append(
- "dtInvioDax");
- sb.append(
- "erroreDax");
- sb.append(
- "dtErroreDax");
- sb.append(
- "jsonParameters");
- sb.append(
- "protocollo");
- sb.append(
- "inviatoTecnico");
- sb.append(
- "dettPraticaId");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _avvisoId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private String _descLong;
- private Date _dtAvviso;
- private String _tipoAvviso;
- private String _tipoDocumento;
- private long _fileEntryIdTemplate;
- private long _fileEntryIdBase;
- private long _fileEntryIdFirma;
- private long _fileEntryIdInvio;
- private Date _dtCreateFileEntryInvio;
- private long _userIdPrimaFirma;
- private long _userIdSecondaFirma;
- private boolean _firmaInCorso;
- private String _transactionIdPrimaFirma;
- private String _transactionIdSecondaFirma;
- private String _inviato;
- private Date _dtInvio;
- private boolean _annullato;
- private boolean _errore;
- private boolean _signal;
- private Date _dtInvioSignal;
- private boolean _tempistica;
- private Date _dtTempistica;
- private long _daxId;
- private Date _dtInvioDax;
- private String _erroreDax;
- private Date _dtErroreDax;
- private String _jsonParameters;
- private String _protocollo;
- private boolean _inviatoTecnico;
- private long _dettPraticaId;
- private BaseModel> _boAvvisoRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoModel.java
deleted file mode 100644
index aa0ae1aa..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoModel.java
+++ /dev/null
@@ -1,737 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoAvviso service. Represents a row in the "gc_avviso" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoAvvisoModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoAvvisoImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoAvviso
- * @see it.tref.liferay.portos.portosimport.model.impl.BoAvvisoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoAvvisoModelImpl
- * @generated
- */
-public interface BoAvvisoModel extends BaseModel, StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo avviso model instance should use the {@link BoAvviso} interface instead.
- */
-
- /**
- * Returns the primary key of this bo avviso.
- *
- * @return the primary key of this bo avviso
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo avviso.
- *
- * @param primaryKey the primary key of this bo avviso
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo avviso.
- *
- * @return the uuid of this bo avviso
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo avviso.
- *
- * @param uuid the uuid of this bo avviso
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the avviso ID of this bo avviso.
- *
- * @return the avviso ID of this bo avviso
- */
- public long getAvvisoId();
-
- /**
- * Sets the avviso ID of this bo avviso.
- *
- * @param avvisoId the avviso ID of this bo avviso
- */
- public void setAvvisoId(long avvisoId);
-
- /**
- * Returns the company ID of this bo avviso.
- *
- * @return the company ID of this bo avviso
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo avviso.
- *
- * @param companyId the company ID of this bo avviso
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo avviso.
- *
- * @return the user ID of this bo avviso
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo avviso.
- *
- * @param userId the user ID of this bo avviso
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo avviso.
- *
- * @return the user uuid of this bo avviso
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo avviso.
- *
- * @param userUuid the user uuid of this bo avviso
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo avviso.
- *
- * @return the user name of this bo avviso
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo avviso.
- *
- * @param userName the user name of this bo avviso
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo avviso.
- *
- * @return the create date of this bo avviso
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo avviso.
- *
- * @param createDate the create date of this bo avviso
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo avviso.
- *
- * @return the modified date of this bo avviso
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo avviso.
- *
- * @param modifiedDate the modified date of this bo avviso
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo avviso.
- *
- * @return the group ID of this bo avviso
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo avviso.
- *
- * @param groupId the group ID of this bo avviso
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the desc long of this bo avviso.
- *
- * @return the desc long of this bo avviso
- */
- @AutoEscape
- public String getDescLong();
-
- /**
- * Sets the desc long of this bo avviso.
- *
- * @param descLong the desc long of this bo avviso
- */
- public void setDescLong(String descLong);
-
- /**
- * Returns the dt avviso of this bo avviso.
- *
- * @return the dt avviso of this bo avviso
- */
- public Date getDtAvviso();
-
- /**
- * Sets the dt avviso of this bo avviso.
- *
- * @param dtAvviso the dt avviso of this bo avviso
- */
- public void setDtAvviso(Date dtAvviso);
-
- /**
- * Returns the tipo avviso of this bo avviso.
- *
- * @return the tipo avviso of this bo avviso
- */
- @AutoEscape
- public String getTipoAvviso();
-
- /**
- * Sets the tipo avviso of this bo avviso.
- *
- * @param tipoAvviso the tipo avviso of this bo avviso
- */
- public void setTipoAvviso(String tipoAvviso);
-
- /**
- * Returns the tipo documento of this bo avviso.
- *
- * @return the tipo documento of this bo avviso
- */
- @AutoEscape
- public String getTipoDocumento();
-
- /**
- * Sets the tipo documento of this bo avviso.
- *
- * @param tipoDocumento the tipo documento of this bo avviso
- */
- public void setTipoDocumento(String tipoDocumento);
-
- /**
- * Returns the file entry ID template of this bo avviso.
- *
- * @return the file entry ID template of this bo avviso
- */
- public long getFileEntryIdTemplate();
-
- /**
- * Sets the file entry ID template of this bo avviso.
- *
- * @param fileEntryIdTemplate the file entry ID template of this bo avviso
- */
- public void setFileEntryIdTemplate(long fileEntryIdTemplate);
-
- /**
- * Returns the file entry ID base of this bo avviso.
- *
- * @return the file entry ID base of this bo avviso
- */
- public long getFileEntryIdBase();
-
- /**
- * Sets the file entry ID base of this bo avviso.
- *
- * @param fileEntryIdBase the file entry ID base of this bo avviso
- */
- public void setFileEntryIdBase(long fileEntryIdBase);
-
- /**
- * Returns the file entry ID firma of this bo avviso.
- *
- * @return the file entry ID firma of this bo avviso
- */
- public long getFileEntryIdFirma();
-
- /**
- * Sets the file entry ID firma of this bo avviso.
- *
- * @param fileEntryIdFirma the file entry ID firma of this bo avviso
- */
- public void setFileEntryIdFirma(long fileEntryIdFirma);
-
- /**
- * Returns the file entry ID invio of this bo avviso.
- *
- * @return the file entry ID invio of this bo avviso
- */
- public long getFileEntryIdInvio();
-
- /**
- * Sets the file entry ID invio of this bo avviso.
- *
- * @param fileEntryIdInvio the file entry ID invio of this bo avviso
- */
- public void setFileEntryIdInvio(long fileEntryIdInvio);
-
- /**
- * Returns the dt create file entry invio of this bo avviso.
- *
- * @return the dt create file entry invio of this bo avviso
- */
- public Date getDtCreateFileEntryInvio();
-
- /**
- * Sets the dt create file entry invio of this bo avviso.
- *
- * @param dtCreateFileEntryInvio the dt create file entry invio of this bo avviso
- */
- public void setDtCreateFileEntryInvio(Date dtCreateFileEntryInvio);
-
- /**
- * Returns the user ID prima firma of this bo avviso.
- *
- * @return the user ID prima firma of this bo avviso
- */
- public long getUserIdPrimaFirma();
-
- /**
- * Sets the user ID prima firma of this bo avviso.
- *
- * @param userIdPrimaFirma the user ID prima firma of this bo avviso
- */
- public void setUserIdPrimaFirma(long userIdPrimaFirma);
-
- /**
- * Returns the user ID seconda firma of this bo avviso.
- *
- * @return the user ID seconda firma of this bo avviso
- */
- public long getUserIdSecondaFirma();
-
- /**
- * Sets the user ID seconda firma of this bo avviso.
- *
- * @param userIdSecondaFirma the user ID seconda firma of this bo avviso
- */
- public void setUserIdSecondaFirma(long userIdSecondaFirma);
-
- /**
- * Returns the firma in corso of this bo avviso.
- *
- * @return the firma in corso of this bo avviso
- */
- public boolean getFirmaInCorso();
-
- /**
- * Returns true if this bo avviso is firma in corso.
- *
- * @return true if this bo avviso is firma in corso; false otherwise
- */
- public boolean isFirmaInCorso();
-
- /**
- * Sets whether this bo avviso is firma in corso.
- *
- * @param firmaInCorso the firma in corso of this bo avviso
- */
- public void setFirmaInCorso(boolean firmaInCorso);
-
- /**
- * Returns the transaction ID prima firma of this bo avviso.
- *
- * @return the transaction ID prima firma of this bo avviso
- */
- @AutoEscape
- public String getTransactionIdPrimaFirma();
-
- /**
- * Sets the transaction ID prima firma of this bo avviso.
- *
- * @param transactionIdPrimaFirma the transaction ID prima firma of this bo avviso
- */
- public void setTransactionIdPrimaFirma(String transactionIdPrimaFirma);
-
- /**
- * Returns the transaction ID seconda firma of this bo avviso.
- *
- * @return the transaction ID seconda firma of this bo avviso
- */
- @AutoEscape
- public String getTransactionIdSecondaFirma();
-
- /**
- * Sets the transaction ID seconda firma of this bo avviso.
- *
- * @param transactionIdSecondaFirma the transaction ID seconda firma of this bo avviso
- */
- public void setTransactionIdSecondaFirma(String transactionIdSecondaFirma);
-
- /**
- * Returns the inviato of this bo avviso.
- *
- * @return the inviato of this bo avviso
- */
- @AutoEscape
- public String getInviato();
-
- /**
- * Sets the inviato of this bo avviso.
- *
- * @param inviato the inviato of this bo avviso
- */
- public void setInviato(String inviato);
-
- /**
- * Returns the dt invio of this bo avviso.
- *
- * @return the dt invio of this bo avviso
- */
- public Date getDtInvio();
-
- /**
- * Sets the dt invio of this bo avviso.
- *
- * @param dtInvio the dt invio of this bo avviso
- */
- public void setDtInvio(Date dtInvio);
-
- /**
- * Returns the annullato of this bo avviso.
- *
- * @return the annullato of this bo avviso
- */
- public boolean getAnnullato();
-
- /**
- * Returns true if this bo avviso is annullato.
- *
- * @return true if this bo avviso is annullato; false otherwise
- */
- public boolean isAnnullato();
-
- /**
- * Sets whether this bo avviso is annullato.
- *
- * @param annullato the annullato of this bo avviso
- */
- public void setAnnullato(boolean annullato);
-
- /**
- * Returns the errore of this bo avviso.
- *
- * @return the errore of this bo avviso
- */
- public boolean getErrore();
-
- /**
- * Returns true if this bo avviso is errore.
- *
- * @return true if this bo avviso is errore; false otherwise
- */
- public boolean isErrore();
-
- /**
- * Sets whether this bo avviso is errore.
- *
- * @param errore the errore of this bo avviso
- */
- public void setErrore(boolean errore);
-
- /**
- * Returns the signal of this bo avviso.
- *
- * @return the signal of this bo avviso
- */
- public boolean getSignal();
-
- /**
- * Returns true if this bo avviso is signal.
- *
- * @return true if this bo avviso is signal; false otherwise
- */
- public boolean isSignal();
-
- /**
- * Sets whether this bo avviso is signal.
- *
- * @param signal the signal of this bo avviso
- */
- public void setSignal(boolean signal);
-
- /**
- * Returns the dt invio signal of this bo avviso.
- *
- * @return the dt invio signal of this bo avviso
- */
- public Date getDtInvioSignal();
-
- /**
- * Sets the dt invio signal of this bo avviso.
- *
- * @param dtInvioSignal the dt invio signal of this bo avviso
- */
- public void setDtInvioSignal(Date dtInvioSignal);
-
- /**
- * Returns the tempistica of this bo avviso.
- *
- * @return the tempistica of this bo avviso
- */
- public boolean getTempistica();
-
- /**
- * Returns true if this bo avviso is tempistica.
- *
- * @return true if this bo avviso is tempistica; false otherwise
- */
- public boolean isTempistica();
-
- /**
- * Sets whether this bo avviso is tempistica.
- *
- * @param tempistica the tempistica of this bo avviso
- */
- public void setTempistica(boolean tempistica);
-
- /**
- * Returns the dt tempistica of this bo avviso.
- *
- * @return the dt tempistica of this bo avviso
- */
- public Date getDtTempistica();
-
- /**
- * Sets the dt tempistica of this bo avviso.
- *
- * @param dtTempistica the dt tempistica of this bo avviso
- */
- public void setDtTempistica(Date dtTempistica);
-
- /**
- * Returns the dax ID of this bo avviso.
- *
- * @return the dax ID of this bo avviso
- */
- public long getDaxId();
-
- /**
- * Sets the dax ID of this bo avviso.
- *
- * @param daxId the dax ID of this bo avviso
- */
- public void setDaxId(long daxId);
-
- /**
- * Returns the dt invio dax of this bo avviso.
- *
- * @return the dt invio dax of this bo avviso
- */
- public Date getDtInvioDax();
-
- /**
- * Sets the dt invio dax of this bo avviso.
- *
- * @param dtInvioDax the dt invio dax of this bo avviso
- */
- public void setDtInvioDax(Date dtInvioDax);
-
- /**
- * Returns the errore dax of this bo avviso.
- *
- * @return the errore dax of this bo avviso
- */
- @AutoEscape
- public String getErroreDax();
-
- /**
- * Sets the errore dax of this bo avviso.
- *
- * @param erroreDax the errore dax of this bo avviso
- */
- public void setErroreDax(String erroreDax);
-
- /**
- * Returns the dt errore dax of this bo avviso.
- *
- * @return the dt errore dax of this bo avviso
- */
- public Date getDtErroreDax();
-
- /**
- * Sets the dt errore dax of this bo avviso.
- *
- * @param dtErroreDax the dt errore dax of this bo avviso
- */
- public void setDtErroreDax(Date dtErroreDax);
-
- /**
- * Returns the json parameters of this bo avviso.
- *
- * @return the json parameters of this bo avviso
- */
- @AutoEscape
- public String getJsonParameters();
-
- /**
- * Sets the json parameters of this bo avviso.
- *
- * @param jsonParameters the json parameters of this bo avviso
- */
- public void setJsonParameters(String jsonParameters);
-
- /**
- * Returns the protocollo of this bo avviso.
- *
- * @return the protocollo of this bo avviso
- */
- @AutoEscape
- public String getProtocollo();
-
- /**
- * Sets the protocollo of this bo avviso.
- *
- * @param protocollo the protocollo of this bo avviso
- */
- public void setProtocollo(String protocollo);
-
- /**
- * Returns the inviato tecnico of this bo avviso.
- *
- * @return the inviato tecnico of this bo avviso
- */
- public boolean getInviatoTecnico();
-
- /**
- * Returns true if this bo avviso is inviato tecnico.
- *
- * @return true if this bo avviso is inviato tecnico; false otherwise
- */
- public boolean isInviatoTecnico();
-
- /**
- * Sets whether this bo avviso is inviato tecnico.
- *
- * @param inviatoTecnico the inviato tecnico of this bo avviso
- */
- public void setInviatoTecnico(boolean inviatoTecnico);
-
- /**
- * Returns the dett pratica ID of this bo avviso.
- *
- * @return the dett pratica ID of this bo avviso
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo avviso.
- *
- * @param dettPraticaId the dett pratica ID of this bo avviso
- */
- public void setDettPraticaId(long dettPraticaId);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoAvviso boAvviso);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoAvviso toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoAvviso toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoSoap.java
deleted file mode 100644
index 7221a4fd..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoSoap.java
+++ /dev/null
@@ -1,489 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoAvvisoSoap implements Serializable {
- public static BoAvvisoSoap toSoapModel(BoAvviso model) {
- BoAvvisoSoap soapModel = new BoAvvisoSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setAvvisoId(model.getAvvisoId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setDescLong(model.getDescLong());
- soapModel.setDtAvviso(model.getDtAvviso());
- soapModel.setTipoAvviso(model.getTipoAvviso());
- soapModel.setTipoDocumento(model.getTipoDocumento());
- soapModel.setFileEntryIdTemplate(model.getFileEntryIdTemplate());
- soapModel.setFileEntryIdBase(model.getFileEntryIdBase());
- soapModel.setFileEntryIdFirma(model.getFileEntryIdFirma());
- soapModel.setFileEntryIdInvio(model.getFileEntryIdInvio());
- soapModel.setDtCreateFileEntryInvio(model.getDtCreateFileEntryInvio());
- soapModel.setUserIdPrimaFirma(model.getUserIdPrimaFirma());
- soapModel.setUserIdSecondaFirma(model.getUserIdSecondaFirma());
- soapModel.setFirmaInCorso(model.getFirmaInCorso());
- soapModel.setTransactionIdPrimaFirma(model.getTransactionIdPrimaFirma());
- soapModel.setTransactionIdSecondaFirma(model.getTransactionIdSecondaFirma());
- soapModel.setInviato(model.getInviato());
- soapModel.setDtInvio(model.getDtInvio());
- soapModel.setAnnullato(model.getAnnullato());
- soapModel.setErrore(model.getErrore());
- soapModel.setSignal(model.getSignal());
- soapModel.setDtInvioSignal(model.getDtInvioSignal());
- soapModel.setTempistica(model.getTempistica());
- soapModel.setDtTempistica(model.getDtTempistica());
- soapModel.setDaxId(model.getDaxId());
- soapModel.setDtInvioDax(model.getDtInvioDax());
- soapModel.setErroreDax(model.getErroreDax());
- soapModel.setDtErroreDax(model.getDtErroreDax());
- soapModel.setJsonParameters(model.getJsonParameters());
- soapModel.setProtocollo(model.getProtocollo());
- soapModel.setInviatoTecnico(model.getInviatoTecnico());
- soapModel.setDettPraticaId(model.getDettPraticaId());
-
- return soapModel;
- }
-
- public static BoAvvisoSoap[] toSoapModels(BoAvviso[] models) {
- BoAvvisoSoap[] soapModels = new BoAvvisoSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoAvvisoSoap[][] toSoapModels(BoAvviso[][] models) {
- BoAvvisoSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoAvvisoSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoAvvisoSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoAvvisoSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoAvviso model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoAvvisoSoap[soapModels.size()]);
- }
-
- public BoAvvisoSoap() {
- }
-
- public long getPrimaryKey() {
- return _avvisoId;
- }
-
- public void setPrimaryKey(long pk) {
- setAvvisoId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getAvvisoId() {
- return _avvisoId;
- }
-
- public void setAvvisoId(long avvisoId) {
- _avvisoId = avvisoId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public String getDescLong() {
- return _descLong;
- }
-
- public void setDescLong(String descLong) {
- _descLong = descLong;
- }
-
- public Date getDtAvviso() {
- return _dtAvviso;
- }
-
- public void setDtAvviso(Date dtAvviso) {
- _dtAvviso = dtAvviso;
- }
-
- public String getTipoAvviso() {
- return _tipoAvviso;
- }
-
- public void setTipoAvviso(String tipoAvviso) {
- _tipoAvviso = tipoAvviso;
- }
-
- public String getTipoDocumento() {
- return _tipoDocumento;
- }
-
- public void setTipoDocumento(String tipoDocumento) {
- _tipoDocumento = tipoDocumento;
- }
-
- public long getFileEntryIdTemplate() {
- return _fileEntryIdTemplate;
- }
-
- public void setFileEntryIdTemplate(long fileEntryIdTemplate) {
- _fileEntryIdTemplate = fileEntryIdTemplate;
- }
-
- public long getFileEntryIdBase() {
- return _fileEntryIdBase;
- }
-
- public void setFileEntryIdBase(long fileEntryIdBase) {
- _fileEntryIdBase = fileEntryIdBase;
- }
-
- public long getFileEntryIdFirma() {
- return _fileEntryIdFirma;
- }
-
- public void setFileEntryIdFirma(long fileEntryIdFirma) {
- _fileEntryIdFirma = fileEntryIdFirma;
- }
-
- public long getFileEntryIdInvio() {
- return _fileEntryIdInvio;
- }
-
- public void setFileEntryIdInvio(long fileEntryIdInvio) {
- _fileEntryIdInvio = fileEntryIdInvio;
- }
-
- public Date getDtCreateFileEntryInvio() {
- return _dtCreateFileEntryInvio;
- }
-
- public void setDtCreateFileEntryInvio(Date dtCreateFileEntryInvio) {
- _dtCreateFileEntryInvio = dtCreateFileEntryInvio;
- }
-
- public long getUserIdPrimaFirma() {
- return _userIdPrimaFirma;
- }
-
- public void setUserIdPrimaFirma(long userIdPrimaFirma) {
- _userIdPrimaFirma = userIdPrimaFirma;
- }
-
- public long getUserIdSecondaFirma() {
- return _userIdSecondaFirma;
- }
-
- public void setUserIdSecondaFirma(long userIdSecondaFirma) {
- _userIdSecondaFirma = userIdSecondaFirma;
- }
-
- public boolean getFirmaInCorso() {
- return _firmaInCorso;
- }
-
- public boolean isFirmaInCorso() {
- return _firmaInCorso;
- }
-
- public void setFirmaInCorso(boolean firmaInCorso) {
- _firmaInCorso = firmaInCorso;
- }
-
- public String getTransactionIdPrimaFirma() {
- return _transactionIdPrimaFirma;
- }
-
- public void setTransactionIdPrimaFirma(String transactionIdPrimaFirma) {
- _transactionIdPrimaFirma = transactionIdPrimaFirma;
- }
-
- public String getTransactionIdSecondaFirma() {
- return _transactionIdSecondaFirma;
- }
-
- public void setTransactionIdSecondaFirma(String transactionIdSecondaFirma) {
- _transactionIdSecondaFirma = transactionIdSecondaFirma;
- }
-
- public String getInviato() {
- return _inviato;
- }
-
- public void setInviato(String inviato) {
- _inviato = inviato;
- }
-
- public Date getDtInvio() {
- return _dtInvio;
- }
-
- public void setDtInvio(Date dtInvio) {
- _dtInvio = dtInvio;
- }
-
- public boolean getAnnullato() {
- return _annullato;
- }
-
- public boolean isAnnullato() {
- return _annullato;
- }
-
- public void setAnnullato(boolean annullato) {
- _annullato = annullato;
- }
-
- public boolean getErrore() {
- return _errore;
- }
-
- public boolean isErrore() {
- return _errore;
- }
-
- public void setErrore(boolean errore) {
- _errore = errore;
- }
-
- public boolean getSignal() {
- return _signal;
- }
-
- public boolean isSignal() {
- return _signal;
- }
-
- public void setSignal(boolean signal) {
- _signal = signal;
- }
-
- public Date getDtInvioSignal() {
- return _dtInvioSignal;
- }
-
- public void setDtInvioSignal(Date dtInvioSignal) {
- _dtInvioSignal = dtInvioSignal;
- }
-
- public boolean getTempistica() {
- return _tempistica;
- }
-
- public boolean isTempistica() {
- return _tempistica;
- }
-
- public void setTempistica(boolean tempistica) {
- _tempistica = tempistica;
- }
-
- public Date getDtTempistica() {
- return _dtTempistica;
- }
-
- public void setDtTempistica(Date dtTempistica) {
- _dtTempistica = dtTempistica;
- }
-
- public long getDaxId() {
- return _daxId;
- }
-
- public void setDaxId(long daxId) {
- _daxId = daxId;
- }
-
- public Date getDtInvioDax() {
- return _dtInvioDax;
- }
-
- public void setDtInvioDax(Date dtInvioDax) {
- _dtInvioDax = dtInvioDax;
- }
-
- public String getErroreDax() {
- return _erroreDax;
- }
-
- public void setErroreDax(String erroreDax) {
- _erroreDax = erroreDax;
- }
-
- public Date getDtErroreDax() {
- return _dtErroreDax;
- }
-
- public void setDtErroreDax(Date dtErroreDax) {
- _dtErroreDax = dtErroreDax;
- }
-
- public String getJsonParameters() {
- return _jsonParameters;
- }
-
- public void setJsonParameters(String jsonParameters) {
- _jsonParameters = jsonParameters;
- }
-
- public String getProtocollo() {
- return _protocollo;
- }
-
- public void setProtocollo(String protocollo) {
- _protocollo = protocollo;
- }
-
- public boolean getInviatoTecnico() {
- return _inviatoTecnico;
- }
-
- public boolean isInviatoTecnico() {
- return _inviatoTecnico;
- }
-
- public void setInviatoTecnico(boolean inviatoTecnico) {
- _inviatoTecnico = inviatoTecnico;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- private String _uuid;
- private long _avvisoId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private String _descLong;
- private Date _dtAvviso;
- private String _tipoAvviso;
- private String _tipoDocumento;
- private long _fileEntryIdTemplate;
- private long _fileEntryIdBase;
- private long _fileEntryIdFirma;
- private long _fileEntryIdInvio;
- private Date _dtCreateFileEntryInvio;
- private long _userIdPrimaFirma;
- private long _userIdSecondaFirma;
- private boolean _firmaInCorso;
- private String _transactionIdPrimaFirma;
- private String _transactionIdSecondaFirma;
- private String _inviato;
- private Date _dtInvio;
- private boolean _annullato;
- private boolean _errore;
- private boolean _signal;
- private Date _dtInvioSignal;
- private boolean _tempistica;
- private Date _dtTempistica;
- private long _daxId;
- private Date _dtInvioDax;
- private String _erroreDax;
- private Date _dtErroreDax;
- private String _jsonParameters;
- private String _protocollo;
- private boolean _inviatoTecnico;
- private long _dettPraticaId;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoWrapper.java
deleted file mode 100644
index c3733dbe..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoAvvisoWrapper.java
+++ /dev/null
@@ -1,1341 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoAvviso}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoAvviso
- * @generated
- */
-public class BoAvvisoWrapper implements BoAvviso, ModelWrapper {
- public BoAvvisoWrapper(BoAvviso boAvviso) {
- _boAvviso = boAvviso;
- }
-
- @Override
- public Class> getModelClass() {
- return BoAvviso.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoAvviso.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("avvisoId", getAvvisoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("descLong", getDescLong());
- attributes.put("dtAvviso", getDtAvviso());
- attributes.put("tipoAvviso", getTipoAvviso());
- attributes.put("tipoDocumento", getTipoDocumento());
- attributes.put("fileEntryIdTemplate", getFileEntryIdTemplate());
- attributes.put("fileEntryIdBase", getFileEntryIdBase());
- attributes.put("fileEntryIdFirma", getFileEntryIdFirma());
- attributes.put("fileEntryIdInvio", getFileEntryIdInvio());
- attributes.put("dtCreateFileEntryInvio", getDtCreateFileEntryInvio());
- attributes.put("userIdPrimaFirma", getUserIdPrimaFirma());
- attributes.put("userIdSecondaFirma", getUserIdSecondaFirma());
- attributes.put("firmaInCorso", getFirmaInCorso());
- attributes.put("transactionIdPrimaFirma", getTransactionIdPrimaFirma());
- attributes.put("transactionIdSecondaFirma",
- getTransactionIdSecondaFirma());
- attributes.put("inviato", getInviato());
- attributes.put("dtInvio", getDtInvio());
- attributes.put("annullato", getAnnullato());
- attributes.put("errore", getErrore());
- attributes.put("signal", getSignal());
- attributes.put("dtInvioSignal", getDtInvioSignal());
- attributes.put("tempistica", getTempistica());
- attributes.put("dtTempistica", getDtTempistica());
- attributes.put("daxId", getDaxId());
- attributes.put("dtInvioDax", getDtInvioDax());
- attributes.put("erroreDax", getErroreDax());
- attributes.put("dtErroreDax", getDtErroreDax());
- attributes.put("jsonParameters", getJsonParameters());
- attributes.put("protocollo", getProtocollo());
- attributes.put("inviatoTecnico", getInviatoTecnico());
- attributes.put("dettPraticaId", getDettPraticaId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long avvisoId = (Long)attributes.get("avvisoId");
-
- if (avvisoId != null) {
- setAvvisoId(avvisoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
-
- Date dtAvviso = (Date)attributes.get("dtAvviso");
-
- if (dtAvviso != null) {
- setDtAvviso(dtAvviso);
- }
-
- String tipoAvviso = (String)attributes.get("tipoAvviso");
-
- if (tipoAvviso != null) {
- setTipoAvviso(tipoAvviso);
- }
-
- String tipoDocumento = (String)attributes.get("tipoDocumento");
-
- if (tipoDocumento != null) {
- setTipoDocumento(tipoDocumento);
- }
-
- Long fileEntryIdTemplate = (Long)attributes.get("fileEntryIdTemplate");
-
- if (fileEntryIdTemplate != null) {
- setFileEntryIdTemplate(fileEntryIdTemplate);
- }
-
- Long fileEntryIdBase = (Long)attributes.get("fileEntryIdBase");
-
- if (fileEntryIdBase != null) {
- setFileEntryIdBase(fileEntryIdBase);
- }
-
- Long fileEntryIdFirma = (Long)attributes.get("fileEntryIdFirma");
-
- if (fileEntryIdFirma != null) {
- setFileEntryIdFirma(fileEntryIdFirma);
- }
-
- Long fileEntryIdInvio = (Long)attributes.get("fileEntryIdInvio");
-
- if (fileEntryIdInvio != null) {
- setFileEntryIdInvio(fileEntryIdInvio);
- }
-
- Date dtCreateFileEntryInvio = (Date)attributes.get(
- "dtCreateFileEntryInvio");
-
- if (dtCreateFileEntryInvio != null) {
- setDtCreateFileEntryInvio(dtCreateFileEntryInvio);
- }
-
- Long userIdPrimaFirma = (Long)attributes.get("userIdPrimaFirma");
-
- if (userIdPrimaFirma != null) {
- setUserIdPrimaFirma(userIdPrimaFirma);
- }
-
- Long userIdSecondaFirma = (Long)attributes.get("userIdSecondaFirma");
-
- if (userIdSecondaFirma != null) {
- setUserIdSecondaFirma(userIdSecondaFirma);
- }
-
- Boolean firmaInCorso = (Boolean)attributes.get("firmaInCorso");
-
- if (firmaInCorso != null) {
- setFirmaInCorso(firmaInCorso);
- }
-
- String transactionIdPrimaFirma = (String)attributes.get(
- "transactionIdPrimaFirma");
-
- if (transactionIdPrimaFirma != null) {
- setTransactionIdPrimaFirma(transactionIdPrimaFirma);
- }
-
- String transactionIdSecondaFirma = (String)attributes.get(
- "transactionIdSecondaFirma");
-
- if (transactionIdSecondaFirma != null) {
- setTransactionIdSecondaFirma(transactionIdSecondaFirma);
- }
-
- String inviato = (String)attributes.get("inviato");
-
- if (inviato != null) {
- setInviato(inviato);
- }
-
- Date dtInvio = (Date)attributes.get("dtInvio");
-
- if (dtInvio != null) {
- setDtInvio(dtInvio);
- }
-
- Boolean annullato = (Boolean)attributes.get("annullato");
-
- if (annullato != null) {
- setAnnullato(annullato);
- }
-
- Boolean errore = (Boolean)attributes.get("errore");
-
- if (errore != null) {
- setErrore(errore);
- }
-
- Boolean signal = (Boolean)attributes.get("signal");
-
- if (signal != null) {
- setSignal(signal);
- }
-
- Date dtInvioSignal = (Date)attributes.get("dtInvioSignal");
-
- if (dtInvioSignal != null) {
- setDtInvioSignal(dtInvioSignal);
- }
-
- Boolean tempistica = (Boolean)attributes.get("tempistica");
-
- if (tempistica != null) {
- setTempistica(tempistica);
- }
-
- Date dtTempistica = (Date)attributes.get("dtTempistica");
-
- if (dtTempistica != null) {
- setDtTempistica(dtTempistica);
- }
-
- Long daxId = (Long)attributes.get("daxId");
-
- if (daxId != null) {
- setDaxId(daxId);
- }
-
- Date dtInvioDax = (Date)attributes.get("dtInvioDax");
-
- if (dtInvioDax != null) {
- setDtInvioDax(dtInvioDax);
- }
-
- String erroreDax = (String)attributes.get("erroreDax");
-
- if (erroreDax != null) {
- setErroreDax(erroreDax);
- }
-
- Date dtErroreDax = (Date)attributes.get("dtErroreDax");
-
- if (dtErroreDax != null) {
- setDtErroreDax(dtErroreDax);
- }
-
- String jsonParameters = (String)attributes.get("jsonParameters");
-
- if (jsonParameters != null) {
- setJsonParameters(jsonParameters);
- }
-
- String protocollo = (String)attributes.get("protocollo");
-
- if (protocollo != null) {
- setProtocollo(protocollo);
- }
-
- Boolean inviatoTecnico = (Boolean)attributes.get("inviatoTecnico");
-
- if (inviatoTecnico != null) {
- setInviatoTecnico(inviatoTecnico);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
- }
-
- /**
- * Returns the primary key of this bo avviso.
- *
- * @return the primary key of this bo avviso
- */
- @Override
- public long getPrimaryKey() {
- return _boAvviso.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo avviso.
- *
- * @param primaryKey the primary key of this bo avviso
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boAvviso.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo avviso.
- *
- * @return the uuid of this bo avviso
- */
- @Override
- public java.lang.String getUuid() {
- return _boAvviso.getUuid();
- }
-
- /**
- * Sets the uuid of this bo avviso.
- *
- * @param uuid the uuid of this bo avviso
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boAvviso.setUuid(uuid);
- }
-
- /**
- * Returns the avviso ID of this bo avviso.
- *
- * @return the avviso ID of this bo avviso
- */
- @Override
- public long getAvvisoId() {
- return _boAvviso.getAvvisoId();
- }
-
- /**
- * Sets the avviso ID of this bo avviso.
- *
- * @param avvisoId the avviso ID of this bo avviso
- */
- @Override
- public void setAvvisoId(long avvisoId) {
- _boAvviso.setAvvisoId(avvisoId);
- }
-
- /**
- * Returns the company ID of this bo avviso.
- *
- * @return the company ID of this bo avviso
- */
- @Override
- public long getCompanyId() {
- return _boAvviso.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo avviso.
- *
- * @param companyId the company ID of this bo avviso
- */
- @Override
- public void setCompanyId(long companyId) {
- _boAvviso.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo avviso.
- *
- * @return the user ID of this bo avviso
- */
- @Override
- public long getUserId() {
- return _boAvviso.getUserId();
- }
-
- /**
- * Sets the user ID of this bo avviso.
- *
- * @param userId the user ID of this bo avviso
- */
- @Override
- public void setUserId(long userId) {
- _boAvviso.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo avviso.
- *
- * @return the user uuid of this bo avviso
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boAvviso.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo avviso.
- *
- * @param userUuid the user uuid of this bo avviso
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boAvviso.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo avviso.
- *
- * @return the user name of this bo avviso
- */
- @Override
- public java.lang.String getUserName() {
- return _boAvviso.getUserName();
- }
-
- /**
- * Sets the user name of this bo avviso.
- *
- * @param userName the user name of this bo avviso
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boAvviso.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo avviso.
- *
- * @return the create date of this bo avviso
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boAvviso.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo avviso.
- *
- * @param createDate the create date of this bo avviso
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boAvviso.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo avviso.
- *
- * @return the modified date of this bo avviso
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boAvviso.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo avviso.
- *
- * @param modifiedDate the modified date of this bo avviso
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boAvviso.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo avviso.
- *
- * @return the group ID of this bo avviso
- */
- @Override
- public long getGroupId() {
- return _boAvviso.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo avviso.
- *
- * @param groupId the group ID of this bo avviso
- */
- @Override
- public void setGroupId(long groupId) {
- _boAvviso.setGroupId(groupId);
- }
-
- /**
- * Returns the desc long of this bo avviso.
- *
- * @return the desc long of this bo avviso
- */
- @Override
- public java.lang.String getDescLong() {
- return _boAvviso.getDescLong();
- }
-
- /**
- * Sets the desc long of this bo avviso.
- *
- * @param descLong the desc long of this bo avviso
- */
- @Override
- public void setDescLong(java.lang.String descLong) {
- _boAvviso.setDescLong(descLong);
- }
-
- /**
- * Returns the dt avviso of this bo avviso.
- *
- * @return the dt avviso of this bo avviso
- */
- @Override
- public java.util.Date getDtAvviso() {
- return _boAvviso.getDtAvviso();
- }
-
- /**
- * Sets the dt avviso of this bo avviso.
- *
- * @param dtAvviso the dt avviso of this bo avviso
- */
- @Override
- public void setDtAvviso(java.util.Date dtAvviso) {
- _boAvviso.setDtAvviso(dtAvviso);
- }
-
- /**
- * Returns the tipo avviso of this bo avviso.
- *
- * @return the tipo avviso of this bo avviso
- */
- @Override
- public java.lang.String getTipoAvviso() {
- return _boAvviso.getTipoAvviso();
- }
-
- /**
- * Sets the tipo avviso of this bo avviso.
- *
- * @param tipoAvviso the tipo avviso of this bo avviso
- */
- @Override
- public void setTipoAvviso(java.lang.String tipoAvviso) {
- _boAvviso.setTipoAvviso(tipoAvviso);
- }
-
- /**
- * Returns the tipo documento of this bo avviso.
- *
- * @return the tipo documento of this bo avviso
- */
- @Override
- public java.lang.String getTipoDocumento() {
- return _boAvviso.getTipoDocumento();
- }
-
- /**
- * Sets the tipo documento of this bo avviso.
- *
- * @param tipoDocumento the tipo documento of this bo avviso
- */
- @Override
- public void setTipoDocumento(java.lang.String tipoDocumento) {
- _boAvviso.setTipoDocumento(tipoDocumento);
- }
-
- /**
- * Returns the file entry ID template of this bo avviso.
- *
- * @return the file entry ID template of this bo avviso
- */
- @Override
- public long getFileEntryIdTemplate() {
- return _boAvviso.getFileEntryIdTemplate();
- }
-
- /**
- * Sets the file entry ID template of this bo avviso.
- *
- * @param fileEntryIdTemplate the file entry ID template of this bo avviso
- */
- @Override
- public void setFileEntryIdTemplate(long fileEntryIdTemplate) {
- _boAvviso.setFileEntryIdTemplate(fileEntryIdTemplate);
- }
-
- /**
- * Returns the file entry ID base of this bo avviso.
- *
- * @return the file entry ID base of this bo avviso
- */
- @Override
- public long getFileEntryIdBase() {
- return _boAvviso.getFileEntryIdBase();
- }
-
- /**
- * Sets the file entry ID base of this bo avviso.
- *
- * @param fileEntryIdBase the file entry ID base of this bo avviso
- */
- @Override
- public void setFileEntryIdBase(long fileEntryIdBase) {
- _boAvviso.setFileEntryIdBase(fileEntryIdBase);
- }
-
- /**
- * Returns the file entry ID firma of this bo avviso.
- *
- * @return the file entry ID firma of this bo avviso
- */
- @Override
- public long getFileEntryIdFirma() {
- return _boAvviso.getFileEntryIdFirma();
- }
-
- /**
- * Sets the file entry ID firma of this bo avviso.
- *
- * @param fileEntryIdFirma the file entry ID firma of this bo avviso
- */
- @Override
- public void setFileEntryIdFirma(long fileEntryIdFirma) {
- _boAvviso.setFileEntryIdFirma(fileEntryIdFirma);
- }
-
- /**
- * Returns the file entry ID invio of this bo avviso.
- *
- * @return the file entry ID invio of this bo avviso
- */
- @Override
- public long getFileEntryIdInvio() {
- return _boAvviso.getFileEntryIdInvio();
- }
-
- /**
- * Sets the file entry ID invio of this bo avviso.
- *
- * @param fileEntryIdInvio the file entry ID invio of this bo avviso
- */
- @Override
- public void setFileEntryIdInvio(long fileEntryIdInvio) {
- _boAvviso.setFileEntryIdInvio(fileEntryIdInvio);
- }
-
- /**
- * Returns the dt create file entry invio of this bo avviso.
- *
- * @return the dt create file entry invio of this bo avviso
- */
- @Override
- public java.util.Date getDtCreateFileEntryInvio() {
- return _boAvviso.getDtCreateFileEntryInvio();
- }
-
- /**
- * Sets the dt create file entry invio of this bo avviso.
- *
- * @param dtCreateFileEntryInvio the dt create file entry invio of this bo avviso
- */
- @Override
- public void setDtCreateFileEntryInvio(java.util.Date dtCreateFileEntryInvio) {
- _boAvviso.setDtCreateFileEntryInvio(dtCreateFileEntryInvio);
- }
-
- /**
- * Returns the user ID prima firma of this bo avviso.
- *
- * @return the user ID prima firma of this bo avviso
- */
- @Override
- public long getUserIdPrimaFirma() {
- return _boAvviso.getUserIdPrimaFirma();
- }
-
- /**
- * Sets the user ID prima firma of this bo avviso.
- *
- * @param userIdPrimaFirma the user ID prima firma of this bo avviso
- */
- @Override
- public void setUserIdPrimaFirma(long userIdPrimaFirma) {
- _boAvviso.setUserIdPrimaFirma(userIdPrimaFirma);
- }
-
- /**
- * Returns the user ID seconda firma of this bo avviso.
- *
- * @return the user ID seconda firma of this bo avviso
- */
- @Override
- public long getUserIdSecondaFirma() {
- return _boAvviso.getUserIdSecondaFirma();
- }
-
- /**
- * Sets the user ID seconda firma of this bo avviso.
- *
- * @param userIdSecondaFirma the user ID seconda firma of this bo avviso
- */
- @Override
- public void setUserIdSecondaFirma(long userIdSecondaFirma) {
- _boAvviso.setUserIdSecondaFirma(userIdSecondaFirma);
- }
-
- /**
- * Returns the firma in corso of this bo avviso.
- *
- * @return the firma in corso of this bo avviso
- */
- @Override
- public boolean getFirmaInCorso() {
- return _boAvviso.getFirmaInCorso();
- }
-
- /**
- * Returns true if this bo avviso is firma in corso.
- *
- * @return true if this bo avviso is firma in corso; false otherwise
- */
- @Override
- public boolean isFirmaInCorso() {
- return _boAvviso.isFirmaInCorso();
- }
-
- /**
- * Sets whether this bo avviso is firma in corso.
- *
- * @param firmaInCorso the firma in corso of this bo avviso
- */
- @Override
- public void setFirmaInCorso(boolean firmaInCorso) {
- _boAvviso.setFirmaInCorso(firmaInCorso);
- }
-
- /**
- * Returns the transaction ID prima firma of this bo avviso.
- *
- * @return the transaction ID prima firma of this bo avviso
- */
- @Override
- public java.lang.String getTransactionIdPrimaFirma() {
- return _boAvviso.getTransactionIdPrimaFirma();
- }
-
- /**
- * Sets the transaction ID prima firma of this bo avviso.
- *
- * @param transactionIdPrimaFirma the transaction ID prima firma of this bo avviso
- */
- @Override
- public void setTransactionIdPrimaFirma(
- java.lang.String transactionIdPrimaFirma) {
- _boAvviso.setTransactionIdPrimaFirma(transactionIdPrimaFirma);
- }
-
- /**
- * Returns the transaction ID seconda firma of this bo avviso.
- *
- * @return the transaction ID seconda firma of this bo avviso
- */
- @Override
- public java.lang.String getTransactionIdSecondaFirma() {
- return _boAvviso.getTransactionIdSecondaFirma();
- }
-
- /**
- * Sets the transaction ID seconda firma of this bo avviso.
- *
- * @param transactionIdSecondaFirma the transaction ID seconda firma of this bo avviso
- */
- @Override
- public void setTransactionIdSecondaFirma(
- java.lang.String transactionIdSecondaFirma) {
- _boAvviso.setTransactionIdSecondaFirma(transactionIdSecondaFirma);
- }
-
- /**
- * Returns the inviato of this bo avviso.
- *
- * @return the inviato of this bo avviso
- */
- @Override
- public java.lang.String getInviato() {
- return _boAvviso.getInviato();
- }
-
- /**
- * Sets the inviato of this bo avviso.
- *
- * @param inviato the inviato of this bo avviso
- */
- @Override
- public void setInviato(java.lang.String inviato) {
- _boAvviso.setInviato(inviato);
- }
-
- /**
- * Returns the dt invio of this bo avviso.
- *
- * @return the dt invio of this bo avviso
- */
- @Override
- public java.util.Date getDtInvio() {
- return _boAvviso.getDtInvio();
- }
-
- /**
- * Sets the dt invio of this bo avviso.
- *
- * @param dtInvio the dt invio of this bo avviso
- */
- @Override
- public void setDtInvio(java.util.Date dtInvio) {
- _boAvviso.setDtInvio(dtInvio);
- }
-
- /**
- * Returns the annullato of this bo avviso.
- *
- * @return the annullato of this bo avviso
- */
- @Override
- public boolean getAnnullato() {
- return _boAvviso.getAnnullato();
- }
-
- /**
- * Returns true if this bo avviso is annullato.
- *
- * @return true if this bo avviso is annullato; false otherwise
- */
- @Override
- public boolean isAnnullato() {
- return _boAvviso.isAnnullato();
- }
-
- /**
- * Sets whether this bo avviso is annullato.
- *
- * @param annullato the annullato of this bo avviso
- */
- @Override
- public void setAnnullato(boolean annullato) {
- _boAvviso.setAnnullato(annullato);
- }
-
- /**
- * Returns the errore of this bo avviso.
- *
- * @return the errore of this bo avviso
- */
- @Override
- public boolean getErrore() {
- return _boAvviso.getErrore();
- }
-
- /**
- * Returns true if this bo avviso is errore.
- *
- * @return true if this bo avviso is errore; false otherwise
- */
- @Override
- public boolean isErrore() {
- return _boAvviso.isErrore();
- }
-
- /**
- * Sets whether this bo avviso is errore.
- *
- * @param errore the errore of this bo avviso
- */
- @Override
- public void setErrore(boolean errore) {
- _boAvviso.setErrore(errore);
- }
-
- /**
- * Returns the signal of this bo avviso.
- *
- * @return the signal of this bo avviso
- */
- @Override
- public boolean getSignal() {
- return _boAvviso.getSignal();
- }
-
- /**
- * Returns true if this bo avviso is signal.
- *
- * @return true if this bo avviso is signal; false otherwise
- */
- @Override
- public boolean isSignal() {
- return _boAvviso.isSignal();
- }
-
- /**
- * Sets whether this bo avviso is signal.
- *
- * @param signal the signal of this bo avviso
- */
- @Override
- public void setSignal(boolean signal) {
- _boAvviso.setSignal(signal);
- }
-
- /**
- * Returns the dt invio signal of this bo avviso.
- *
- * @return the dt invio signal of this bo avviso
- */
- @Override
- public java.util.Date getDtInvioSignal() {
- return _boAvviso.getDtInvioSignal();
- }
-
- /**
- * Sets the dt invio signal of this bo avviso.
- *
- * @param dtInvioSignal the dt invio signal of this bo avviso
- */
- @Override
- public void setDtInvioSignal(java.util.Date dtInvioSignal) {
- _boAvviso.setDtInvioSignal(dtInvioSignal);
- }
-
- /**
- * Returns the tempistica of this bo avviso.
- *
- * @return the tempistica of this bo avviso
- */
- @Override
- public boolean getTempistica() {
- return _boAvviso.getTempistica();
- }
-
- /**
- * Returns true if this bo avviso is tempistica.
- *
- * @return true if this bo avviso is tempistica; false otherwise
- */
- @Override
- public boolean isTempistica() {
- return _boAvviso.isTempistica();
- }
-
- /**
- * Sets whether this bo avviso is tempistica.
- *
- * @param tempistica the tempistica of this bo avviso
- */
- @Override
- public void setTempistica(boolean tempistica) {
- _boAvviso.setTempistica(tempistica);
- }
-
- /**
- * Returns the dt tempistica of this bo avviso.
- *
- * @return the dt tempistica of this bo avviso
- */
- @Override
- public java.util.Date getDtTempistica() {
- return _boAvviso.getDtTempistica();
- }
-
- /**
- * Sets the dt tempistica of this bo avviso.
- *
- * @param dtTempistica the dt tempistica of this bo avviso
- */
- @Override
- public void setDtTempistica(java.util.Date dtTempistica) {
- _boAvviso.setDtTempistica(dtTempistica);
- }
-
- /**
- * Returns the dax ID of this bo avviso.
- *
- * @return the dax ID of this bo avviso
- */
- @Override
- public long getDaxId() {
- return _boAvviso.getDaxId();
- }
-
- /**
- * Sets the dax ID of this bo avviso.
- *
- * @param daxId the dax ID of this bo avviso
- */
- @Override
- public void setDaxId(long daxId) {
- _boAvviso.setDaxId(daxId);
- }
-
- /**
- * Returns the dt invio dax of this bo avviso.
- *
- * @return the dt invio dax of this bo avviso
- */
- @Override
- public java.util.Date getDtInvioDax() {
- return _boAvviso.getDtInvioDax();
- }
-
- /**
- * Sets the dt invio dax of this bo avviso.
- *
- * @param dtInvioDax the dt invio dax of this bo avviso
- */
- @Override
- public void setDtInvioDax(java.util.Date dtInvioDax) {
- _boAvviso.setDtInvioDax(dtInvioDax);
- }
-
- /**
- * Returns the errore dax of this bo avviso.
- *
- * @return the errore dax of this bo avviso
- */
- @Override
- public java.lang.String getErroreDax() {
- return _boAvviso.getErroreDax();
- }
-
- /**
- * Sets the errore dax of this bo avviso.
- *
- * @param erroreDax the errore dax of this bo avviso
- */
- @Override
- public void setErroreDax(java.lang.String erroreDax) {
- _boAvviso.setErroreDax(erroreDax);
- }
-
- /**
- * Returns the dt errore dax of this bo avviso.
- *
- * @return the dt errore dax of this bo avviso
- */
- @Override
- public java.util.Date getDtErroreDax() {
- return _boAvviso.getDtErroreDax();
- }
-
- /**
- * Sets the dt errore dax of this bo avviso.
- *
- * @param dtErroreDax the dt errore dax of this bo avviso
- */
- @Override
- public void setDtErroreDax(java.util.Date dtErroreDax) {
- _boAvviso.setDtErroreDax(dtErroreDax);
- }
-
- /**
- * Returns the json parameters of this bo avviso.
- *
- * @return the json parameters of this bo avviso
- */
- @Override
- public java.lang.String getJsonParameters() {
- return _boAvviso.getJsonParameters();
- }
-
- /**
- * Sets the json parameters of this bo avviso.
- *
- * @param jsonParameters the json parameters of this bo avviso
- */
- @Override
- public void setJsonParameters(java.lang.String jsonParameters) {
- _boAvviso.setJsonParameters(jsonParameters);
- }
-
- /**
- * Returns the protocollo of this bo avviso.
- *
- * @return the protocollo of this bo avviso
- */
- @Override
- public java.lang.String getProtocollo() {
- return _boAvviso.getProtocollo();
- }
-
- /**
- * Sets the protocollo of this bo avviso.
- *
- * @param protocollo the protocollo of this bo avviso
- */
- @Override
- public void setProtocollo(java.lang.String protocollo) {
- _boAvviso.setProtocollo(protocollo);
- }
-
- /**
- * Returns the inviato tecnico of this bo avviso.
- *
- * @return the inviato tecnico of this bo avviso
- */
- @Override
- public boolean getInviatoTecnico() {
- return _boAvviso.getInviatoTecnico();
- }
-
- /**
- * Returns true if this bo avviso is inviato tecnico.
- *
- * @return true if this bo avviso is inviato tecnico; false otherwise
- */
- @Override
- public boolean isInviatoTecnico() {
- return _boAvviso.isInviatoTecnico();
- }
-
- /**
- * Sets whether this bo avviso is inviato tecnico.
- *
- * @param inviatoTecnico the inviato tecnico of this bo avviso
- */
- @Override
- public void setInviatoTecnico(boolean inviatoTecnico) {
- _boAvviso.setInviatoTecnico(inviatoTecnico);
- }
-
- /**
- * Returns the dett pratica ID of this bo avviso.
- *
- * @return the dett pratica ID of this bo avviso
- */
- @Override
- public long getDettPraticaId() {
- return _boAvviso.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo avviso.
- *
- * @param dettPraticaId the dett pratica ID of this bo avviso
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boAvviso.setDettPraticaId(dettPraticaId);
- }
-
- @Override
- public boolean isNew() {
- return _boAvviso.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boAvviso.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boAvviso.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boAvviso.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boAvviso.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boAvviso.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boAvviso.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boAvviso.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boAvviso.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boAvviso.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boAvviso.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoAvvisoWrapper((BoAvviso)_boAvviso.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoAvviso boAvviso) {
- return _boAvviso.compareTo(boAvviso);
- }
-
- @Override
- public int hashCode() {
- return _boAvviso.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boAvviso.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoAvviso toEscapedModel() {
- return new BoAvvisoWrapper(_boAvviso.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoAvviso toUnescapedModel() {
- return new BoAvvisoWrapper(_boAvviso.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boAvviso.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boAvviso.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boAvviso.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoAvvisoWrapper)) {
- return false;
- }
-
- BoAvvisoWrapper boAvvisoWrapper = (BoAvvisoWrapper)obj;
-
- if (Validator.equals(_boAvviso, boAvvisoWrapper._boAvviso)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boAvviso.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoAvviso getWrappedBoAvviso() {
- return _boAvviso;
- }
-
- @Override
- public BoAvviso getWrappedModel() {
- return _boAvviso;
- }
-
- @Override
- public void resetOriginalValues() {
- _boAvviso.resetOriginalValues();
- }
-
- private BoAvviso _boAvviso;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComune.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComune.java
deleted file mode 100644
index 3bc7805a..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComune.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoComune service. Represents a row in the "gc_comune" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoComuneModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoComuneImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoComuneModelImpl
- * @generated
- */
-public interface BoComune extends BoComuneModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoComuneImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneClp.java
deleted file mode 100644
index 37bf4e12..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneClp.java
+++ /dev/null
@@ -1,617 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoComuneLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoComuneClp extends BaseModelImpl implements BoComune {
- public BoComuneClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoComune.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoComune.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _comuneId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setComuneId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _comuneId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("comuneId", getComuneId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("provinciaId", getProvinciaId());
- attributes.put("codIstat", getCodIstat());
- attributes.put("codCatastale", getCodCatastale());
- attributes.put("descLong", getDescLong());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long provinciaId = (Long)attributes.get("provinciaId");
-
- if (provinciaId != null) {
- setProvinciaId(provinciaId);
- }
-
- String codIstat = (String)attributes.get("codIstat");
-
- if (codIstat != null) {
- setCodIstat(codIstat);
- }
-
- String codCatastale = (String)attributes.get("codCatastale");
-
- if (codCatastale != null) {
- setCodCatastale(codCatastale);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- @Override
- public long getComuneId() {
- return _comuneId;
- }
-
- @Override
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneId", long.class);
-
- method.invoke(_boComuneRemoteModel, comuneId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boComuneRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boComuneRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boComuneRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boComuneRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boComuneRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getProvinciaId() {
- return _provinciaId;
- }
-
- @Override
- public void setProvinciaId(long provinciaId) {
- _provinciaId = provinciaId;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvinciaId", long.class);
-
- method.invoke(_boComuneRemoteModel, provinciaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodIstat() {
- return _codIstat;
- }
-
- @Override
- public void setCodIstat(String codIstat) {
- _codIstat = codIstat;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodIstat", String.class);
-
- method.invoke(_boComuneRemoteModel, codIstat);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodCatastale() {
- return _codCatastale;
- }
-
- @Override
- public void setCodCatastale(String codCatastale) {
- _codCatastale = codCatastale;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodCatastale", String.class);
-
- method.invoke(_boComuneRemoteModel, codCatastale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLong() {
- return _descLong;
- }
-
- @Override
- public void setDescLong(String descLong) {
- _descLong = descLong;
-
- if (_boComuneRemoteModel != null) {
- try {
- Class> clazz = _boComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLong", String.class);
-
- method.invoke(_boComuneRemoteModel, descLong);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoComuneRemoteModel() {
- return _boComuneRemoteModel;
- }
-
- public void setBoComuneRemoteModel(BaseModel> boComuneRemoteModel) {
- _boComuneRemoteModel = boComuneRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boComuneRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boComuneRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoComuneLocalServiceUtil.addBoComune(this);
- }
- else {
- BoComuneLocalServiceUtil.updateBoComune(this);
- }
- }
-
- @Override
- public BoComune toEscapedModel() {
- return (BoComune)ProxyUtil.newProxyInstance(BoComune.class.getClassLoader(),
- new Class[] { BoComune.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoComuneClp clone = new BoComuneClp();
-
- clone.setComuneId(getComuneId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setProvinciaId(getProvinciaId());
- clone.setCodIstat(getCodIstat());
- clone.setCodCatastale(getCodCatastale());
- clone.setDescLong(getDescLong());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoComune boComune) {
- int value = 0;
-
- value = getDescLong().compareTo(boComune.getDescLong());
-
- if (value != 0) {
- return value;
- }
-
- return 0;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoComuneClp)) {
- return false;
- }
-
- BoComuneClp boComune = (BoComuneClp)obj;
-
- long primaryKey = boComune.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(21);
-
- sb.append("{comuneId=");
- sb.append(getComuneId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", provinciaId=");
- sb.append(getProvinciaId());
- sb.append(", codIstat=");
- sb.append(getCodIstat());
- sb.append(", codCatastale=");
- sb.append(getCodCatastale());
- sb.append(", descLong=");
- sb.append(getDescLong());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(34);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoComune");
- sb.append("");
-
- sb.append(
- "comuneId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "provinciaId");
- sb.append(
- "codIstat");
- sb.append(
- "codCatastale");
- sb.append(
- "descLong");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _comuneId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _provinciaId;
- private String _codIstat;
- private String _codCatastale;
- private String _descLong;
- private BaseModel> _boComuneRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneModel.java
deleted file mode 100644
index a21ff711..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneModel.java
+++ /dev/null
@@ -1,292 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.AuditedModel;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoComune service. Represents a row in the "gc_comune" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoComuneModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoComuneImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoComune
- * @see it.tref.liferay.portos.portosimport.model.impl.BoComuneImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoComuneModelImpl
- * @generated
- */
-public interface BoComuneModel extends AuditedModel, BaseModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo comune model instance should use the {@link BoComune} interface instead.
- */
-
- /**
- * Returns the primary key of this bo comune.
- *
- * @return the primary key of this bo comune
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo comune.
- *
- * @param primaryKey the primary key of this bo comune
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the comune ID of this bo comune.
- *
- * @return the comune ID of this bo comune
- */
- public long getComuneId();
-
- /**
- * Sets the comune ID of this bo comune.
- *
- * @param comuneId the comune ID of this bo comune
- */
- public void setComuneId(long comuneId);
-
- /**
- * Returns the company ID of this bo comune.
- *
- * @return the company ID of this bo comune
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo comune.
- *
- * @param companyId the company ID of this bo comune
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo comune.
- *
- * @return the user ID of this bo comune
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo comune.
- *
- * @param userId the user ID of this bo comune
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo comune.
- *
- * @return the user uuid of this bo comune
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo comune.
- *
- * @param userUuid the user uuid of this bo comune
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo comune.
- *
- * @return the user name of this bo comune
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo comune.
- *
- * @param userName the user name of this bo comune
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo comune.
- *
- * @return the create date of this bo comune
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo comune.
- *
- * @param createDate the create date of this bo comune
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo comune.
- *
- * @return the modified date of this bo comune
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo comune.
- *
- * @param modifiedDate the modified date of this bo comune
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the provincia ID of this bo comune.
- *
- * @return the provincia ID of this bo comune
- */
- public long getProvinciaId();
-
- /**
- * Sets the provincia ID of this bo comune.
- *
- * @param provinciaId the provincia ID of this bo comune
- */
- public void setProvinciaId(long provinciaId);
-
- /**
- * Returns the cod istat of this bo comune.
- *
- * @return the cod istat of this bo comune
- */
- @AutoEscape
- public String getCodIstat();
-
- /**
- * Sets the cod istat of this bo comune.
- *
- * @param codIstat the cod istat of this bo comune
- */
- public void setCodIstat(String codIstat);
-
- /**
- * Returns the cod catastale of this bo comune.
- *
- * @return the cod catastale of this bo comune
- */
- @AutoEscape
- public String getCodCatastale();
-
- /**
- * Sets the cod catastale of this bo comune.
- *
- * @param codCatastale the cod catastale of this bo comune
- */
- public void setCodCatastale(String codCatastale);
-
- /**
- * Returns the desc long of this bo comune.
- *
- * @return the desc long of this bo comune
- */
- @AutoEscape
- public String getDescLong();
-
- /**
- * Sets the desc long of this bo comune.
- *
- * @param descLong the desc long of this bo comune
- */
- public void setDescLong(String descLong);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoComune boComune);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoComune toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoComune toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneSoap.java
deleted file mode 100644
index 3e9a57cb..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneSoap.java
+++ /dev/null
@@ -1,185 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoComuneSoap implements Serializable {
- public static BoComuneSoap toSoapModel(BoComune model) {
- BoComuneSoap soapModel = new BoComuneSoap();
-
- soapModel.setComuneId(model.getComuneId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setProvinciaId(model.getProvinciaId());
- soapModel.setCodIstat(model.getCodIstat());
- soapModel.setCodCatastale(model.getCodCatastale());
- soapModel.setDescLong(model.getDescLong());
-
- return soapModel;
- }
-
- public static BoComuneSoap[] toSoapModels(BoComune[] models) {
- BoComuneSoap[] soapModels = new BoComuneSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoComuneSoap[][] toSoapModels(BoComune[][] models) {
- BoComuneSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoComuneSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoComuneSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoComuneSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoComune model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoComuneSoap[soapModels.size()]);
- }
-
- public BoComuneSoap() {
- }
-
- public long getPrimaryKey() {
- return _comuneId;
- }
-
- public void setPrimaryKey(long pk) {
- setComuneId(pk);
- }
-
- public long getComuneId() {
- return _comuneId;
- }
-
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getProvinciaId() {
- return _provinciaId;
- }
-
- public void setProvinciaId(long provinciaId) {
- _provinciaId = provinciaId;
- }
-
- public String getCodIstat() {
- return _codIstat;
- }
-
- public void setCodIstat(String codIstat) {
- _codIstat = codIstat;
- }
-
- public String getCodCatastale() {
- return _codCatastale;
- }
-
- public void setCodCatastale(String codCatastale) {
- _codCatastale = codCatastale;
- }
-
- public String getDescLong() {
- return _descLong;
- }
-
- public void setDescLong(String descLong) {
- _descLong = descLong;
- }
-
- private long _comuneId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _provinciaId;
- private String _codIstat;
- private String _codCatastale;
- private String _descLong;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneWrapper.java
deleted file mode 100644
index 47ca8066..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoComuneWrapper.java
+++ /dev/null
@@ -1,513 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoComune}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoComune
- * @generated
- */
-public class BoComuneWrapper implements BoComune, ModelWrapper {
- public BoComuneWrapper(BoComune boComune) {
- _boComune = boComune;
- }
-
- @Override
- public Class> getModelClass() {
- return BoComune.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoComune.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("comuneId", getComuneId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("provinciaId", getProvinciaId());
- attributes.put("codIstat", getCodIstat());
- attributes.put("codCatastale", getCodCatastale());
- attributes.put("descLong", getDescLong());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long provinciaId = (Long)attributes.get("provinciaId");
-
- if (provinciaId != null) {
- setProvinciaId(provinciaId);
- }
-
- String codIstat = (String)attributes.get("codIstat");
-
- if (codIstat != null) {
- setCodIstat(codIstat);
- }
-
- String codCatastale = (String)attributes.get("codCatastale");
-
- if (codCatastale != null) {
- setCodCatastale(codCatastale);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- /**
- * Returns the primary key of this bo comune.
- *
- * @return the primary key of this bo comune
- */
- @Override
- public long getPrimaryKey() {
- return _boComune.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo comune.
- *
- * @param primaryKey the primary key of this bo comune
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boComune.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the comune ID of this bo comune.
- *
- * @return the comune ID of this bo comune
- */
- @Override
- public long getComuneId() {
- return _boComune.getComuneId();
- }
-
- /**
- * Sets the comune ID of this bo comune.
- *
- * @param comuneId the comune ID of this bo comune
- */
- @Override
- public void setComuneId(long comuneId) {
- _boComune.setComuneId(comuneId);
- }
-
- /**
- * Returns the company ID of this bo comune.
- *
- * @return the company ID of this bo comune
- */
- @Override
- public long getCompanyId() {
- return _boComune.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo comune.
- *
- * @param companyId the company ID of this bo comune
- */
- @Override
- public void setCompanyId(long companyId) {
- _boComune.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo comune.
- *
- * @return the user ID of this bo comune
- */
- @Override
- public long getUserId() {
- return _boComune.getUserId();
- }
-
- /**
- * Sets the user ID of this bo comune.
- *
- * @param userId the user ID of this bo comune
- */
- @Override
- public void setUserId(long userId) {
- _boComune.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo comune.
- *
- * @return the user uuid of this bo comune
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boComune.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo comune.
- *
- * @param userUuid the user uuid of this bo comune
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boComune.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo comune.
- *
- * @return the user name of this bo comune
- */
- @Override
- public java.lang.String getUserName() {
- return _boComune.getUserName();
- }
-
- /**
- * Sets the user name of this bo comune.
- *
- * @param userName the user name of this bo comune
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boComune.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo comune.
- *
- * @return the create date of this bo comune
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boComune.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo comune.
- *
- * @param createDate the create date of this bo comune
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boComune.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo comune.
- *
- * @return the modified date of this bo comune
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boComune.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo comune.
- *
- * @param modifiedDate the modified date of this bo comune
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boComune.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the provincia ID of this bo comune.
- *
- * @return the provincia ID of this bo comune
- */
- @Override
- public long getProvinciaId() {
- return _boComune.getProvinciaId();
- }
-
- /**
- * Sets the provincia ID of this bo comune.
- *
- * @param provinciaId the provincia ID of this bo comune
- */
- @Override
- public void setProvinciaId(long provinciaId) {
- _boComune.setProvinciaId(provinciaId);
- }
-
- /**
- * Returns the cod istat of this bo comune.
- *
- * @return the cod istat of this bo comune
- */
- @Override
- public java.lang.String getCodIstat() {
- return _boComune.getCodIstat();
- }
-
- /**
- * Sets the cod istat of this bo comune.
- *
- * @param codIstat the cod istat of this bo comune
- */
- @Override
- public void setCodIstat(java.lang.String codIstat) {
- _boComune.setCodIstat(codIstat);
- }
-
- /**
- * Returns the cod catastale of this bo comune.
- *
- * @return the cod catastale of this bo comune
- */
- @Override
- public java.lang.String getCodCatastale() {
- return _boComune.getCodCatastale();
- }
-
- /**
- * Sets the cod catastale of this bo comune.
- *
- * @param codCatastale the cod catastale of this bo comune
- */
- @Override
- public void setCodCatastale(java.lang.String codCatastale) {
- _boComune.setCodCatastale(codCatastale);
- }
-
- /**
- * Returns the desc long of this bo comune.
- *
- * @return the desc long of this bo comune
- */
- @Override
- public java.lang.String getDescLong() {
- return _boComune.getDescLong();
- }
-
- /**
- * Sets the desc long of this bo comune.
- *
- * @param descLong the desc long of this bo comune
- */
- @Override
- public void setDescLong(java.lang.String descLong) {
- _boComune.setDescLong(descLong);
- }
-
- @Override
- public boolean isNew() {
- return _boComune.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boComune.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boComune.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boComune.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boComune.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boComune.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boComune.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boComune.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boComune.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boComune.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boComune.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoComuneWrapper((BoComune)_boComune.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoComune boComune) {
- return _boComune.compareTo(boComune);
- }
-
- @Override
- public int hashCode() {
- return _boComune.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boComune.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoComune toEscapedModel() {
- return new BoComuneWrapper(_boComune.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoComune toUnescapedModel() {
- return new BoComuneWrapper(_boComune.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boComune.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boComune.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boComune.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoComuneWrapper)) {
- return false;
- }
-
- BoComuneWrapper boComuneWrapper = (BoComuneWrapper)obj;
-
- if (Validator.equals(_boComune, boComuneWrapper._boComune)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoComune getWrappedBoComune() {
- return _boComune;
- }
-
- @Override
- public BoComune getWrappedModel() {
- return _boComune;
- }
-
- @Override
- public void resetOriginalValues() {
- _boComune.resetOriginalValues();
- }
-
- private BoComune _boComune;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPratica.java
deleted file mode 100644
index 030d34c5..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoDettPratica service. Represents a row in the "gc_dettpratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDettPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaModelImpl
- * @generated
- */
-public interface BoDettPratica extends BoDettPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaClp.java
deleted file mode 100644
index 254efc91..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaClp.java
+++ /dev/null
@@ -1,1611 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.kernel.workflow.WorkflowConstants;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoDettPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoDettPraticaClp extends BaseModelImpl
- implements BoDettPratica {
- public BoDettPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoDettPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoDettPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _dettPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setDettPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _dettPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("integrazione", getIntegrazione());
- attributes.put("suapCode", getSuapCode());
- attributes.put("validata", getValidata());
- attributes.put("codPraticaSuap", getCodPraticaSuap());
- attributes.put("protocollo", getProtocollo());
- attributes.put("tipoIntegrazione", getTipoIntegrazione());
- attributes.put("completa", getCompleta());
- attributes.put("gestita", getGestita());
- attributes.put("codicePagamento", getCodicePagamento());
- attributes.put("causalePagamento", getCausalePagamento());
- attributes.put("mezzoPagamento", getMezzoPagamento());
- attributes.put("importoBolli", getImportoBolli());
- attributes.put("importoSpeseIstruttoria", getImportoSpeseIstruttoria());
- attributes.put("dataEffettuazione", getDataEffettuazione());
- attributes.put("esenzioneBolli", getEsenzioneBolli());
- attributes.put("esenzioneSpeseIstruttoria",
- getEsenzioneSpeseIstruttoria());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusByUserName", getStatusByUserName());
- attributes.put("statusDate", getStatusDate());
- attributes.put("statusTask", getStatusTask());
- attributes.put("workflowForzato", getWorkflowForzato());
- attributes.put("soggettoSostituitoId", getSoggettoSostituitoId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long integrazione = (Long)attributes.get("integrazione");
-
- if (integrazione != null) {
- setIntegrazione(integrazione);
- }
-
- String suapCode = (String)attributes.get("suapCode");
-
- if (suapCode != null) {
- setSuapCode(suapCode);
- }
-
- Boolean validata = (Boolean)attributes.get("validata");
-
- if (validata != null) {
- setValidata(validata);
- }
-
- String codPraticaSuap = (String)attributes.get("codPraticaSuap");
-
- if (codPraticaSuap != null) {
- setCodPraticaSuap(codPraticaSuap);
- }
-
- String protocollo = (String)attributes.get("protocollo");
-
- if (protocollo != null) {
- setProtocollo(protocollo);
- }
-
- String tipoIntegrazione = (String)attributes.get("tipoIntegrazione");
-
- if (tipoIntegrazione != null) {
- setTipoIntegrazione(tipoIntegrazione);
- }
-
- Boolean completa = (Boolean)attributes.get("completa");
-
- if (completa != null) {
- setCompleta(completa);
- }
-
- Boolean gestita = (Boolean)attributes.get("gestita");
-
- if (gestita != null) {
- setGestita(gestita);
- }
-
- String codicePagamento = (String)attributes.get("codicePagamento");
-
- if (codicePagamento != null) {
- setCodicePagamento(codicePagamento);
- }
-
- String causalePagamento = (String)attributes.get("causalePagamento");
-
- if (causalePagamento != null) {
- setCausalePagamento(causalePagamento);
- }
-
- String mezzoPagamento = (String)attributes.get("mezzoPagamento");
-
- if (mezzoPagamento != null) {
- setMezzoPagamento(mezzoPagamento);
- }
-
- String importoBolli = (String)attributes.get("importoBolli");
-
- if (importoBolli != null) {
- setImportoBolli(importoBolli);
- }
-
- String importoSpeseIstruttoria = (String)attributes.get(
- "importoSpeseIstruttoria");
-
- if (importoSpeseIstruttoria != null) {
- setImportoSpeseIstruttoria(importoSpeseIstruttoria);
- }
-
- Date dataEffettuazione = (Date)attributes.get("dataEffettuazione");
-
- if (dataEffettuazione != null) {
- setDataEffettuazione(dataEffettuazione);
- }
-
- Boolean esenzioneBolli = (Boolean)attributes.get("esenzioneBolli");
-
- if (esenzioneBolli != null) {
- setEsenzioneBolli(esenzioneBolli);
- }
-
- Boolean esenzioneSpeseIstruttoria = (Boolean)attributes.get(
- "esenzioneSpeseIstruttoria");
-
- if (esenzioneSpeseIstruttoria != null) {
- setEsenzioneSpeseIstruttoria(esenzioneSpeseIstruttoria);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- String statusByUserName = (String)attributes.get("statusByUserName");
-
- if (statusByUserName != null) {
- setStatusByUserName(statusByUserName);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- Integer statusTask = (Integer)attributes.get("statusTask");
-
- if (statusTask != null) {
- setStatusTask(statusTask);
- }
-
- Boolean workflowForzato = (Boolean)attributes.get("workflowForzato");
-
- if (workflowForzato != null) {
- setWorkflowForzato(workflowForzato);
- }
-
- Long soggettoSostituitoId = (Long)attributes.get("soggettoSostituitoId");
-
- if (soggettoSostituitoId != null) {
- setSoggettoSostituitoId(soggettoSostituitoId);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boDettPraticaRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boDettPraticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boDettPraticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boDettPraticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntegrazione() {
- return _integrazione;
- }
-
- @Override
- public void setIntegrazione(long integrazione) {
- _integrazione = integrazione;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntegrazione", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, integrazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getSuapCode() {
- return _suapCode;
- }
-
- @Override
- public void setSuapCode(String suapCode) {
- _suapCode = suapCode;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSuapCode", String.class);
-
- method.invoke(_boDettPraticaRemoteModel, suapCode);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getValidata() {
- return _validata;
- }
-
- @Override
- public boolean isValidata() {
- return _validata;
- }
-
- @Override
- public void setValidata(boolean validata) {
- _validata = validata;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setValidata", boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel, validata);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodPraticaSuap() {
- return _codPraticaSuap;
- }
-
- @Override
- public void setCodPraticaSuap(String codPraticaSuap) {
- _codPraticaSuap = codPraticaSuap;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodPraticaSuap",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, codPraticaSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProtocollo() {
- return _protocollo;
- }
-
- @Override
- public void setProtocollo(String protocollo) {
- _protocollo = protocollo;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProtocollo", String.class);
-
- method.invoke(_boDettPraticaRemoteModel, protocollo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipoIntegrazione() {
- return _tipoIntegrazione;
- }
-
- @Override
- public void setTipoIntegrazione(String tipoIntegrazione) {
- _tipoIntegrazione = tipoIntegrazione;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipoIntegrazione",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, tipoIntegrazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getCompleta() {
- return _completa;
- }
-
- @Override
- public boolean isCompleta() {
- return _completa;
- }
-
- @Override
- public void setCompleta(boolean completa) {
- _completa = completa;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompleta", boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel, completa);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getGestita() {
- return _gestita;
- }
-
- @Override
- public boolean isGestita() {
- return _gestita;
- }
-
- @Override
- public void setGestita(boolean gestita) {
- _gestita = gestita;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGestita", boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel, gestita);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodicePagamento() {
- return _codicePagamento;
- }
-
- @Override
- public void setCodicePagamento(String codicePagamento) {
- _codicePagamento = codicePagamento;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodicePagamento",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, codicePagamento);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCausalePagamento() {
- return _causalePagamento;
- }
-
- @Override
- public void setCausalePagamento(String causalePagamento) {
- _causalePagamento = causalePagamento;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCausalePagamento",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, causalePagamento);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getMezzoPagamento() {
- return _mezzoPagamento;
- }
-
- @Override
- public void setMezzoPagamento(String mezzoPagamento) {
- _mezzoPagamento = mezzoPagamento;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setMezzoPagamento",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, mezzoPagamento);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getImportoBolli() {
- return _importoBolli;
- }
-
- @Override
- public void setImportoBolli(String importoBolli) {
- _importoBolli = importoBolli;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setImportoBolli", String.class);
-
- method.invoke(_boDettPraticaRemoteModel, importoBolli);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getImportoSpeseIstruttoria() {
- return _importoSpeseIstruttoria;
- }
-
- @Override
- public void setImportoSpeseIstruttoria(String importoSpeseIstruttoria) {
- _importoSpeseIstruttoria = importoSpeseIstruttoria;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setImportoSpeseIstruttoria",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, importoSpeseIstruttoria);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataEffettuazione() {
- return _dataEffettuazione;
- }
-
- @Override
- public void setDataEffettuazione(Date dataEffettuazione) {
- _dataEffettuazione = dataEffettuazione;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataEffettuazione",
- Date.class);
-
- method.invoke(_boDettPraticaRemoteModel, dataEffettuazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getEsenzioneBolli() {
- return _esenzioneBolli;
- }
-
- @Override
- public boolean isEsenzioneBolli() {
- return _esenzioneBolli;
- }
-
- @Override
- public void setEsenzioneBolli(boolean esenzioneBolli) {
- _esenzioneBolli = esenzioneBolli;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEsenzioneBolli",
- boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel, esenzioneBolli);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getEsenzioneSpeseIstruttoria() {
- return _esenzioneSpeseIstruttoria;
- }
-
- @Override
- public boolean isEsenzioneSpeseIstruttoria() {
- return _esenzioneSpeseIstruttoria;
- }
-
- @Override
- public void setEsenzioneSpeseIstruttoria(boolean esenzioneSpeseIstruttoria) {
- _esenzioneSpeseIstruttoria = esenzioneSpeseIstruttoria;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEsenzioneSpeseIstruttoria",
- boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel,
- esenzioneSpeseIstruttoria);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public int getStatus() {
- return _status;
- }
-
- @Override
- public void setStatus(int status) {
- _status = status;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatus", int.class);
-
- method.invoke(_boDettPraticaRemoteModel, status);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusByUserId", long.class);
-
- method.invoke(_boDettPraticaRemoteModel, statusByUserId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStatusByUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getStatusByUserId(), "uuid",
- _statusByUserUuid);
- }
-
- @Override
- public void setStatusByUserUuid(String statusByUserUuid) {
- _statusByUserUuid = statusByUserUuid;
- }
-
- @Override
- public String getStatusByUserName() {
- return _statusByUserName;
- }
-
- @Override
- public void setStatusByUserName(String statusByUserName) {
- _statusByUserName = statusByUserName;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusByUserName",
- String.class);
-
- method.invoke(_boDettPraticaRemoteModel, statusByUserName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getStatusDate() {
- return _statusDate;
- }
-
- @Override
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusDate", Date.class);
-
- method.invoke(_boDettPraticaRemoteModel, statusDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public int getStatusTask() {
- return _statusTask;
- }
-
- @Override
- public void setStatusTask(int statusTask) {
- _statusTask = statusTask;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusTask", int.class);
-
- method.invoke(_boDettPraticaRemoteModel, statusTask);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getWorkflowForzato() {
- return _workflowForzato;
- }
-
- @Override
- public boolean isWorkflowForzato() {
- return _workflowForzato;
- }
-
- @Override
- public void setWorkflowForzato(boolean workflowForzato) {
- _workflowForzato = workflowForzato;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setWorkflowForzato",
- boolean.class);
-
- method.invoke(_boDettPraticaRemoteModel, workflowForzato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getSoggettoSostituitoId() {
- return _soggettoSostituitoId;
- }
-
- @Override
- public void setSoggettoSostituitoId(long soggettoSostituitoId) {
- _soggettoSostituitoId = soggettoSostituitoId;
-
- if (_boDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSoggettoSostituitoId",
- long.class);
-
- method.invoke(_boDettPraticaRemoteModel, soggettoSostituitoId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoDettPratica.class.getName()));
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved}
- */
- @Override
- public boolean getApproved() {
- return isApproved();
- }
-
- @Override
- public boolean isApproved() {
- if (getStatus() == WorkflowConstants.STATUS_APPROVED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isDenied() {
- if (getStatus() == WorkflowConstants.STATUS_DENIED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isDraft() {
- if (getStatus() == WorkflowConstants.STATUS_DRAFT) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isExpired() {
- if (getStatus() == WorkflowConstants.STATUS_EXPIRED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isInactive() {
- if (getStatus() == WorkflowConstants.STATUS_INACTIVE) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isIncomplete() {
- if (getStatus() == WorkflowConstants.STATUS_INCOMPLETE) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isPending() {
- if (getStatus() == WorkflowConstants.STATUS_PENDING) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isScheduled() {
- if (getStatus() == WorkflowConstants.STATUS_SCHEDULED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public BaseModel> getBoDettPraticaRemoteModel() {
- return _boDettPraticaRemoteModel;
- }
-
- public void setBoDettPraticaRemoteModel(
- BaseModel> boDettPraticaRemoteModel) {
- _boDettPraticaRemoteModel = boDettPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boDettPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boDettPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoDettPraticaLocalServiceUtil.addBoDettPratica(this);
- }
- else {
- BoDettPraticaLocalServiceUtil.updateBoDettPratica(this);
- }
- }
-
- @Override
- public BoDettPratica toEscapedModel() {
- return (BoDettPratica)ProxyUtil.newProxyInstance(BoDettPratica.class.getClassLoader(),
- new Class[] { BoDettPratica.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoDettPraticaClp clone = new BoDettPraticaClp();
-
- clone.setUuid(getUuid());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setIntegrazione(getIntegrazione());
- clone.setSuapCode(getSuapCode());
- clone.setValidata(getValidata());
- clone.setCodPraticaSuap(getCodPraticaSuap());
- clone.setProtocollo(getProtocollo());
- clone.setTipoIntegrazione(getTipoIntegrazione());
- clone.setCompleta(getCompleta());
- clone.setGestita(getGestita());
- clone.setCodicePagamento(getCodicePagamento());
- clone.setCausalePagamento(getCausalePagamento());
- clone.setMezzoPagamento(getMezzoPagamento());
- clone.setImportoBolli(getImportoBolli());
- clone.setImportoSpeseIstruttoria(getImportoSpeseIstruttoria());
- clone.setDataEffettuazione(getDataEffettuazione());
- clone.setEsenzioneBolli(getEsenzioneBolli());
- clone.setEsenzioneSpeseIstruttoria(getEsenzioneSpeseIstruttoria());
- clone.setStatus(getStatus());
- clone.setStatusByUserId(getStatusByUserId());
- clone.setStatusByUserName(getStatusByUserName());
- clone.setStatusDate(getStatusDate());
- clone.setStatusTask(getStatusTask());
- clone.setWorkflowForzato(getWorkflowForzato());
- clone.setSoggettoSostituitoId(getSoggettoSostituitoId());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoDettPratica boDettPratica) {
- long primaryKey = boDettPratica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoDettPraticaClp)) {
- return false;
- }
-
- BoDettPraticaClp boDettPratica = (BoDettPraticaClp)obj;
-
- long primaryKey = boDettPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(65);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", integrazione=");
- sb.append(getIntegrazione());
- sb.append(", suapCode=");
- sb.append(getSuapCode());
- sb.append(", validata=");
- sb.append(getValidata());
- sb.append(", codPraticaSuap=");
- sb.append(getCodPraticaSuap());
- sb.append(", protocollo=");
- sb.append(getProtocollo());
- sb.append(", tipoIntegrazione=");
- sb.append(getTipoIntegrazione());
- sb.append(", completa=");
- sb.append(getCompleta());
- sb.append(", gestita=");
- sb.append(getGestita());
- sb.append(", codicePagamento=");
- sb.append(getCodicePagamento());
- sb.append(", causalePagamento=");
- sb.append(getCausalePagamento());
- sb.append(", mezzoPagamento=");
- sb.append(getMezzoPagamento());
- sb.append(", importoBolli=");
- sb.append(getImportoBolli());
- sb.append(", importoSpeseIstruttoria=");
- sb.append(getImportoSpeseIstruttoria());
- sb.append(", dataEffettuazione=");
- sb.append(getDataEffettuazione());
- sb.append(", esenzioneBolli=");
- sb.append(getEsenzioneBolli());
- sb.append(", esenzioneSpeseIstruttoria=");
- sb.append(getEsenzioneSpeseIstruttoria());
- sb.append(", status=");
- sb.append(getStatus());
- sb.append(", statusByUserId=");
- sb.append(getStatusByUserId());
- sb.append(", statusByUserName=");
- sb.append(getStatusByUserName());
- sb.append(", statusDate=");
- sb.append(getStatusDate());
- sb.append(", statusTask=");
- sb.append(getStatusTask());
- sb.append(", workflowForzato=");
- sb.append(getWorkflowForzato());
- sb.append(", soggettoSostituitoId=");
- sb.append(getSoggettoSostituitoId());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(100);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoDettPratica");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "dettPraticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "intPraticaId");
- sb.append(
- "integrazione");
- sb.append(
- "suapCode");
- sb.append(
- "validata");
- sb.append(
- "codPraticaSuap");
- sb.append(
- "protocollo");
- sb.append(
- "tipoIntegrazione");
- sb.append(
- "completa");
- sb.append(
- "gestita");
- sb.append(
- "codicePagamento");
- sb.append(
- "causalePagamento");
- sb.append(
- "mezzoPagamento");
- sb.append(
- "importoBolli");
- sb.append(
- "importoSpeseIstruttoria");
- sb.append(
- "dataEffettuazione");
- sb.append(
- "esenzioneBolli");
- sb.append(
- "esenzioneSpeseIstruttoria");
- sb.append(
- "status");
- sb.append(
- "statusByUserId");
- sb.append(
- "statusByUserName");
- sb.append(
- "statusDate");
- sb.append(
- "statusTask");
- sb.append(
- "workflowForzato");
- sb.append(
- "soggettoSostituitoId");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _dettPraticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private long _integrazione;
- private String _suapCode;
- private boolean _validata;
- private String _codPraticaSuap;
- private String _protocollo;
- private String _tipoIntegrazione;
- private boolean _completa;
- private boolean _gestita;
- private String _codicePagamento;
- private String _causalePagamento;
- private String _mezzoPagamento;
- private String _importoBolli;
- private String _importoSpeseIstruttoria;
- private Date _dataEffettuazione;
- private boolean _esenzioneBolli;
- private boolean _esenzioneSpeseIstruttoria;
- private int _status;
- private long _statusByUserId;
- private String _statusByUserUuid;
- private String _statusByUserName;
- private Date _statusDate;
- private int _statusTask;
- private boolean _workflowForzato;
- private long _soggettoSostituitoId;
- private BaseModel> _boDettPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaModel.java
deleted file mode 100644
index baf53105..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaModel.java
+++ /dev/null
@@ -1,751 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.model.WorkflowedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoDettPratica service. Represents a row in the "gc_dettpratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDettPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDettPraticaModelImpl
- * @generated
- */
-public interface BoDettPraticaModel extends BaseModel,
- StagedGroupedModel, WorkflowedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo dett pratica model instance should use the {@link BoDettPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo dett pratica.
- *
- * @return the primary key of this bo dett pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo dett pratica.
- *
- * @param primaryKey the primary key of this bo dett pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo dett pratica.
- *
- * @return the uuid of this bo dett pratica
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo dett pratica.
- *
- * @param uuid the uuid of this bo dett pratica
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the dett pratica ID of this bo dett pratica.
- *
- * @return the dett pratica ID of this bo dett pratica
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo dett pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo dett pratica
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the company ID of this bo dett pratica.
- *
- * @return the company ID of this bo dett pratica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo dett pratica.
- *
- * @param companyId the company ID of this bo dett pratica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo dett pratica.
- *
- * @return the user ID of this bo dett pratica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo dett pratica.
- *
- * @param userId the user ID of this bo dett pratica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo dett pratica.
- *
- * @return the user uuid of this bo dett pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo dett pratica.
- *
- * @param userUuid the user uuid of this bo dett pratica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo dett pratica.
- *
- * @return the user name of this bo dett pratica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo dett pratica.
- *
- * @param userName the user name of this bo dett pratica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo dett pratica.
- *
- * @return the create date of this bo dett pratica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo dett pratica.
- *
- * @param createDate the create date of this bo dett pratica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo dett pratica.
- *
- * @return the modified date of this bo dett pratica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo dett pratica.
- *
- * @param modifiedDate the modified date of this bo dett pratica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo dett pratica.
- *
- * @return the group ID of this bo dett pratica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo dett pratica.
- *
- * @param groupId the group ID of this bo dett pratica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the int pratica ID of this bo dett pratica.
- *
- * @return the int pratica ID of this bo dett pratica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo dett pratica.
- *
- * @param intPraticaId the int pratica ID of this bo dett pratica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the integrazione of this bo dett pratica.
- *
- * @return the integrazione of this bo dett pratica
- */
- public long getIntegrazione();
-
- /**
- * Sets the integrazione of this bo dett pratica.
- *
- * @param integrazione the integrazione of this bo dett pratica
- */
- public void setIntegrazione(long integrazione);
-
- /**
- * Returns the suap code of this bo dett pratica.
- *
- * @return the suap code of this bo dett pratica
- */
- @AutoEscape
- public String getSuapCode();
-
- /**
- * Sets the suap code of this bo dett pratica.
- *
- * @param suapCode the suap code of this bo dett pratica
- */
- public void setSuapCode(String suapCode);
-
- /**
- * Returns the validata of this bo dett pratica.
- *
- * @return the validata of this bo dett pratica
- */
- public boolean getValidata();
-
- /**
- * Returns true if this bo dett pratica is validata.
- *
- * @return true if this bo dett pratica is validata; false otherwise
- */
- public boolean isValidata();
-
- /**
- * Sets whether this bo dett pratica is validata.
- *
- * @param validata the validata of this bo dett pratica
- */
- public void setValidata(boolean validata);
-
- /**
- * Returns the cod pratica suap of this bo dett pratica.
- *
- * @return the cod pratica suap of this bo dett pratica
- */
- @AutoEscape
- public String getCodPraticaSuap();
-
- /**
- * Sets the cod pratica suap of this bo dett pratica.
- *
- * @param codPraticaSuap the cod pratica suap of this bo dett pratica
- */
- public void setCodPraticaSuap(String codPraticaSuap);
-
- /**
- * Returns the protocollo of this bo dett pratica.
- *
- * @return the protocollo of this bo dett pratica
- */
- @AutoEscape
- public String getProtocollo();
-
- /**
- * Sets the protocollo of this bo dett pratica.
- *
- * @param protocollo the protocollo of this bo dett pratica
- */
- public void setProtocollo(String protocollo);
-
- /**
- * Returns the tipo integrazione of this bo dett pratica.
- *
- * @return the tipo integrazione of this bo dett pratica
- */
- @AutoEscape
- public String getTipoIntegrazione();
-
- /**
- * Sets the tipo integrazione of this bo dett pratica.
- *
- * @param tipoIntegrazione the tipo integrazione of this bo dett pratica
- */
- public void setTipoIntegrazione(String tipoIntegrazione);
-
- /**
- * Returns the completa of this bo dett pratica.
- *
- * @return the completa of this bo dett pratica
- */
- public boolean getCompleta();
-
- /**
- * Returns true if this bo dett pratica is completa.
- *
- * @return true if this bo dett pratica is completa; false otherwise
- */
- public boolean isCompleta();
-
- /**
- * Sets whether this bo dett pratica is completa.
- *
- * @param completa the completa of this bo dett pratica
- */
- public void setCompleta(boolean completa);
-
- /**
- * Returns the gestita of this bo dett pratica.
- *
- * @return the gestita of this bo dett pratica
- */
- public boolean getGestita();
-
- /**
- * Returns true if this bo dett pratica is gestita.
- *
- * @return true if this bo dett pratica is gestita; false otherwise
- */
- public boolean isGestita();
-
- /**
- * Sets whether this bo dett pratica is gestita.
- *
- * @param gestita the gestita of this bo dett pratica
- */
- public void setGestita(boolean gestita);
-
- /**
- * Returns the codice pagamento of this bo dett pratica.
- *
- * @return the codice pagamento of this bo dett pratica
- */
- @AutoEscape
- public String getCodicePagamento();
-
- /**
- * Sets the codice pagamento of this bo dett pratica.
- *
- * @param codicePagamento the codice pagamento of this bo dett pratica
- */
- public void setCodicePagamento(String codicePagamento);
-
- /**
- * Returns the causale pagamento of this bo dett pratica.
- *
- * @return the causale pagamento of this bo dett pratica
- */
- @AutoEscape
- public String getCausalePagamento();
-
- /**
- * Sets the causale pagamento of this bo dett pratica.
- *
- * @param causalePagamento the causale pagamento of this bo dett pratica
- */
- public void setCausalePagamento(String causalePagamento);
-
- /**
- * Returns the mezzo pagamento of this bo dett pratica.
- *
- * @return the mezzo pagamento of this bo dett pratica
- */
- @AutoEscape
- public String getMezzoPagamento();
-
- /**
- * Sets the mezzo pagamento of this bo dett pratica.
- *
- * @param mezzoPagamento the mezzo pagamento of this bo dett pratica
- */
- public void setMezzoPagamento(String mezzoPagamento);
-
- /**
- * Returns the importo bolli of this bo dett pratica.
- *
- * @return the importo bolli of this bo dett pratica
- */
- @AutoEscape
- public String getImportoBolli();
-
- /**
- * Sets the importo bolli of this bo dett pratica.
- *
- * @param importoBolli the importo bolli of this bo dett pratica
- */
- public void setImportoBolli(String importoBolli);
-
- /**
- * Returns the importo spese istruttoria of this bo dett pratica.
- *
- * @return the importo spese istruttoria of this bo dett pratica
- */
- @AutoEscape
- public String getImportoSpeseIstruttoria();
-
- /**
- * Sets the importo spese istruttoria of this bo dett pratica.
- *
- * @param importoSpeseIstruttoria the importo spese istruttoria of this bo dett pratica
- */
- public void setImportoSpeseIstruttoria(String importoSpeseIstruttoria);
-
- /**
- * Returns the data effettuazione of this bo dett pratica.
- *
- * @return the data effettuazione of this bo dett pratica
- */
- public Date getDataEffettuazione();
-
- /**
- * Sets the data effettuazione of this bo dett pratica.
- *
- * @param dataEffettuazione the data effettuazione of this bo dett pratica
- */
- public void setDataEffettuazione(Date dataEffettuazione);
-
- /**
- * Returns the esenzione bolli of this bo dett pratica.
- *
- * @return the esenzione bolli of this bo dett pratica
- */
- public boolean getEsenzioneBolli();
-
- /**
- * Returns true if this bo dett pratica is esenzione bolli.
- *
- * @return true if this bo dett pratica is esenzione bolli; false otherwise
- */
- public boolean isEsenzioneBolli();
-
- /**
- * Sets whether this bo dett pratica is esenzione bolli.
- *
- * @param esenzioneBolli the esenzione bolli of this bo dett pratica
- */
- public void setEsenzioneBolli(boolean esenzioneBolli);
-
- /**
- * Returns the esenzione spese istruttoria of this bo dett pratica.
- *
- * @return the esenzione spese istruttoria of this bo dett pratica
- */
- public boolean getEsenzioneSpeseIstruttoria();
-
- /**
- * Returns true if this bo dett pratica is esenzione spese istruttoria.
- *
- * @return true if this bo dett pratica is esenzione spese istruttoria; false otherwise
- */
- public boolean isEsenzioneSpeseIstruttoria();
-
- /**
- * Sets whether this bo dett pratica is esenzione spese istruttoria.
- *
- * @param esenzioneSpeseIstruttoria the esenzione spese istruttoria of this bo dett pratica
- */
- public void setEsenzioneSpeseIstruttoria(boolean esenzioneSpeseIstruttoria);
-
- /**
- * Returns the status of this bo dett pratica.
- *
- * @return the status of this bo dett pratica
- */
- @Override
- public int getStatus();
-
- /**
- * Sets the status of this bo dett pratica.
- *
- * @param status the status of this bo dett pratica
- */
- @Override
- public void setStatus(int status);
-
- /**
- * Returns the status by user ID of this bo dett pratica.
- *
- * @return the status by user ID of this bo dett pratica
- */
- @Override
- public long getStatusByUserId();
-
- /**
- * Sets the status by user ID of this bo dett pratica.
- *
- * @param statusByUserId the status by user ID of this bo dett pratica
- */
- @Override
- public void setStatusByUserId(long statusByUserId);
-
- /**
- * Returns the status by user uuid of this bo dett pratica.
- *
- * @return the status by user uuid of this bo dett pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getStatusByUserUuid() throws SystemException;
-
- /**
- * Sets the status by user uuid of this bo dett pratica.
- *
- * @param statusByUserUuid the status by user uuid of this bo dett pratica
- */
- @Override
- public void setStatusByUserUuid(String statusByUserUuid);
-
- /**
- * Returns the status by user name of this bo dett pratica.
- *
- * @return the status by user name of this bo dett pratica
- */
- @AutoEscape
- @Override
- public String getStatusByUserName();
-
- /**
- * Sets the status by user name of this bo dett pratica.
- *
- * @param statusByUserName the status by user name of this bo dett pratica
- */
- @Override
- public void setStatusByUserName(String statusByUserName);
-
- /**
- * Returns the status date of this bo dett pratica.
- *
- * @return the status date of this bo dett pratica
- */
- @Override
- public Date getStatusDate();
-
- /**
- * Sets the status date of this bo dett pratica.
- *
- * @param statusDate the status date of this bo dett pratica
- */
- @Override
- public void setStatusDate(Date statusDate);
-
- /**
- * Returns the status task of this bo dett pratica.
- *
- * @return the status task of this bo dett pratica
- */
- public int getStatusTask();
-
- /**
- * Sets the status task of this bo dett pratica.
- *
- * @param statusTask the status task of this bo dett pratica
- */
- public void setStatusTask(int statusTask);
-
- /**
- * Returns the workflow forzato of this bo dett pratica.
- *
- * @return the workflow forzato of this bo dett pratica
- */
- public boolean getWorkflowForzato();
-
- /**
- * Returns true if this bo dett pratica is workflow forzato.
- *
- * @return true if this bo dett pratica is workflow forzato; false otherwise
- */
- public boolean isWorkflowForzato();
-
- /**
- * Sets whether this bo dett pratica is workflow forzato.
- *
- * @param workflowForzato the workflow forzato of this bo dett pratica
- */
- public void setWorkflowForzato(boolean workflowForzato);
-
- /**
- * Returns the soggetto sostituito ID of this bo dett pratica.
- *
- * @return the soggetto sostituito ID of this bo dett pratica
- */
- public long getSoggettoSostituitoId();
-
- /**
- * Sets the soggetto sostituito ID of this bo dett pratica.
- *
- * @param soggettoSostituitoId the soggetto sostituito ID of this bo dett pratica
- */
- public void setSoggettoSostituitoId(long soggettoSostituitoId);
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
- */
- @Override
- public boolean getApproved();
-
- /**
- * Returns true if this bo dett pratica is approved.
- *
- * @return true if this bo dett pratica is approved; false otherwise
- */
- @Override
- public boolean isApproved();
-
- /**
- * Returns true if this bo dett pratica is denied.
- *
- * @return true if this bo dett pratica is denied; false otherwise
- */
- @Override
- public boolean isDenied();
-
- /**
- * Returns true if this bo dett pratica is a draft.
- *
- * @return true if this bo dett pratica is a draft; false otherwise
- */
- @Override
- public boolean isDraft();
-
- /**
- * Returns true if this bo dett pratica is expired.
- *
- * @return true if this bo dett pratica is expired; false otherwise
- */
- @Override
- public boolean isExpired();
-
- /**
- * Returns true if this bo dett pratica is inactive.
- *
- * @return true if this bo dett pratica is inactive; false otherwise
- */
- @Override
- public boolean isInactive();
-
- /**
- * Returns true if this bo dett pratica is incomplete.
- *
- * @return true if this bo dett pratica is incomplete; false otherwise
- */
- @Override
- public boolean isIncomplete();
-
- /**
- * Returns true if this bo dett pratica is pending.
- *
- * @return true if this bo dett pratica is pending; false otherwise
- */
- @Override
- public boolean isPending();
-
- /**
- * Returns true if this bo dett pratica is scheduled.
- *
- * @return true if this bo dett pratica is scheduled; false otherwise
- */
- @Override
- public boolean isScheduled();
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoDettPratica boDettPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDettPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDettPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaSoap.java
deleted file mode 100644
index 88d7c16a..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaSoap.java
+++ /dev/null
@@ -1,429 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoDettPraticaSoap implements Serializable {
- public static BoDettPraticaSoap toSoapModel(BoDettPratica model) {
- BoDettPraticaSoap soapModel = new BoDettPraticaSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setIntegrazione(model.getIntegrazione());
- soapModel.setSuapCode(model.getSuapCode());
- soapModel.setValidata(model.getValidata());
- soapModel.setCodPraticaSuap(model.getCodPraticaSuap());
- soapModel.setProtocollo(model.getProtocollo());
- soapModel.setTipoIntegrazione(model.getTipoIntegrazione());
- soapModel.setCompleta(model.getCompleta());
- soapModel.setGestita(model.getGestita());
- soapModel.setCodicePagamento(model.getCodicePagamento());
- soapModel.setCausalePagamento(model.getCausalePagamento());
- soapModel.setMezzoPagamento(model.getMezzoPagamento());
- soapModel.setImportoBolli(model.getImportoBolli());
- soapModel.setImportoSpeseIstruttoria(model.getImportoSpeseIstruttoria());
- soapModel.setDataEffettuazione(model.getDataEffettuazione());
- soapModel.setEsenzioneBolli(model.getEsenzioneBolli());
- soapModel.setEsenzioneSpeseIstruttoria(model.getEsenzioneSpeseIstruttoria());
- soapModel.setStatus(model.getStatus());
- soapModel.setStatusByUserId(model.getStatusByUserId());
- soapModel.setStatusByUserName(model.getStatusByUserName());
- soapModel.setStatusDate(model.getStatusDate());
- soapModel.setStatusTask(model.getStatusTask());
- soapModel.setWorkflowForzato(model.getWorkflowForzato());
- soapModel.setSoggettoSostituitoId(model.getSoggettoSostituitoId());
-
- return soapModel;
- }
-
- public static BoDettPraticaSoap[] toSoapModels(BoDettPratica[] models) {
- BoDettPraticaSoap[] soapModels = new BoDettPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoDettPraticaSoap[][] toSoapModels(BoDettPratica[][] models) {
- BoDettPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoDettPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoDettPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoDettPraticaSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoDettPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoDettPraticaSoap[soapModels.size()]);
- }
-
- public BoDettPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _dettPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setDettPraticaId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public long getIntegrazione() {
- return _integrazione;
- }
-
- public void setIntegrazione(long integrazione) {
- _integrazione = integrazione;
- }
-
- public String getSuapCode() {
- return _suapCode;
- }
-
- public void setSuapCode(String suapCode) {
- _suapCode = suapCode;
- }
-
- public boolean getValidata() {
- return _validata;
- }
-
- public boolean isValidata() {
- return _validata;
- }
-
- public void setValidata(boolean validata) {
- _validata = validata;
- }
-
- public String getCodPraticaSuap() {
- return _codPraticaSuap;
- }
-
- public void setCodPraticaSuap(String codPraticaSuap) {
- _codPraticaSuap = codPraticaSuap;
- }
-
- public String getProtocollo() {
- return _protocollo;
- }
-
- public void setProtocollo(String protocollo) {
- _protocollo = protocollo;
- }
-
- public String getTipoIntegrazione() {
- return _tipoIntegrazione;
- }
-
- public void setTipoIntegrazione(String tipoIntegrazione) {
- _tipoIntegrazione = tipoIntegrazione;
- }
-
- public boolean getCompleta() {
- return _completa;
- }
-
- public boolean isCompleta() {
- return _completa;
- }
-
- public void setCompleta(boolean completa) {
- _completa = completa;
- }
-
- public boolean getGestita() {
- return _gestita;
- }
-
- public boolean isGestita() {
- return _gestita;
- }
-
- public void setGestita(boolean gestita) {
- _gestita = gestita;
- }
-
- public String getCodicePagamento() {
- return _codicePagamento;
- }
-
- public void setCodicePagamento(String codicePagamento) {
- _codicePagamento = codicePagamento;
- }
-
- public String getCausalePagamento() {
- return _causalePagamento;
- }
-
- public void setCausalePagamento(String causalePagamento) {
- _causalePagamento = causalePagamento;
- }
-
- public String getMezzoPagamento() {
- return _mezzoPagamento;
- }
-
- public void setMezzoPagamento(String mezzoPagamento) {
- _mezzoPagamento = mezzoPagamento;
- }
-
- public String getImportoBolli() {
- return _importoBolli;
- }
-
- public void setImportoBolli(String importoBolli) {
- _importoBolli = importoBolli;
- }
-
- public String getImportoSpeseIstruttoria() {
- return _importoSpeseIstruttoria;
- }
-
- public void setImportoSpeseIstruttoria(String importoSpeseIstruttoria) {
- _importoSpeseIstruttoria = importoSpeseIstruttoria;
- }
-
- public Date getDataEffettuazione() {
- return _dataEffettuazione;
- }
-
- public void setDataEffettuazione(Date dataEffettuazione) {
- _dataEffettuazione = dataEffettuazione;
- }
-
- public boolean getEsenzioneBolli() {
- return _esenzioneBolli;
- }
-
- public boolean isEsenzioneBolli() {
- return _esenzioneBolli;
- }
-
- public void setEsenzioneBolli(boolean esenzioneBolli) {
- _esenzioneBolli = esenzioneBolli;
- }
-
- public boolean getEsenzioneSpeseIstruttoria() {
- return _esenzioneSpeseIstruttoria;
- }
-
- public boolean isEsenzioneSpeseIstruttoria() {
- return _esenzioneSpeseIstruttoria;
- }
-
- public void setEsenzioneSpeseIstruttoria(boolean esenzioneSpeseIstruttoria) {
- _esenzioneSpeseIstruttoria = esenzioneSpeseIstruttoria;
- }
-
- public int getStatus() {
- return _status;
- }
-
- public void setStatus(int status) {
- _status = status;
- }
-
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
- }
-
- public String getStatusByUserName() {
- return _statusByUserName;
- }
-
- public void setStatusByUserName(String statusByUserName) {
- _statusByUserName = statusByUserName;
- }
-
- public Date getStatusDate() {
- return _statusDate;
- }
-
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
- }
-
- public int getStatusTask() {
- return _statusTask;
- }
-
- public void setStatusTask(int statusTask) {
- _statusTask = statusTask;
- }
-
- public boolean getWorkflowForzato() {
- return _workflowForzato;
- }
-
- public boolean isWorkflowForzato() {
- return _workflowForzato;
- }
-
- public void setWorkflowForzato(boolean workflowForzato) {
- _workflowForzato = workflowForzato;
- }
-
- public long getSoggettoSostituitoId() {
- return _soggettoSostituitoId;
- }
-
- public void setSoggettoSostituitoId(long soggettoSostituitoId) {
- _soggettoSostituitoId = soggettoSostituitoId;
- }
-
- private String _uuid;
- private long _dettPraticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private long _integrazione;
- private String _suapCode;
- private boolean _validata;
- private String _codPraticaSuap;
- private String _protocollo;
- private String _tipoIntegrazione;
- private boolean _completa;
- private boolean _gestita;
- private String _codicePagamento;
- private String _causalePagamento;
- private String _mezzoPagamento;
- private String _importoBolli;
- private String _importoSpeseIstruttoria;
- private Date _dataEffettuazione;
- private boolean _esenzioneBolli;
- private boolean _esenzioneSpeseIstruttoria;
- private int _status;
- private long _statusByUserId;
- private String _statusByUserName;
- private Date _statusDate;
- private int _statusTask;
- private boolean _workflowForzato;
- private long _soggettoSostituitoId;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaWrapper.java
deleted file mode 100644
index bc7324a8..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDettPraticaWrapper.java
+++ /dev/null
@@ -1,1288 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoDettPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDettPratica
- * @generated
- */
-public class BoDettPraticaWrapper implements BoDettPratica,
- ModelWrapper {
- public BoDettPraticaWrapper(BoDettPratica boDettPratica) {
- _boDettPratica = boDettPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoDettPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoDettPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("integrazione", getIntegrazione());
- attributes.put("suapCode", getSuapCode());
- attributes.put("validata", getValidata());
- attributes.put("codPraticaSuap", getCodPraticaSuap());
- attributes.put("protocollo", getProtocollo());
- attributes.put("tipoIntegrazione", getTipoIntegrazione());
- attributes.put("completa", getCompleta());
- attributes.put("gestita", getGestita());
- attributes.put("codicePagamento", getCodicePagamento());
- attributes.put("causalePagamento", getCausalePagamento());
- attributes.put("mezzoPagamento", getMezzoPagamento());
- attributes.put("importoBolli", getImportoBolli());
- attributes.put("importoSpeseIstruttoria", getImportoSpeseIstruttoria());
- attributes.put("dataEffettuazione", getDataEffettuazione());
- attributes.put("esenzioneBolli", getEsenzioneBolli());
- attributes.put("esenzioneSpeseIstruttoria",
- getEsenzioneSpeseIstruttoria());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusByUserName", getStatusByUserName());
- attributes.put("statusDate", getStatusDate());
- attributes.put("statusTask", getStatusTask());
- attributes.put("workflowForzato", getWorkflowForzato());
- attributes.put("soggettoSostituitoId", getSoggettoSostituitoId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long integrazione = (Long)attributes.get("integrazione");
-
- if (integrazione != null) {
- setIntegrazione(integrazione);
- }
-
- String suapCode = (String)attributes.get("suapCode");
-
- if (suapCode != null) {
- setSuapCode(suapCode);
- }
-
- Boolean validata = (Boolean)attributes.get("validata");
-
- if (validata != null) {
- setValidata(validata);
- }
-
- String codPraticaSuap = (String)attributes.get("codPraticaSuap");
-
- if (codPraticaSuap != null) {
- setCodPraticaSuap(codPraticaSuap);
- }
-
- String protocollo = (String)attributes.get("protocollo");
-
- if (protocollo != null) {
- setProtocollo(protocollo);
- }
-
- String tipoIntegrazione = (String)attributes.get("tipoIntegrazione");
-
- if (tipoIntegrazione != null) {
- setTipoIntegrazione(tipoIntegrazione);
- }
-
- Boolean completa = (Boolean)attributes.get("completa");
-
- if (completa != null) {
- setCompleta(completa);
- }
-
- Boolean gestita = (Boolean)attributes.get("gestita");
-
- if (gestita != null) {
- setGestita(gestita);
- }
-
- String codicePagamento = (String)attributes.get("codicePagamento");
-
- if (codicePagamento != null) {
- setCodicePagamento(codicePagamento);
- }
-
- String causalePagamento = (String)attributes.get("causalePagamento");
-
- if (causalePagamento != null) {
- setCausalePagamento(causalePagamento);
- }
-
- String mezzoPagamento = (String)attributes.get("mezzoPagamento");
-
- if (mezzoPagamento != null) {
- setMezzoPagamento(mezzoPagamento);
- }
-
- String importoBolli = (String)attributes.get("importoBolli");
-
- if (importoBolli != null) {
- setImportoBolli(importoBolli);
- }
-
- String importoSpeseIstruttoria = (String)attributes.get(
- "importoSpeseIstruttoria");
-
- if (importoSpeseIstruttoria != null) {
- setImportoSpeseIstruttoria(importoSpeseIstruttoria);
- }
-
- Date dataEffettuazione = (Date)attributes.get("dataEffettuazione");
-
- if (dataEffettuazione != null) {
- setDataEffettuazione(dataEffettuazione);
- }
-
- Boolean esenzioneBolli = (Boolean)attributes.get("esenzioneBolli");
-
- if (esenzioneBolli != null) {
- setEsenzioneBolli(esenzioneBolli);
- }
-
- Boolean esenzioneSpeseIstruttoria = (Boolean)attributes.get(
- "esenzioneSpeseIstruttoria");
-
- if (esenzioneSpeseIstruttoria != null) {
- setEsenzioneSpeseIstruttoria(esenzioneSpeseIstruttoria);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- String statusByUserName = (String)attributes.get("statusByUserName");
-
- if (statusByUserName != null) {
- setStatusByUserName(statusByUserName);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- Integer statusTask = (Integer)attributes.get("statusTask");
-
- if (statusTask != null) {
- setStatusTask(statusTask);
- }
-
- Boolean workflowForzato = (Boolean)attributes.get("workflowForzato");
-
- if (workflowForzato != null) {
- setWorkflowForzato(workflowForzato);
- }
-
- Long soggettoSostituitoId = (Long)attributes.get("soggettoSostituitoId");
-
- if (soggettoSostituitoId != null) {
- setSoggettoSostituitoId(soggettoSostituitoId);
- }
- }
-
- /**
- * Returns the primary key of this bo dett pratica.
- *
- * @return the primary key of this bo dett pratica
- */
- @Override
- public long getPrimaryKey() {
- return _boDettPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo dett pratica.
- *
- * @param primaryKey the primary key of this bo dett pratica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boDettPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo dett pratica.
- *
- * @return the uuid of this bo dett pratica
- */
- @Override
- public java.lang.String getUuid() {
- return _boDettPratica.getUuid();
- }
-
- /**
- * Sets the uuid of this bo dett pratica.
- *
- * @param uuid the uuid of this bo dett pratica
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boDettPratica.setUuid(uuid);
- }
-
- /**
- * Returns the dett pratica ID of this bo dett pratica.
- *
- * @return the dett pratica ID of this bo dett pratica
- */
- @Override
- public long getDettPraticaId() {
- return _boDettPratica.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo dett pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo dett pratica
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boDettPratica.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the company ID of this bo dett pratica.
- *
- * @return the company ID of this bo dett pratica
- */
- @Override
- public long getCompanyId() {
- return _boDettPratica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo dett pratica.
- *
- * @param companyId the company ID of this bo dett pratica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boDettPratica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo dett pratica.
- *
- * @return the user ID of this bo dett pratica
- */
- @Override
- public long getUserId() {
- return _boDettPratica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo dett pratica.
- *
- * @param userId the user ID of this bo dett pratica
- */
- @Override
- public void setUserId(long userId) {
- _boDettPratica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo dett pratica.
- *
- * @return the user uuid of this bo dett pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boDettPratica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo dett pratica.
- *
- * @param userUuid the user uuid of this bo dett pratica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boDettPratica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo dett pratica.
- *
- * @return the user name of this bo dett pratica
- */
- @Override
- public java.lang.String getUserName() {
- return _boDettPratica.getUserName();
- }
-
- /**
- * Sets the user name of this bo dett pratica.
- *
- * @param userName the user name of this bo dett pratica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boDettPratica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo dett pratica.
- *
- * @return the create date of this bo dett pratica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boDettPratica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo dett pratica.
- *
- * @param createDate the create date of this bo dett pratica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boDettPratica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo dett pratica.
- *
- * @return the modified date of this bo dett pratica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boDettPratica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo dett pratica.
- *
- * @param modifiedDate the modified date of this bo dett pratica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boDettPratica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo dett pratica.
- *
- * @return the group ID of this bo dett pratica
- */
- @Override
- public long getGroupId() {
- return _boDettPratica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo dett pratica.
- *
- * @param groupId the group ID of this bo dett pratica
- */
- @Override
- public void setGroupId(long groupId) {
- _boDettPratica.setGroupId(groupId);
- }
-
- /**
- * Returns the int pratica ID of this bo dett pratica.
- *
- * @return the int pratica ID of this bo dett pratica
- */
- @Override
- public long getIntPraticaId() {
- return _boDettPratica.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo dett pratica.
- *
- * @param intPraticaId the int pratica ID of this bo dett pratica
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boDettPratica.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the integrazione of this bo dett pratica.
- *
- * @return the integrazione of this bo dett pratica
- */
- @Override
- public long getIntegrazione() {
- return _boDettPratica.getIntegrazione();
- }
-
- /**
- * Sets the integrazione of this bo dett pratica.
- *
- * @param integrazione the integrazione of this bo dett pratica
- */
- @Override
- public void setIntegrazione(long integrazione) {
- _boDettPratica.setIntegrazione(integrazione);
- }
-
- /**
- * Returns the suap code of this bo dett pratica.
- *
- * @return the suap code of this bo dett pratica
- */
- @Override
- public java.lang.String getSuapCode() {
- return _boDettPratica.getSuapCode();
- }
-
- /**
- * Sets the suap code of this bo dett pratica.
- *
- * @param suapCode the suap code of this bo dett pratica
- */
- @Override
- public void setSuapCode(java.lang.String suapCode) {
- _boDettPratica.setSuapCode(suapCode);
- }
-
- /**
- * Returns the validata of this bo dett pratica.
- *
- * @return the validata of this bo dett pratica
- */
- @Override
- public boolean getValidata() {
- return _boDettPratica.getValidata();
- }
-
- /**
- * Returns true if this bo dett pratica is validata.
- *
- * @return true if this bo dett pratica is validata; false otherwise
- */
- @Override
- public boolean isValidata() {
- return _boDettPratica.isValidata();
- }
-
- /**
- * Sets whether this bo dett pratica is validata.
- *
- * @param validata the validata of this bo dett pratica
- */
- @Override
- public void setValidata(boolean validata) {
- _boDettPratica.setValidata(validata);
- }
-
- /**
- * Returns the cod pratica suap of this bo dett pratica.
- *
- * @return the cod pratica suap of this bo dett pratica
- */
- @Override
- public java.lang.String getCodPraticaSuap() {
- return _boDettPratica.getCodPraticaSuap();
- }
-
- /**
- * Sets the cod pratica suap of this bo dett pratica.
- *
- * @param codPraticaSuap the cod pratica suap of this bo dett pratica
- */
- @Override
- public void setCodPraticaSuap(java.lang.String codPraticaSuap) {
- _boDettPratica.setCodPraticaSuap(codPraticaSuap);
- }
-
- /**
- * Returns the protocollo of this bo dett pratica.
- *
- * @return the protocollo of this bo dett pratica
- */
- @Override
- public java.lang.String getProtocollo() {
- return _boDettPratica.getProtocollo();
- }
-
- /**
- * Sets the protocollo of this bo dett pratica.
- *
- * @param protocollo the protocollo of this bo dett pratica
- */
- @Override
- public void setProtocollo(java.lang.String protocollo) {
- _boDettPratica.setProtocollo(protocollo);
- }
-
- /**
- * Returns the tipo integrazione of this bo dett pratica.
- *
- * @return the tipo integrazione of this bo dett pratica
- */
- @Override
- public java.lang.String getTipoIntegrazione() {
- return _boDettPratica.getTipoIntegrazione();
- }
-
- /**
- * Sets the tipo integrazione of this bo dett pratica.
- *
- * @param tipoIntegrazione the tipo integrazione of this bo dett pratica
- */
- @Override
- public void setTipoIntegrazione(java.lang.String tipoIntegrazione) {
- _boDettPratica.setTipoIntegrazione(tipoIntegrazione);
- }
-
- /**
- * Returns the completa of this bo dett pratica.
- *
- * @return the completa of this bo dett pratica
- */
- @Override
- public boolean getCompleta() {
- return _boDettPratica.getCompleta();
- }
-
- /**
- * Returns true if this bo dett pratica is completa.
- *
- * @return true if this bo dett pratica is completa; false otherwise
- */
- @Override
- public boolean isCompleta() {
- return _boDettPratica.isCompleta();
- }
-
- /**
- * Sets whether this bo dett pratica is completa.
- *
- * @param completa the completa of this bo dett pratica
- */
- @Override
- public void setCompleta(boolean completa) {
- _boDettPratica.setCompleta(completa);
- }
-
- /**
- * Returns the gestita of this bo dett pratica.
- *
- * @return the gestita of this bo dett pratica
- */
- @Override
- public boolean getGestita() {
- return _boDettPratica.getGestita();
- }
-
- /**
- * Returns true if this bo dett pratica is gestita.
- *
- * @return true if this bo dett pratica is gestita; false otherwise
- */
- @Override
- public boolean isGestita() {
- return _boDettPratica.isGestita();
- }
-
- /**
- * Sets whether this bo dett pratica is gestita.
- *
- * @param gestita the gestita of this bo dett pratica
- */
- @Override
- public void setGestita(boolean gestita) {
- _boDettPratica.setGestita(gestita);
- }
-
- /**
- * Returns the codice pagamento of this bo dett pratica.
- *
- * @return the codice pagamento of this bo dett pratica
- */
- @Override
- public java.lang.String getCodicePagamento() {
- return _boDettPratica.getCodicePagamento();
- }
-
- /**
- * Sets the codice pagamento of this bo dett pratica.
- *
- * @param codicePagamento the codice pagamento of this bo dett pratica
- */
- @Override
- public void setCodicePagamento(java.lang.String codicePagamento) {
- _boDettPratica.setCodicePagamento(codicePagamento);
- }
-
- /**
- * Returns the causale pagamento of this bo dett pratica.
- *
- * @return the causale pagamento of this bo dett pratica
- */
- @Override
- public java.lang.String getCausalePagamento() {
- return _boDettPratica.getCausalePagamento();
- }
-
- /**
- * Sets the causale pagamento of this bo dett pratica.
- *
- * @param causalePagamento the causale pagamento of this bo dett pratica
- */
- @Override
- public void setCausalePagamento(java.lang.String causalePagamento) {
- _boDettPratica.setCausalePagamento(causalePagamento);
- }
-
- /**
- * Returns the mezzo pagamento of this bo dett pratica.
- *
- * @return the mezzo pagamento of this bo dett pratica
- */
- @Override
- public java.lang.String getMezzoPagamento() {
- return _boDettPratica.getMezzoPagamento();
- }
-
- /**
- * Sets the mezzo pagamento of this bo dett pratica.
- *
- * @param mezzoPagamento the mezzo pagamento of this bo dett pratica
- */
- @Override
- public void setMezzoPagamento(java.lang.String mezzoPagamento) {
- _boDettPratica.setMezzoPagamento(mezzoPagamento);
- }
-
- /**
- * Returns the importo bolli of this bo dett pratica.
- *
- * @return the importo bolli of this bo dett pratica
- */
- @Override
- public java.lang.String getImportoBolli() {
- return _boDettPratica.getImportoBolli();
- }
-
- /**
- * Sets the importo bolli of this bo dett pratica.
- *
- * @param importoBolli the importo bolli of this bo dett pratica
- */
- @Override
- public void setImportoBolli(java.lang.String importoBolli) {
- _boDettPratica.setImportoBolli(importoBolli);
- }
-
- /**
- * Returns the importo spese istruttoria of this bo dett pratica.
- *
- * @return the importo spese istruttoria of this bo dett pratica
- */
- @Override
- public java.lang.String getImportoSpeseIstruttoria() {
- return _boDettPratica.getImportoSpeseIstruttoria();
- }
-
- /**
- * Sets the importo spese istruttoria of this bo dett pratica.
- *
- * @param importoSpeseIstruttoria the importo spese istruttoria of this bo dett pratica
- */
- @Override
- public void setImportoSpeseIstruttoria(
- java.lang.String importoSpeseIstruttoria) {
- _boDettPratica.setImportoSpeseIstruttoria(importoSpeseIstruttoria);
- }
-
- /**
- * Returns the data effettuazione of this bo dett pratica.
- *
- * @return the data effettuazione of this bo dett pratica
- */
- @Override
- public java.util.Date getDataEffettuazione() {
- return _boDettPratica.getDataEffettuazione();
- }
-
- /**
- * Sets the data effettuazione of this bo dett pratica.
- *
- * @param dataEffettuazione the data effettuazione of this bo dett pratica
- */
- @Override
- public void setDataEffettuazione(java.util.Date dataEffettuazione) {
- _boDettPratica.setDataEffettuazione(dataEffettuazione);
- }
-
- /**
- * Returns the esenzione bolli of this bo dett pratica.
- *
- * @return the esenzione bolli of this bo dett pratica
- */
- @Override
- public boolean getEsenzioneBolli() {
- return _boDettPratica.getEsenzioneBolli();
- }
-
- /**
- * Returns true if this bo dett pratica is esenzione bolli.
- *
- * @return true if this bo dett pratica is esenzione bolli; false otherwise
- */
- @Override
- public boolean isEsenzioneBolli() {
- return _boDettPratica.isEsenzioneBolli();
- }
-
- /**
- * Sets whether this bo dett pratica is esenzione bolli.
- *
- * @param esenzioneBolli the esenzione bolli of this bo dett pratica
- */
- @Override
- public void setEsenzioneBolli(boolean esenzioneBolli) {
- _boDettPratica.setEsenzioneBolli(esenzioneBolli);
- }
-
- /**
- * Returns the esenzione spese istruttoria of this bo dett pratica.
- *
- * @return the esenzione spese istruttoria of this bo dett pratica
- */
- @Override
- public boolean getEsenzioneSpeseIstruttoria() {
- return _boDettPratica.getEsenzioneSpeseIstruttoria();
- }
-
- /**
- * Returns true if this bo dett pratica is esenzione spese istruttoria.
- *
- * @return true if this bo dett pratica is esenzione spese istruttoria; false otherwise
- */
- @Override
- public boolean isEsenzioneSpeseIstruttoria() {
- return _boDettPratica.isEsenzioneSpeseIstruttoria();
- }
-
- /**
- * Sets whether this bo dett pratica is esenzione spese istruttoria.
- *
- * @param esenzioneSpeseIstruttoria the esenzione spese istruttoria of this bo dett pratica
- */
- @Override
- public void setEsenzioneSpeseIstruttoria(boolean esenzioneSpeseIstruttoria) {
- _boDettPratica.setEsenzioneSpeseIstruttoria(esenzioneSpeseIstruttoria);
- }
-
- /**
- * Returns the status of this bo dett pratica.
- *
- * @return the status of this bo dett pratica
- */
- @Override
- public int getStatus() {
- return _boDettPratica.getStatus();
- }
-
- /**
- * Sets the status of this bo dett pratica.
- *
- * @param status the status of this bo dett pratica
- */
- @Override
- public void setStatus(int status) {
- _boDettPratica.setStatus(status);
- }
-
- /**
- * Returns the status by user ID of this bo dett pratica.
- *
- * @return the status by user ID of this bo dett pratica
- */
- @Override
- public long getStatusByUserId() {
- return _boDettPratica.getStatusByUserId();
- }
-
- /**
- * Sets the status by user ID of this bo dett pratica.
- *
- * @param statusByUserId the status by user ID of this bo dett pratica
- */
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _boDettPratica.setStatusByUserId(statusByUserId);
- }
-
- /**
- * Returns the status by user uuid of this bo dett pratica.
- *
- * @return the status by user uuid of this bo dett pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getStatusByUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boDettPratica.getStatusByUserUuid();
- }
-
- /**
- * Sets the status by user uuid of this bo dett pratica.
- *
- * @param statusByUserUuid the status by user uuid of this bo dett pratica
- */
- @Override
- public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
- _boDettPratica.setStatusByUserUuid(statusByUserUuid);
- }
-
- /**
- * Returns the status by user name of this bo dett pratica.
- *
- * @return the status by user name of this bo dett pratica
- */
- @Override
- public java.lang.String getStatusByUserName() {
- return _boDettPratica.getStatusByUserName();
- }
-
- /**
- * Sets the status by user name of this bo dett pratica.
- *
- * @param statusByUserName the status by user name of this bo dett pratica
- */
- @Override
- public void setStatusByUserName(java.lang.String statusByUserName) {
- _boDettPratica.setStatusByUserName(statusByUserName);
- }
-
- /**
- * Returns the status date of this bo dett pratica.
- *
- * @return the status date of this bo dett pratica
- */
- @Override
- public java.util.Date getStatusDate() {
- return _boDettPratica.getStatusDate();
- }
-
- /**
- * Sets the status date of this bo dett pratica.
- *
- * @param statusDate the status date of this bo dett pratica
- */
- @Override
- public void setStatusDate(java.util.Date statusDate) {
- _boDettPratica.setStatusDate(statusDate);
- }
-
- /**
- * Returns the status task of this bo dett pratica.
- *
- * @return the status task of this bo dett pratica
- */
- @Override
- public int getStatusTask() {
- return _boDettPratica.getStatusTask();
- }
-
- /**
- * Sets the status task of this bo dett pratica.
- *
- * @param statusTask the status task of this bo dett pratica
- */
- @Override
- public void setStatusTask(int statusTask) {
- _boDettPratica.setStatusTask(statusTask);
- }
-
- /**
- * Returns the workflow forzato of this bo dett pratica.
- *
- * @return the workflow forzato of this bo dett pratica
- */
- @Override
- public boolean getWorkflowForzato() {
- return _boDettPratica.getWorkflowForzato();
- }
-
- /**
- * Returns true if this bo dett pratica is workflow forzato.
- *
- * @return true if this bo dett pratica is workflow forzato; false otherwise
- */
- @Override
- public boolean isWorkflowForzato() {
- return _boDettPratica.isWorkflowForzato();
- }
-
- /**
- * Sets whether this bo dett pratica is workflow forzato.
- *
- * @param workflowForzato the workflow forzato of this bo dett pratica
- */
- @Override
- public void setWorkflowForzato(boolean workflowForzato) {
- _boDettPratica.setWorkflowForzato(workflowForzato);
- }
-
- /**
- * Returns the soggetto sostituito ID of this bo dett pratica.
- *
- * @return the soggetto sostituito ID of this bo dett pratica
- */
- @Override
- public long getSoggettoSostituitoId() {
- return _boDettPratica.getSoggettoSostituitoId();
- }
-
- /**
- * Sets the soggetto sostituito ID of this bo dett pratica.
- *
- * @param soggettoSostituitoId the soggetto sostituito ID of this bo dett pratica
- */
- @Override
- public void setSoggettoSostituitoId(long soggettoSostituitoId) {
- _boDettPratica.setSoggettoSostituitoId(soggettoSostituitoId);
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
- */
- @Override
- public boolean getApproved() {
- return _boDettPratica.getApproved();
- }
-
- /**
- * Returns true if this bo dett pratica is approved.
- *
- * @return true if this bo dett pratica is approved; false otherwise
- */
- @Override
- public boolean isApproved() {
- return _boDettPratica.isApproved();
- }
-
- /**
- * Returns true if this bo dett pratica is denied.
- *
- * @return true if this bo dett pratica is denied; false otherwise
- */
- @Override
- public boolean isDenied() {
- return _boDettPratica.isDenied();
- }
-
- /**
- * Returns true if this bo dett pratica is a draft.
- *
- * @return true if this bo dett pratica is a draft; false otherwise
- */
- @Override
- public boolean isDraft() {
- return _boDettPratica.isDraft();
- }
-
- /**
- * Returns true if this bo dett pratica is expired.
- *
- * @return true if this bo dett pratica is expired; false otherwise
- */
- @Override
- public boolean isExpired() {
- return _boDettPratica.isExpired();
- }
-
- /**
- * Returns true if this bo dett pratica is inactive.
- *
- * @return true if this bo dett pratica is inactive; false otherwise
- */
- @Override
- public boolean isInactive() {
- return _boDettPratica.isInactive();
- }
-
- /**
- * Returns true if this bo dett pratica is incomplete.
- *
- * @return true if this bo dett pratica is incomplete; false otherwise
- */
- @Override
- public boolean isIncomplete() {
- return _boDettPratica.isIncomplete();
- }
-
- /**
- * Returns true if this bo dett pratica is pending.
- *
- * @return true if this bo dett pratica is pending; false otherwise
- */
- @Override
- public boolean isPending() {
- return _boDettPratica.isPending();
- }
-
- /**
- * Returns true if this bo dett pratica is scheduled.
- *
- * @return true if this bo dett pratica is scheduled; false otherwise
- */
- @Override
- public boolean isScheduled() {
- return _boDettPratica.isScheduled();
- }
-
- @Override
- public boolean isNew() {
- return _boDettPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boDettPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boDettPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boDettPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boDettPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boDettPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boDettPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boDettPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boDettPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boDettPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boDettPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoDettPraticaWrapper((BoDettPratica)_boDettPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoDettPratica boDettPratica) {
- return _boDettPratica.compareTo(boDettPratica);
- }
-
- @Override
- public int hashCode() {
- return _boDettPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boDettPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDettPratica toEscapedModel() {
- return new BoDettPraticaWrapper(_boDettPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDettPratica toUnescapedModel() {
- return new BoDettPraticaWrapper(_boDettPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boDettPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boDettPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boDettPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoDettPraticaWrapper)) {
- return false;
- }
-
- BoDettPraticaWrapper boDettPraticaWrapper = (BoDettPraticaWrapper)obj;
-
- if (Validator.equals(_boDettPratica, boDettPraticaWrapper._boDettPratica)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boDettPratica.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoDettPratica getWrappedBoDettPratica() {
- return _boDettPratica;
- }
-
- @Override
- public BoDettPratica getWrappedModel() {
- return _boDettPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boDettPratica.resetOriginalValues();
- }
-
- private BoDettPratica _boDettPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPratica.java
deleted file mode 100644
index 7a9862e7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoDocPratica service. Represents a row in the "gc_docpratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDocPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaModelImpl
- * @generated
- */
-public interface BoDocPratica extends BoDocPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaClp.java
deleted file mode 100644
index b69fe117..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaClp.java
+++ /dev/null
@@ -1,1094 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoDocPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoDocPraticaClp extends BaseModelImpl
- implements BoDocPratica {
- public BoDocPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoDocPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoDocPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _docPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setDocPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _docPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("docPraticaId", getDocPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("dlFileEntryId", getDlFileEntryId());
- attributes.put("version", getVersion());
- attributes.put("praticaValidata", getPraticaValidata());
- attributes.put("descLong", getDescLong());
- attributes.put("codFileSuap", getCodFileSuap());
- attributes.put("tipologia", getTipologia());
- attributes.put("md5", getMd5());
- attributes.put("aggiornato", getAggiornato());
- attributes.put("jsonFirmatari", getJsonFirmatari());
- attributes.put("daxId", getDaxId());
- attributes.put("dtInvioDax", getDtInvioDax());
- attributes.put("erroreDax", getErroreDax());
- attributes.put("dtErroreDax", getDtErroreDax());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long docPraticaId = (Long)attributes.get("docPraticaId");
-
- if (docPraticaId != null) {
- setDocPraticaId(docPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- Long dlFileEntryId = (Long)attributes.get("dlFileEntryId");
-
- if (dlFileEntryId != null) {
- setDlFileEntryId(dlFileEntryId);
- }
-
- String version = (String)attributes.get("version");
-
- if (version != null) {
- setVersion(version);
- }
-
- Boolean praticaValidata = (Boolean)attributes.get("praticaValidata");
-
- if (praticaValidata != null) {
- setPraticaValidata(praticaValidata);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
-
- String codFileSuap = (String)attributes.get("codFileSuap");
-
- if (codFileSuap != null) {
- setCodFileSuap(codFileSuap);
- }
-
- String tipologia = (String)attributes.get("tipologia");
-
- if (tipologia != null) {
- setTipologia(tipologia);
- }
-
- String md5 = (String)attributes.get("md5");
-
- if (md5 != null) {
- setMd5(md5);
- }
-
- Boolean aggiornato = (Boolean)attributes.get("aggiornato");
-
- if (aggiornato != null) {
- setAggiornato(aggiornato);
- }
-
- String jsonFirmatari = (String)attributes.get("jsonFirmatari");
-
- if (jsonFirmatari != null) {
- setJsonFirmatari(jsonFirmatari);
- }
-
- Long daxId = (Long)attributes.get("daxId");
-
- if (daxId != null) {
- setDaxId(daxId);
- }
-
- Date dtInvioDax = (Date)attributes.get("dtInvioDax");
-
- if (dtInvioDax != null) {
- setDtInvioDax(dtInvioDax);
- }
-
- String erroreDax = (String)attributes.get("erroreDax");
-
- if (erroreDax != null) {
- setErroreDax(erroreDax);
- }
-
- Date dtErroreDax = (Date)attributes.get("dtErroreDax");
-
- if (dtErroreDax != null) {
- setDtErroreDax(dtErroreDax);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDocPraticaId() {
- return _docPraticaId;
- }
-
- @Override
- public void setDocPraticaId(long docPraticaId) {
- _docPraticaId = docPraticaId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDocPraticaId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, docPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boDocPraticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boDocPraticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDlFileEntryId() {
- return _dlFileEntryId;
- }
-
- @Override
- public void setDlFileEntryId(long dlFileEntryId) {
- _dlFileEntryId = dlFileEntryId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDlFileEntryId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, dlFileEntryId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getVersion() {
- return _version;
- }
-
- @Override
- public void setVersion(String version) {
- _version = version;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVersion", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, version);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getPraticaValidata() {
- return _praticaValidata;
- }
-
- @Override
- public boolean isPraticaValidata() {
- return _praticaValidata;
- }
-
- @Override
- public void setPraticaValidata(boolean praticaValidata) {
- _praticaValidata = praticaValidata;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setPraticaValidata",
- boolean.class);
-
- method.invoke(_boDocPraticaRemoteModel, praticaValidata);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLong() {
- return _descLong;
- }
-
- @Override
- public void setDescLong(String descLong) {
- _descLong = descLong;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLong", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, descLong);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodFileSuap() {
- return _codFileSuap;
- }
-
- @Override
- public void setCodFileSuap(String codFileSuap) {
- _codFileSuap = codFileSuap;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodFileSuap", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, codFileSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipologia() {
- return _tipologia;
- }
-
- @Override
- public void setTipologia(String tipologia) {
- _tipologia = tipologia;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipologia", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, tipologia);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getMd5() {
- return _md5;
- }
-
- @Override
- public void setMd5(String md5) {
- _md5 = md5;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setMd5", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, md5);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getAggiornato() {
- return _aggiornato;
- }
-
- @Override
- public boolean isAggiornato() {
- return _aggiornato;
- }
-
- @Override
- public void setAggiornato(boolean aggiornato) {
- _aggiornato = aggiornato;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAggiornato", boolean.class);
-
- method.invoke(_boDocPraticaRemoteModel, aggiornato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getJsonFirmatari() {
- return _jsonFirmatari;
- }
-
- @Override
- public void setJsonFirmatari(String jsonFirmatari) {
- _jsonFirmatari = jsonFirmatari;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setJsonFirmatari", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, jsonFirmatari);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDaxId() {
- return _daxId;
- }
-
- @Override
- public void setDaxId(long daxId) {
- _daxId = daxId;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDaxId", long.class);
-
- method.invoke(_boDocPraticaRemoteModel, daxId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtInvioDax() {
- return _dtInvioDax;
- }
-
- @Override
- public void setDtInvioDax(Date dtInvioDax) {
- _dtInvioDax = dtInvioDax;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtInvioDax", Date.class);
-
- method.invoke(_boDocPraticaRemoteModel, dtInvioDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getErroreDax() {
- return _erroreDax;
- }
-
- @Override
- public void setErroreDax(String erroreDax) {
- _erroreDax = erroreDax;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setErroreDax", String.class);
-
- method.invoke(_boDocPraticaRemoteModel, erroreDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtErroreDax() {
- return _dtErroreDax;
- }
-
- @Override
- public void setDtErroreDax(Date dtErroreDax) {
- _dtErroreDax = dtErroreDax;
-
- if (_boDocPraticaRemoteModel != null) {
- try {
- Class> clazz = _boDocPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtErroreDax", Date.class);
-
- method.invoke(_boDocPraticaRemoteModel, dtErroreDax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoDocPratica.class.getName()));
- }
-
- public BaseModel> getBoDocPraticaRemoteModel() {
- return _boDocPraticaRemoteModel;
- }
-
- public void setBoDocPraticaRemoteModel(BaseModel> boDocPraticaRemoteModel) {
- _boDocPraticaRemoteModel = boDocPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boDocPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boDocPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoDocPraticaLocalServiceUtil.addBoDocPratica(this);
- }
- else {
- BoDocPraticaLocalServiceUtil.updateBoDocPratica(this);
- }
- }
-
- @Override
- public BoDocPratica toEscapedModel() {
- return (BoDocPratica)ProxyUtil.newProxyInstance(BoDocPratica.class.getClassLoader(),
- new Class[] { BoDocPratica.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoDocPraticaClp clone = new BoDocPraticaClp();
-
- clone.setUuid(getUuid());
- clone.setDocPraticaId(getDocPraticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setDlFileEntryId(getDlFileEntryId());
- clone.setVersion(getVersion());
- clone.setPraticaValidata(getPraticaValidata());
- clone.setDescLong(getDescLong());
- clone.setCodFileSuap(getCodFileSuap());
- clone.setTipologia(getTipologia());
- clone.setMd5(getMd5());
- clone.setAggiornato(getAggiornato());
- clone.setJsonFirmatari(getJsonFirmatari());
- clone.setDaxId(getDaxId());
- clone.setDtInvioDax(getDtInvioDax());
- clone.setErroreDax(getErroreDax());
- clone.setDtErroreDax(getDtErroreDax());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoDocPratica boDocPratica) {
- long primaryKey = boDocPratica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoDocPraticaClp)) {
- return false;
- }
-
- BoDocPraticaClp boDocPratica = (BoDocPraticaClp)obj;
-
- long primaryKey = boDocPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(45);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", docPraticaId=");
- sb.append(getDocPraticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", dlFileEntryId=");
- sb.append(getDlFileEntryId());
- sb.append(", version=");
- sb.append(getVersion());
- sb.append(", praticaValidata=");
- sb.append(getPraticaValidata());
- sb.append(", descLong=");
- sb.append(getDescLong());
- sb.append(", codFileSuap=");
- sb.append(getCodFileSuap());
- sb.append(", tipologia=");
- sb.append(getTipologia());
- sb.append(", md5=");
- sb.append(getMd5());
- sb.append(", aggiornato=");
- sb.append(getAggiornato());
- sb.append(", jsonFirmatari=");
- sb.append(getJsonFirmatari());
- sb.append(", daxId=");
- sb.append(getDaxId());
- sb.append(", dtInvioDax=");
- sb.append(getDtInvioDax());
- sb.append(", erroreDax=");
- sb.append(getErroreDax());
- sb.append(", dtErroreDax=");
- sb.append(getDtErroreDax());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(70);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoDocPratica");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "docPraticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "dettPraticaId");
- sb.append(
- "dlFileEntryId");
- sb.append(
- "version");
- sb.append(
- "praticaValidata");
- sb.append(
- "descLong");
- sb.append(
- "codFileSuap");
- sb.append(
- "tipologia");
- sb.append(
- "md5");
- sb.append(
- "aggiornato");
- sb.append(
- "jsonFirmatari");
- sb.append(
- "daxId");
- sb.append(
- "dtInvioDax");
- sb.append(
- "erroreDax");
- sb.append(
- "dtErroreDax");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _docPraticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private long _dlFileEntryId;
- private String _version;
- private boolean _praticaValidata;
- private String _descLong;
- private String _codFileSuap;
- private String _tipologia;
- private String _md5;
- private boolean _aggiornato;
- private String _jsonFirmatari;
- private long _daxId;
- private Date _dtInvioDax;
- private String _erroreDax;
- private Date _dtErroreDax;
- private BaseModel> _boDocPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaModel.java
deleted file mode 100644
index a5671a46..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaModel.java
+++ /dev/null
@@ -1,484 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoDocPratica service. Represents a row in the "gc_docpratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDocPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoDocPraticaModelImpl
- * @generated
- */
-public interface BoDocPraticaModel extends BaseModel,
- StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo doc pratica model instance should use the {@link BoDocPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo doc pratica.
- *
- * @return the primary key of this bo doc pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo doc pratica.
- *
- * @param primaryKey the primary key of this bo doc pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo doc pratica.
- *
- * @return the uuid of this bo doc pratica
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo doc pratica.
- *
- * @param uuid the uuid of this bo doc pratica
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the doc pratica ID of this bo doc pratica.
- *
- * @return the doc pratica ID of this bo doc pratica
- */
- public long getDocPraticaId();
-
- /**
- * Sets the doc pratica ID of this bo doc pratica.
- *
- * @param docPraticaId the doc pratica ID of this bo doc pratica
- */
- public void setDocPraticaId(long docPraticaId);
-
- /**
- * Returns the company ID of this bo doc pratica.
- *
- * @return the company ID of this bo doc pratica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo doc pratica.
- *
- * @param companyId the company ID of this bo doc pratica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo doc pratica.
- *
- * @return the user ID of this bo doc pratica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo doc pratica.
- *
- * @param userId the user ID of this bo doc pratica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo doc pratica.
- *
- * @return the user uuid of this bo doc pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo doc pratica.
- *
- * @param userUuid the user uuid of this bo doc pratica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo doc pratica.
- *
- * @return the user name of this bo doc pratica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo doc pratica.
- *
- * @param userName the user name of this bo doc pratica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo doc pratica.
- *
- * @return the create date of this bo doc pratica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo doc pratica.
- *
- * @param createDate the create date of this bo doc pratica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo doc pratica.
- *
- * @return the modified date of this bo doc pratica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo doc pratica.
- *
- * @param modifiedDate the modified date of this bo doc pratica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo doc pratica.
- *
- * @return the group ID of this bo doc pratica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo doc pratica.
- *
- * @param groupId the group ID of this bo doc pratica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the dett pratica ID of this bo doc pratica.
- *
- * @return the dett pratica ID of this bo doc pratica
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo doc pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo doc pratica
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the dl file entry ID of this bo doc pratica.
- *
- * @return the dl file entry ID of this bo doc pratica
- */
- public long getDlFileEntryId();
-
- /**
- * Sets the dl file entry ID of this bo doc pratica.
- *
- * @param dlFileEntryId the dl file entry ID of this bo doc pratica
- */
- public void setDlFileEntryId(long dlFileEntryId);
-
- /**
- * Returns the version of this bo doc pratica.
- *
- * @return the version of this bo doc pratica
- */
- @AutoEscape
- public String getVersion();
-
- /**
- * Sets the version of this bo doc pratica.
- *
- * @param version the version of this bo doc pratica
- */
- public void setVersion(String version);
-
- /**
- * Returns the pratica validata of this bo doc pratica.
- *
- * @return the pratica validata of this bo doc pratica
- */
- public boolean getPraticaValidata();
-
- /**
- * Returns true if this bo doc pratica is pratica validata.
- *
- * @return true if this bo doc pratica is pratica validata; false otherwise
- */
- public boolean isPraticaValidata();
-
- /**
- * Sets whether this bo doc pratica is pratica validata.
- *
- * @param praticaValidata the pratica validata of this bo doc pratica
- */
- public void setPraticaValidata(boolean praticaValidata);
-
- /**
- * Returns the desc long of this bo doc pratica.
- *
- * @return the desc long of this bo doc pratica
- */
- @AutoEscape
- public String getDescLong();
-
- /**
- * Sets the desc long of this bo doc pratica.
- *
- * @param descLong the desc long of this bo doc pratica
- */
- public void setDescLong(String descLong);
-
- /**
- * Returns the cod file suap of this bo doc pratica.
- *
- * @return the cod file suap of this bo doc pratica
- */
- @AutoEscape
- public String getCodFileSuap();
-
- /**
- * Sets the cod file suap of this bo doc pratica.
- *
- * @param codFileSuap the cod file suap of this bo doc pratica
- */
- public void setCodFileSuap(String codFileSuap);
-
- /**
- * Returns the tipologia of this bo doc pratica.
- *
- * @return the tipologia of this bo doc pratica
- */
- @AutoEscape
- public String getTipologia();
-
- /**
- * Sets the tipologia of this bo doc pratica.
- *
- * @param tipologia the tipologia of this bo doc pratica
- */
- public void setTipologia(String tipologia);
-
- /**
- * Returns the md5 of this bo doc pratica.
- *
- * @return the md5 of this bo doc pratica
- */
- @AutoEscape
- public String getMd5();
-
- /**
- * Sets the md5 of this bo doc pratica.
- *
- * @param md5 the md5 of this bo doc pratica
- */
- public void setMd5(String md5);
-
- /**
- * Returns the aggiornato of this bo doc pratica.
- *
- * @return the aggiornato of this bo doc pratica
- */
- public boolean getAggiornato();
-
- /**
- * Returns true if this bo doc pratica is aggiornato.
- *
- * @return true if this bo doc pratica is aggiornato; false otherwise
- */
- public boolean isAggiornato();
-
- /**
- * Sets whether this bo doc pratica is aggiornato.
- *
- * @param aggiornato the aggiornato of this bo doc pratica
- */
- public void setAggiornato(boolean aggiornato);
-
- /**
- * Returns the json firmatari of this bo doc pratica.
- *
- * @return the json firmatari of this bo doc pratica
- */
- @AutoEscape
- public String getJsonFirmatari();
-
- /**
- * Sets the json firmatari of this bo doc pratica.
- *
- * @param jsonFirmatari the json firmatari of this bo doc pratica
- */
- public void setJsonFirmatari(String jsonFirmatari);
-
- /**
- * Returns the dax ID of this bo doc pratica.
- *
- * @return the dax ID of this bo doc pratica
- */
- public long getDaxId();
-
- /**
- * Sets the dax ID of this bo doc pratica.
- *
- * @param daxId the dax ID of this bo doc pratica
- */
- public void setDaxId(long daxId);
-
- /**
- * Returns the dt invio dax of this bo doc pratica.
- *
- * @return the dt invio dax of this bo doc pratica
- */
- public Date getDtInvioDax();
-
- /**
- * Sets the dt invio dax of this bo doc pratica.
- *
- * @param dtInvioDax the dt invio dax of this bo doc pratica
- */
- public void setDtInvioDax(Date dtInvioDax);
-
- /**
- * Returns the errore dax of this bo doc pratica.
- *
- * @return the errore dax of this bo doc pratica
- */
- @AutoEscape
- public String getErroreDax();
-
- /**
- * Sets the errore dax of this bo doc pratica.
- *
- * @param erroreDax the errore dax of this bo doc pratica
- */
- public void setErroreDax(String erroreDax);
-
- /**
- * Returns the dt errore dax of this bo doc pratica.
- *
- * @return the dt errore dax of this bo doc pratica
- */
- public Date getDtErroreDax();
-
- /**
- * Sets the dt errore dax of this bo doc pratica.
- *
- * @param dtErroreDax the dt errore dax of this bo doc pratica
- */
- public void setDtErroreDax(Date dtErroreDax);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoDocPratica boDocPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDocPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDocPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaSoap.java
deleted file mode 100644
index 0ae3ade7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaSoap.java
+++ /dev/null
@@ -1,313 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoDocPraticaSoap implements Serializable {
- public static BoDocPraticaSoap toSoapModel(BoDocPratica model) {
- BoDocPraticaSoap soapModel = new BoDocPraticaSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setDocPraticaId(model.getDocPraticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setDlFileEntryId(model.getDlFileEntryId());
- soapModel.setVersion(model.getVersion());
- soapModel.setPraticaValidata(model.getPraticaValidata());
- soapModel.setDescLong(model.getDescLong());
- soapModel.setCodFileSuap(model.getCodFileSuap());
- soapModel.setTipologia(model.getTipologia());
- soapModel.setMd5(model.getMd5());
- soapModel.setAggiornato(model.getAggiornato());
- soapModel.setJsonFirmatari(model.getJsonFirmatari());
- soapModel.setDaxId(model.getDaxId());
- soapModel.setDtInvioDax(model.getDtInvioDax());
- soapModel.setErroreDax(model.getErroreDax());
- soapModel.setDtErroreDax(model.getDtErroreDax());
-
- return soapModel;
- }
-
- public static BoDocPraticaSoap[] toSoapModels(BoDocPratica[] models) {
- BoDocPraticaSoap[] soapModels = new BoDocPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoDocPraticaSoap[][] toSoapModels(BoDocPratica[][] models) {
- BoDocPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoDocPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoDocPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoDocPraticaSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoDocPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoDocPraticaSoap[soapModels.size()]);
- }
-
- public BoDocPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _docPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setDocPraticaId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getDocPraticaId() {
- return _docPraticaId;
- }
-
- public void setDocPraticaId(long docPraticaId) {
- _docPraticaId = docPraticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public long getDlFileEntryId() {
- return _dlFileEntryId;
- }
-
- public void setDlFileEntryId(long dlFileEntryId) {
- _dlFileEntryId = dlFileEntryId;
- }
-
- public String getVersion() {
- return _version;
- }
-
- public void setVersion(String version) {
- _version = version;
- }
-
- public boolean getPraticaValidata() {
- return _praticaValidata;
- }
-
- public boolean isPraticaValidata() {
- return _praticaValidata;
- }
-
- public void setPraticaValidata(boolean praticaValidata) {
- _praticaValidata = praticaValidata;
- }
-
- public String getDescLong() {
- return _descLong;
- }
-
- public void setDescLong(String descLong) {
- _descLong = descLong;
- }
-
- public String getCodFileSuap() {
- return _codFileSuap;
- }
-
- public void setCodFileSuap(String codFileSuap) {
- _codFileSuap = codFileSuap;
- }
-
- public String getTipologia() {
- return _tipologia;
- }
-
- public void setTipologia(String tipologia) {
- _tipologia = tipologia;
- }
-
- public String getMd5() {
- return _md5;
- }
-
- public void setMd5(String md5) {
- _md5 = md5;
- }
-
- public boolean getAggiornato() {
- return _aggiornato;
- }
-
- public boolean isAggiornato() {
- return _aggiornato;
- }
-
- public void setAggiornato(boolean aggiornato) {
- _aggiornato = aggiornato;
- }
-
- public String getJsonFirmatari() {
- return _jsonFirmatari;
- }
-
- public void setJsonFirmatari(String jsonFirmatari) {
- _jsonFirmatari = jsonFirmatari;
- }
-
- public long getDaxId() {
- return _daxId;
- }
-
- public void setDaxId(long daxId) {
- _daxId = daxId;
- }
-
- public Date getDtInvioDax() {
- return _dtInvioDax;
- }
-
- public void setDtInvioDax(Date dtInvioDax) {
- _dtInvioDax = dtInvioDax;
- }
-
- public String getErroreDax() {
- return _erroreDax;
- }
-
- public void setErroreDax(String erroreDax) {
- _erroreDax = erroreDax;
- }
-
- public Date getDtErroreDax() {
- return _dtErroreDax;
- }
-
- public void setDtErroreDax(Date dtErroreDax) {
- _dtErroreDax = dtErroreDax;
- }
-
- private String _uuid;
- private long _docPraticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private long _dlFileEntryId;
- private String _version;
- private boolean _praticaValidata;
- private String _descLong;
- private String _codFileSuap;
- private String _tipologia;
- private String _md5;
- private boolean _aggiornato;
- private String _jsonFirmatari;
- private long _daxId;
- private Date _dtInvioDax;
- private String _erroreDax;
- private Date _dtErroreDax;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaWrapper.java
deleted file mode 100644
index 51058233..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoDocPraticaWrapper.java
+++ /dev/null
@@ -1,864 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoDocPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoDocPratica
- * @generated
- */
-public class BoDocPraticaWrapper implements BoDocPratica,
- ModelWrapper {
- public BoDocPraticaWrapper(BoDocPratica boDocPratica) {
- _boDocPratica = boDocPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoDocPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoDocPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("docPraticaId", getDocPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("dlFileEntryId", getDlFileEntryId());
- attributes.put("version", getVersion());
- attributes.put("praticaValidata", getPraticaValidata());
- attributes.put("descLong", getDescLong());
- attributes.put("codFileSuap", getCodFileSuap());
- attributes.put("tipologia", getTipologia());
- attributes.put("md5", getMd5());
- attributes.put("aggiornato", getAggiornato());
- attributes.put("jsonFirmatari", getJsonFirmatari());
- attributes.put("daxId", getDaxId());
- attributes.put("dtInvioDax", getDtInvioDax());
- attributes.put("erroreDax", getErroreDax());
- attributes.put("dtErroreDax", getDtErroreDax());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long docPraticaId = (Long)attributes.get("docPraticaId");
-
- if (docPraticaId != null) {
- setDocPraticaId(docPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- Long dlFileEntryId = (Long)attributes.get("dlFileEntryId");
-
- if (dlFileEntryId != null) {
- setDlFileEntryId(dlFileEntryId);
- }
-
- String version = (String)attributes.get("version");
-
- if (version != null) {
- setVersion(version);
- }
-
- Boolean praticaValidata = (Boolean)attributes.get("praticaValidata");
-
- if (praticaValidata != null) {
- setPraticaValidata(praticaValidata);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
-
- String codFileSuap = (String)attributes.get("codFileSuap");
-
- if (codFileSuap != null) {
- setCodFileSuap(codFileSuap);
- }
-
- String tipologia = (String)attributes.get("tipologia");
-
- if (tipologia != null) {
- setTipologia(tipologia);
- }
-
- String md5 = (String)attributes.get("md5");
-
- if (md5 != null) {
- setMd5(md5);
- }
-
- Boolean aggiornato = (Boolean)attributes.get("aggiornato");
-
- if (aggiornato != null) {
- setAggiornato(aggiornato);
- }
-
- String jsonFirmatari = (String)attributes.get("jsonFirmatari");
-
- if (jsonFirmatari != null) {
- setJsonFirmatari(jsonFirmatari);
- }
-
- Long daxId = (Long)attributes.get("daxId");
-
- if (daxId != null) {
- setDaxId(daxId);
- }
-
- Date dtInvioDax = (Date)attributes.get("dtInvioDax");
-
- if (dtInvioDax != null) {
- setDtInvioDax(dtInvioDax);
- }
-
- String erroreDax = (String)attributes.get("erroreDax");
-
- if (erroreDax != null) {
- setErroreDax(erroreDax);
- }
-
- Date dtErroreDax = (Date)attributes.get("dtErroreDax");
-
- if (dtErroreDax != null) {
- setDtErroreDax(dtErroreDax);
- }
- }
-
- /**
- * Returns the primary key of this bo doc pratica.
- *
- * @return the primary key of this bo doc pratica
- */
- @Override
- public long getPrimaryKey() {
- return _boDocPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo doc pratica.
- *
- * @param primaryKey the primary key of this bo doc pratica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boDocPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo doc pratica.
- *
- * @return the uuid of this bo doc pratica
- */
- @Override
- public java.lang.String getUuid() {
- return _boDocPratica.getUuid();
- }
-
- /**
- * Sets the uuid of this bo doc pratica.
- *
- * @param uuid the uuid of this bo doc pratica
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boDocPratica.setUuid(uuid);
- }
-
- /**
- * Returns the doc pratica ID of this bo doc pratica.
- *
- * @return the doc pratica ID of this bo doc pratica
- */
- @Override
- public long getDocPraticaId() {
- return _boDocPratica.getDocPraticaId();
- }
-
- /**
- * Sets the doc pratica ID of this bo doc pratica.
- *
- * @param docPraticaId the doc pratica ID of this bo doc pratica
- */
- @Override
- public void setDocPraticaId(long docPraticaId) {
- _boDocPratica.setDocPraticaId(docPraticaId);
- }
-
- /**
- * Returns the company ID of this bo doc pratica.
- *
- * @return the company ID of this bo doc pratica
- */
- @Override
- public long getCompanyId() {
- return _boDocPratica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo doc pratica.
- *
- * @param companyId the company ID of this bo doc pratica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boDocPratica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo doc pratica.
- *
- * @return the user ID of this bo doc pratica
- */
- @Override
- public long getUserId() {
- return _boDocPratica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo doc pratica.
- *
- * @param userId the user ID of this bo doc pratica
- */
- @Override
- public void setUserId(long userId) {
- _boDocPratica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo doc pratica.
- *
- * @return the user uuid of this bo doc pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boDocPratica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo doc pratica.
- *
- * @param userUuid the user uuid of this bo doc pratica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boDocPratica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo doc pratica.
- *
- * @return the user name of this bo doc pratica
- */
- @Override
- public java.lang.String getUserName() {
- return _boDocPratica.getUserName();
- }
-
- /**
- * Sets the user name of this bo doc pratica.
- *
- * @param userName the user name of this bo doc pratica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boDocPratica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo doc pratica.
- *
- * @return the create date of this bo doc pratica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boDocPratica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo doc pratica.
- *
- * @param createDate the create date of this bo doc pratica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boDocPratica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo doc pratica.
- *
- * @return the modified date of this bo doc pratica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boDocPratica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo doc pratica.
- *
- * @param modifiedDate the modified date of this bo doc pratica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boDocPratica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo doc pratica.
- *
- * @return the group ID of this bo doc pratica
- */
- @Override
- public long getGroupId() {
- return _boDocPratica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo doc pratica.
- *
- * @param groupId the group ID of this bo doc pratica
- */
- @Override
- public void setGroupId(long groupId) {
- _boDocPratica.setGroupId(groupId);
- }
-
- /**
- * Returns the dett pratica ID of this bo doc pratica.
- *
- * @return the dett pratica ID of this bo doc pratica
- */
- @Override
- public long getDettPraticaId() {
- return _boDocPratica.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo doc pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo doc pratica
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boDocPratica.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the dl file entry ID of this bo doc pratica.
- *
- * @return the dl file entry ID of this bo doc pratica
- */
- @Override
- public long getDlFileEntryId() {
- return _boDocPratica.getDlFileEntryId();
- }
-
- /**
- * Sets the dl file entry ID of this bo doc pratica.
- *
- * @param dlFileEntryId the dl file entry ID of this bo doc pratica
- */
- @Override
- public void setDlFileEntryId(long dlFileEntryId) {
- _boDocPratica.setDlFileEntryId(dlFileEntryId);
- }
-
- /**
- * Returns the version of this bo doc pratica.
- *
- * @return the version of this bo doc pratica
- */
- @Override
- public java.lang.String getVersion() {
- return _boDocPratica.getVersion();
- }
-
- /**
- * Sets the version of this bo doc pratica.
- *
- * @param version the version of this bo doc pratica
- */
- @Override
- public void setVersion(java.lang.String version) {
- _boDocPratica.setVersion(version);
- }
-
- /**
- * Returns the pratica validata of this bo doc pratica.
- *
- * @return the pratica validata of this bo doc pratica
- */
- @Override
- public boolean getPraticaValidata() {
- return _boDocPratica.getPraticaValidata();
- }
-
- /**
- * Returns true if this bo doc pratica is pratica validata.
- *
- * @return true if this bo doc pratica is pratica validata; false otherwise
- */
- @Override
- public boolean isPraticaValidata() {
- return _boDocPratica.isPraticaValidata();
- }
-
- /**
- * Sets whether this bo doc pratica is pratica validata.
- *
- * @param praticaValidata the pratica validata of this bo doc pratica
- */
- @Override
- public void setPraticaValidata(boolean praticaValidata) {
- _boDocPratica.setPraticaValidata(praticaValidata);
- }
-
- /**
- * Returns the desc long of this bo doc pratica.
- *
- * @return the desc long of this bo doc pratica
- */
- @Override
- public java.lang.String getDescLong() {
- return _boDocPratica.getDescLong();
- }
-
- /**
- * Sets the desc long of this bo doc pratica.
- *
- * @param descLong the desc long of this bo doc pratica
- */
- @Override
- public void setDescLong(java.lang.String descLong) {
- _boDocPratica.setDescLong(descLong);
- }
-
- /**
- * Returns the cod file suap of this bo doc pratica.
- *
- * @return the cod file suap of this bo doc pratica
- */
- @Override
- public java.lang.String getCodFileSuap() {
- return _boDocPratica.getCodFileSuap();
- }
-
- /**
- * Sets the cod file suap of this bo doc pratica.
- *
- * @param codFileSuap the cod file suap of this bo doc pratica
- */
- @Override
- public void setCodFileSuap(java.lang.String codFileSuap) {
- _boDocPratica.setCodFileSuap(codFileSuap);
- }
-
- /**
- * Returns the tipologia of this bo doc pratica.
- *
- * @return the tipologia of this bo doc pratica
- */
- @Override
- public java.lang.String getTipologia() {
- return _boDocPratica.getTipologia();
- }
-
- /**
- * Sets the tipologia of this bo doc pratica.
- *
- * @param tipologia the tipologia of this bo doc pratica
- */
- @Override
- public void setTipologia(java.lang.String tipologia) {
- _boDocPratica.setTipologia(tipologia);
- }
-
- /**
- * Returns the md5 of this bo doc pratica.
- *
- * @return the md5 of this bo doc pratica
- */
- @Override
- public java.lang.String getMd5() {
- return _boDocPratica.getMd5();
- }
-
- /**
- * Sets the md5 of this bo doc pratica.
- *
- * @param md5 the md5 of this bo doc pratica
- */
- @Override
- public void setMd5(java.lang.String md5) {
- _boDocPratica.setMd5(md5);
- }
-
- /**
- * Returns the aggiornato of this bo doc pratica.
- *
- * @return the aggiornato of this bo doc pratica
- */
- @Override
- public boolean getAggiornato() {
- return _boDocPratica.getAggiornato();
- }
-
- /**
- * Returns true if this bo doc pratica is aggiornato.
- *
- * @return true if this bo doc pratica is aggiornato; false otherwise
- */
- @Override
- public boolean isAggiornato() {
- return _boDocPratica.isAggiornato();
- }
-
- /**
- * Sets whether this bo doc pratica is aggiornato.
- *
- * @param aggiornato the aggiornato of this bo doc pratica
- */
- @Override
- public void setAggiornato(boolean aggiornato) {
- _boDocPratica.setAggiornato(aggiornato);
- }
-
- /**
- * Returns the json firmatari of this bo doc pratica.
- *
- * @return the json firmatari of this bo doc pratica
- */
- @Override
- public java.lang.String getJsonFirmatari() {
- return _boDocPratica.getJsonFirmatari();
- }
-
- /**
- * Sets the json firmatari of this bo doc pratica.
- *
- * @param jsonFirmatari the json firmatari of this bo doc pratica
- */
- @Override
- public void setJsonFirmatari(java.lang.String jsonFirmatari) {
- _boDocPratica.setJsonFirmatari(jsonFirmatari);
- }
-
- /**
- * Returns the dax ID of this bo doc pratica.
- *
- * @return the dax ID of this bo doc pratica
- */
- @Override
- public long getDaxId() {
- return _boDocPratica.getDaxId();
- }
-
- /**
- * Sets the dax ID of this bo doc pratica.
- *
- * @param daxId the dax ID of this bo doc pratica
- */
- @Override
- public void setDaxId(long daxId) {
- _boDocPratica.setDaxId(daxId);
- }
-
- /**
- * Returns the dt invio dax of this bo doc pratica.
- *
- * @return the dt invio dax of this bo doc pratica
- */
- @Override
- public java.util.Date getDtInvioDax() {
- return _boDocPratica.getDtInvioDax();
- }
-
- /**
- * Sets the dt invio dax of this bo doc pratica.
- *
- * @param dtInvioDax the dt invio dax of this bo doc pratica
- */
- @Override
- public void setDtInvioDax(java.util.Date dtInvioDax) {
- _boDocPratica.setDtInvioDax(dtInvioDax);
- }
-
- /**
- * Returns the errore dax of this bo doc pratica.
- *
- * @return the errore dax of this bo doc pratica
- */
- @Override
- public java.lang.String getErroreDax() {
- return _boDocPratica.getErroreDax();
- }
-
- /**
- * Sets the errore dax of this bo doc pratica.
- *
- * @param erroreDax the errore dax of this bo doc pratica
- */
- @Override
- public void setErroreDax(java.lang.String erroreDax) {
- _boDocPratica.setErroreDax(erroreDax);
- }
-
- /**
- * Returns the dt errore dax of this bo doc pratica.
- *
- * @return the dt errore dax of this bo doc pratica
- */
- @Override
- public java.util.Date getDtErroreDax() {
- return _boDocPratica.getDtErroreDax();
- }
-
- /**
- * Sets the dt errore dax of this bo doc pratica.
- *
- * @param dtErroreDax the dt errore dax of this bo doc pratica
- */
- @Override
- public void setDtErroreDax(java.util.Date dtErroreDax) {
- _boDocPratica.setDtErroreDax(dtErroreDax);
- }
-
- @Override
- public boolean isNew() {
- return _boDocPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boDocPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boDocPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boDocPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boDocPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boDocPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boDocPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boDocPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boDocPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boDocPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boDocPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoDocPraticaWrapper((BoDocPratica)_boDocPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoDocPratica boDocPratica) {
- return _boDocPratica.compareTo(boDocPratica);
- }
-
- @Override
- public int hashCode() {
- return _boDocPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boDocPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDocPratica toEscapedModel() {
- return new BoDocPraticaWrapper(_boDocPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoDocPratica toUnescapedModel() {
- return new BoDocPraticaWrapper(_boDocPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boDocPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boDocPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boDocPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoDocPraticaWrapper)) {
- return false;
- }
-
- BoDocPraticaWrapper boDocPraticaWrapper = (BoDocPraticaWrapper)obj;
-
- if (Validator.equals(_boDocPratica, boDocPraticaWrapper._boDocPratica)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boDocPratica.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoDocPratica getWrappedBoDocPratica() {
- return _boDocPratica;
- }
-
- @Override
- public BoDocPratica getWrappedModel() {
- return _boDocPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boDocPratica.resetOriginalValues();
- }
-
- private BoDocPratica _boDocPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPratica.java
deleted file mode 100644
index c1856090..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoIntPratica service. Represents a row in the "gc_intpratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoIntPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaModelImpl
- * @generated
- */
-public interface BoIntPratica extends BoIntPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaClp.java
deleted file mode 100644
index 2949b05e..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaClp.java
+++ /dev/null
@@ -1,2134 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoIntPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoIntPraticaClp extends BaseModelImpl
- implements BoIntPratica {
- public BoIntPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoIntPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoIntPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _intPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setIntPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _intPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("tipoPraticaId", getTipoPraticaId());
- attributes.put("territorioId", getTerritorioId());
- attributes.put("destinazione", getDestinazione());
- attributes.put("tipologiaSistemaCostruttivo",
- getTipologiaSistemaCostruttivo());
- attributes.put("ag", getAg());
- attributes.put("descLongIntervento", getDescLongIntervento());
- attributes.put("via", getVia());
- attributes.put("localita", getLocalita());
- attributes.put("estremiCatastali", getEstremiCatastali());
- attributes.put("estremiPratCom", getEstremiPratCom());
- attributes.put("dtSorteggio", getDtSorteggio());
- attributes.put("statoPratica", getStatoPratica());
- attributes.put("numeroProgetto", getNumeroProgetto());
- attributes.put("validata", getValidata());
- attributes.put("variataDa", getVariataDa());
- attributes.put("varianteNumero", getVarianteNumero());
- attributes.put("varianteSostanziale", getVarianteSostanziale());
- attributes.put("operaConforme", getOperaConforme());
- attributes.put("tipoPraticaIdSanatoria", getTipoPraticaIdSanatoria());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusDate", getStatusDate());
- attributes.put("statoPraticaWorkflow", getStatoPraticaWorkflow());
- attributes.put("esitoControllo", getEsitoControllo());
- attributes.put("collaudoStatico", getCollaudoStatico());
- attributes.put("collaudoStaticoAgtSanatoria",
- getCollaudoStaticoAgtSanatoria());
- attributes.put("codiceFiscaleDelegato", getCodiceFiscaleDelegato());
- attributes.put("codiceRuoloDelegato", getCodiceRuoloDelegato());
- attributes.put("lavoriInEconomiaCommittente",
- getLavoriInEconomiaCommittente());
- attributes.put("nomeUtenteSuap", getNomeUtenteSuap());
- attributes.put("cognomeUtenteSuap", getCognomeUtenteSuap());
- attributes.put("codiceFiscaleUtenteSuap", getCodiceFiscaleUtenteSuap());
- attributes.put("inizioLavoriContestualeOpera",
- getInizioLavoriContestualeOpera());
- attributes.put("dataInizioLavoriOpera", getDataInizioLavoriOpera());
- attributes.put("dataInizioEsecuzioneOpera",
- getDataInizioEsecuzioneOpera());
- attributes.put("dataFineEsecuzioneOpera", getDataFineEsecuzioneOpera());
- attributes.put("metratura", getMetratura());
- attributes.put("lavoriPubblici", getLavoriPubblici());
- attributes.put("dtPratica", getDtPratica());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long tipoPraticaId = (Long)attributes.get("tipoPraticaId");
-
- if (tipoPraticaId != null) {
- setTipoPraticaId(tipoPraticaId);
- }
-
- Long territorioId = (Long)attributes.get("territorioId");
-
- if (territorioId != null) {
- setTerritorioId(territorioId);
- }
-
- String destinazione = (String)attributes.get("destinazione");
-
- if (destinazione != null) {
- setDestinazione(destinazione);
- }
-
- String tipologiaSistemaCostruttivo = (String)attributes.get(
- "tipologiaSistemaCostruttivo");
-
- if (tipologiaSistemaCostruttivo != null) {
- setTipologiaSistemaCostruttivo(tipologiaSistemaCostruttivo);
- }
-
- String ag = (String)attributes.get("ag");
-
- if (ag != null) {
- setAg(ag);
- }
-
- String descLongIntervento = (String)attributes.get("descLongIntervento");
-
- if (descLongIntervento != null) {
- setDescLongIntervento(descLongIntervento);
- }
-
- String via = (String)attributes.get("via");
-
- if (via != null) {
- setVia(via);
- }
-
- String localita = (String)attributes.get("localita");
-
- if (localita != null) {
- setLocalita(localita);
- }
-
- String estremiCatastali = (String)attributes.get("estremiCatastali");
-
- if (estremiCatastali != null) {
- setEstremiCatastali(estremiCatastali);
- }
-
- String estremiPratCom = (String)attributes.get("estremiPratCom");
-
- if (estremiPratCom != null) {
- setEstremiPratCom(estremiPratCom);
- }
-
- Date dtSorteggio = (Date)attributes.get("dtSorteggio");
-
- if (dtSorteggio != null) {
- setDtSorteggio(dtSorteggio);
- }
-
- String statoPratica = (String)attributes.get("statoPratica");
-
- if (statoPratica != null) {
- setStatoPratica(statoPratica);
- }
-
- String numeroProgetto = (String)attributes.get("numeroProgetto");
-
- if (numeroProgetto != null) {
- setNumeroProgetto(numeroProgetto);
- }
-
- Boolean validata = (Boolean)attributes.get("validata");
-
- if (validata != null) {
- setValidata(validata);
- }
-
- Long variataDa = (Long)attributes.get("variataDa");
-
- if (variataDa != null) {
- setVariataDa(variataDa);
- }
-
- Long varianteNumero = (Long)attributes.get("varianteNumero");
-
- if (varianteNumero != null) {
- setVarianteNumero(varianteNumero);
- }
-
- Boolean varianteSostanziale = (Boolean)attributes.get(
- "varianteSostanziale");
-
- if (varianteSostanziale != null) {
- setVarianteSostanziale(varianteSostanziale);
- }
-
- Boolean operaConforme = (Boolean)attributes.get("operaConforme");
-
- if (operaConforme != null) {
- setOperaConforme(operaConforme);
- }
-
- Long tipoPraticaIdSanatoria = (Long)attributes.get(
- "tipoPraticaIdSanatoria");
-
- if (tipoPraticaIdSanatoria != null) {
- setTipoPraticaIdSanatoria(tipoPraticaIdSanatoria);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- String statoPraticaWorkflow = (String)attributes.get(
- "statoPraticaWorkflow");
-
- if (statoPraticaWorkflow != null) {
- setStatoPraticaWorkflow(statoPraticaWorkflow);
- }
-
- Integer esitoControllo = (Integer)attributes.get("esitoControllo");
-
- if (esitoControllo != null) {
- setEsitoControllo(esitoControllo);
- }
-
- Boolean collaudoStatico = (Boolean)attributes.get("collaudoStatico");
-
- if (collaudoStatico != null) {
- setCollaudoStatico(collaudoStatico);
- }
-
- Boolean collaudoStaticoAgtSanatoria = (Boolean)attributes.get(
- "collaudoStaticoAgtSanatoria");
-
- if (collaudoStaticoAgtSanatoria != null) {
- setCollaudoStaticoAgtSanatoria(collaudoStaticoAgtSanatoria);
- }
-
- String codiceFiscaleDelegato = (String)attributes.get(
- "codiceFiscaleDelegato");
-
- if (codiceFiscaleDelegato != null) {
- setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- String codiceRuoloDelegato = (String)attributes.get(
- "codiceRuoloDelegato");
-
- if (codiceRuoloDelegato != null) {
- setCodiceRuoloDelegato(codiceRuoloDelegato);
- }
-
- Boolean lavoriInEconomiaCommittente = (Boolean)attributes.get(
- "lavoriInEconomiaCommittente");
-
- if (lavoriInEconomiaCommittente != null) {
- setLavoriInEconomiaCommittente(lavoriInEconomiaCommittente);
- }
-
- String nomeUtenteSuap = (String)attributes.get("nomeUtenteSuap");
-
- if (nomeUtenteSuap != null) {
- setNomeUtenteSuap(nomeUtenteSuap);
- }
-
- String cognomeUtenteSuap = (String)attributes.get("cognomeUtenteSuap");
-
- if (cognomeUtenteSuap != null) {
- setCognomeUtenteSuap(cognomeUtenteSuap);
- }
-
- String codiceFiscaleUtenteSuap = (String)attributes.get(
- "codiceFiscaleUtenteSuap");
-
- if (codiceFiscaleUtenteSuap != null) {
- setCodiceFiscaleUtenteSuap(codiceFiscaleUtenteSuap);
- }
-
- Boolean inizioLavoriContestualeOpera = (Boolean)attributes.get(
- "inizioLavoriContestualeOpera");
-
- if (inizioLavoriContestualeOpera != null) {
- setInizioLavoriContestualeOpera(inizioLavoriContestualeOpera);
- }
-
- Date dataInizioLavoriOpera = (Date)attributes.get(
- "dataInizioLavoriOpera");
-
- if (dataInizioLavoriOpera != null) {
- setDataInizioLavoriOpera(dataInizioLavoriOpera);
- }
-
- Date dataInizioEsecuzioneOpera = (Date)attributes.get(
- "dataInizioEsecuzioneOpera");
-
- if (dataInizioEsecuzioneOpera != null) {
- setDataInizioEsecuzioneOpera(dataInizioEsecuzioneOpera);
- }
-
- Date dataFineEsecuzioneOpera = (Date)attributes.get(
- "dataFineEsecuzioneOpera");
-
- if (dataFineEsecuzioneOpera != null) {
- setDataFineEsecuzioneOpera(dataFineEsecuzioneOpera);
- }
-
- String metratura = (String)attributes.get("metratura");
-
- if (metratura != null) {
- setMetratura(metratura);
- }
-
- Boolean lavoriPubblici = (Boolean)attributes.get("lavoriPubblici");
-
- if (lavoriPubblici != null) {
- setLavoriPubblici(lavoriPubblici);
- }
-
- Date dtPratica = (Date)attributes.get("dtPratica");
-
- if (dtPratica != null) {
- setDtPratica(dtPratica);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getTipoPraticaId() {
- return _tipoPraticaId;
- }
-
- @Override
- public void setTipoPraticaId(long tipoPraticaId) {
- _tipoPraticaId = tipoPraticaId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipoPraticaId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, tipoPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getTerritorioId() {
- return _territorioId;
- }
-
- @Override
- public void setTerritorioId(long territorioId) {
- _territorioId = territorioId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTerritorioId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, territorioId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDestinazione() {
- return _destinazione;
- }
-
- @Override
- public void setDestinazione(String destinazione) {
- _destinazione = destinazione;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDestinazione", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, destinazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipologiaSistemaCostruttivo() {
- return _tipologiaSistemaCostruttivo;
- }
-
- @Override
- public void setTipologiaSistemaCostruttivo(
- String tipologiaSistemaCostruttivo) {
- _tipologiaSistemaCostruttivo = tipologiaSistemaCostruttivo;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipologiaSistemaCostruttivo",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel,
- tipologiaSistemaCostruttivo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getAg() {
- return _ag;
- }
-
- @Override
- public void setAg(String ag) {
- _ag = ag;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAg", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, ag);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLongIntervento() {
- return _descLongIntervento;
- }
-
- @Override
- public void setDescLongIntervento(String descLongIntervento) {
- _descLongIntervento = descLongIntervento;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLongIntervento",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, descLongIntervento);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getVia() {
- return _via;
- }
-
- @Override
- public void setVia(String via) {
- _via = via;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVia", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, via);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getLocalita() {
- return _localita;
- }
-
- @Override
- public void setLocalita(String localita) {
- _localita = localita;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setLocalita", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, localita);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getEstremiCatastali() {
- return _estremiCatastali;
- }
-
- @Override
- public void setEstremiCatastali(String estremiCatastali) {
- _estremiCatastali = estremiCatastali;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEstremiCatastali",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, estremiCatastali);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getEstremiPratCom() {
- return _estremiPratCom;
- }
-
- @Override
- public void setEstremiPratCom(String estremiPratCom) {
- _estremiPratCom = estremiPratCom;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEstremiPratCom",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, estremiPratCom);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtSorteggio() {
- return _dtSorteggio;
- }
-
- @Override
- public void setDtSorteggio(Date dtSorteggio) {
- _dtSorteggio = dtSorteggio;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtSorteggio", Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, dtSorteggio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStatoPratica() {
- return _statoPratica;
- }
-
- @Override
- public void setStatoPratica(String statoPratica) {
- _statoPratica = statoPratica;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatoPratica", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, statoPratica);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNumeroProgetto() {
- return _numeroProgetto;
- }
-
- @Override
- public void setNumeroProgetto(String numeroProgetto) {
- _numeroProgetto = numeroProgetto;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumeroProgetto",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, numeroProgetto);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getValidata() {
- return _validata;
- }
-
- @Override
- public boolean isValidata() {
- return _validata;
- }
-
- @Override
- public void setValidata(boolean validata) {
- _validata = validata;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setValidata", boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel, validata);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getVariataDa() {
- return _variataDa;
- }
-
- @Override
- public void setVariataDa(long variataDa) {
- _variataDa = variataDa;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVariataDa", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, variataDa);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getVarianteNumero() {
- return _varianteNumero;
- }
-
- @Override
- public void setVarianteNumero(long varianteNumero) {
- _varianteNumero = varianteNumero;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVarianteNumero", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, varianteNumero);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getVarianteSostanziale() {
- return _varianteSostanziale;
- }
-
- @Override
- public boolean isVarianteSostanziale() {
- return _varianteSostanziale;
- }
-
- @Override
- public void setVarianteSostanziale(boolean varianteSostanziale) {
- _varianteSostanziale = varianteSostanziale;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVarianteSostanziale",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel, varianteSostanziale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getOperaConforme() {
- return _operaConforme;
- }
-
- @Override
- public boolean isOperaConforme() {
- return _operaConforme;
- }
-
- @Override
- public void setOperaConforme(boolean operaConforme) {
- _operaConforme = operaConforme;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setOperaConforme",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel, operaConforme);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getTipoPraticaIdSanatoria() {
- return _tipoPraticaIdSanatoria;
- }
-
- @Override
- public void setTipoPraticaIdSanatoria(long tipoPraticaIdSanatoria) {
- _tipoPraticaIdSanatoria = tipoPraticaIdSanatoria;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipoPraticaIdSanatoria",
- long.class);
-
- method.invoke(_boIntPraticaRemoteModel, tipoPraticaIdSanatoria);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public int getStatus() {
- return _status;
- }
-
- @Override
- public void setStatus(int status) {
- _status = status;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatus", int.class);
-
- method.invoke(_boIntPraticaRemoteModel, status);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusByUserId", long.class);
-
- method.invoke(_boIntPraticaRemoteModel, statusByUserId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStatusByUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getStatusByUserId(), "uuid",
- _statusByUserUuid);
- }
-
- @Override
- public void setStatusByUserUuid(String statusByUserUuid) {
- _statusByUserUuid = statusByUserUuid;
- }
-
- @Override
- public Date getStatusDate() {
- return _statusDate;
- }
-
- @Override
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusDate", Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, statusDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStatoPraticaWorkflow() {
- return _statoPraticaWorkflow;
- }
-
- @Override
- public void setStatoPraticaWorkflow(String statoPraticaWorkflow) {
- _statoPraticaWorkflow = statoPraticaWorkflow;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatoPraticaWorkflow",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, statoPraticaWorkflow);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public int getEsitoControllo() {
- return _esitoControllo;
- }
-
- @Override
- public void setEsitoControllo(int esitoControllo) {
- _esitoControllo = esitoControllo;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEsitoControllo", int.class);
-
- method.invoke(_boIntPraticaRemoteModel, esitoControllo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getCollaudoStatico() {
- return _collaudoStatico;
- }
-
- @Override
- public boolean isCollaudoStatico() {
- return _collaudoStatico;
- }
-
- @Override
- public void setCollaudoStatico(boolean collaudoStatico) {
- _collaudoStatico = collaudoStatico;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCollaudoStatico",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel, collaudoStatico);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getCollaudoStaticoAgtSanatoria() {
- return _collaudoStaticoAgtSanatoria;
- }
-
- @Override
- public boolean isCollaudoStaticoAgtSanatoria() {
- return _collaudoStaticoAgtSanatoria;
- }
-
- @Override
- public void setCollaudoStaticoAgtSanatoria(
- boolean collaudoStaticoAgtSanatoria) {
- _collaudoStaticoAgtSanatoria = collaudoStaticoAgtSanatoria;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCollaudoStaticoAgtSanatoria",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel,
- collaudoStaticoAgtSanatoria);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceFiscaleDelegato() {
- return _codiceFiscaleDelegato;
- }
-
- @Override
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato) {
- _codiceFiscaleDelegato = codiceFiscaleDelegato;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceFiscaleDelegato",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, codiceFiscaleDelegato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceRuoloDelegato() {
- return _codiceRuoloDelegato;
- }
-
- @Override
- public void setCodiceRuoloDelegato(String codiceRuoloDelegato) {
- _codiceRuoloDelegato = codiceRuoloDelegato;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceRuoloDelegato",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, codiceRuoloDelegato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getLavoriInEconomiaCommittente() {
- return _lavoriInEconomiaCommittente;
- }
-
- @Override
- public boolean isLavoriInEconomiaCommittente() {
- return _lavoriInEconomiaCommittente;
- }
-
- @Override
- public void setLavoriInEconomiaCommittente(
- boolean lavoriInEconomiaCommittente) {
- _lavoriInEconomiaCommittente = lavoriInEconomiaCommittente;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setLavoriInEconomiaCommittente",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel,
- lavoriInEconomiaCommittente);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNomeUtenteSuap() {
- return _nomeUtenteSuap;
- }
-
- @Override
- public void setNomeUtenteSuap(String nomeUtenteSuap) {
- _nomeUtenteSuap = nomeUtenteSuap;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNomeUtenteSuap",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, nomeUtenteSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCognomeUtenteSuap() {
- return _cognomeUtenteSuap;
- }
-
- @Override
- public void setCognomeUtenteSuap(String cognomeUtenteSuap) {
- _cognomeUtenteSuap = cognomeUtenteSuap;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCognomeUtenteSuap",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, cognomeUtenteSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceFiscaleUtenteSuap() {
- return _codiceFiscaleUtenteSuap;
- }
-
- @Override
- public void setCodiceFiscaleUtenteSuap(String codiceFiscaleUtenteSuap) {
- _codiceFiscaleUtenteSuap = codiceFiscaleUtenteSuap;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceFiscaleUtenteSuap",
- String.class);
-
- method.invoke(_boIntPraticaRemoteModel, codiceFiscaleUtenteSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getInizioLavoriContestualeOpera() {
- return _inizioLavoriContestualeOpera;
- }
-
- @Override
- public boolean isInizioLavoriContestualeOpera() {
- return _inizioLavoriContestualeOpera;
- }
-
- @Override
- public void setInizioLavoriContestualeOpera(
- boolean inizioLavoriContestualeOpera) {
- _inizioLavoriContestualeOpera = inizioLavoriContestualeOpera;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setInizioLavoriContestualeOpera",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel,
- inizioLavoriContestualeOpera);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataInizioLavoriOpera() {
- return _dataInizioLavoriOpera;
- }
-
- @Override
- public void setDataInizioLavoriOpera(Date dataInizioLavoriOpera) {
- _dataInizioLavoriOpera = dataInizioLavoriOpera;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataInizioLavoriOpera",
- Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, dataInizioLavoriOpera);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataInizioEsecuzioneOpera() {
- return _dataInizioEsecuzioneOpera;
- }
-
- @Override
- public void setDataInizioEsecuzioneOpera(Date dataInizioEsecuzioneOpera) {
- _dataInizioEsecuzioneOpera = dataInizioEsecuzioneOpera;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataInizioEsecuzioneOpera",
- Date.class);
-
- method.invoke(_boIntPraticaRemoteModel,
- dataInizioEsecuzioneOpera);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataFineEsecuzioneOpera() {
- return _dataFineEsecuzioneOpera;
- }
-
- @Override
- public void setDataFineEsecuzioneOpera(Date dataFineEsecuzioneOpera) {
- _dataFineEsecuzioneOpera = dataFineEsecuzioneOpera;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataFineEsecuzioneOpera",
- Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, dataFineEsecuzioneOpera);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getMetratura() {
- return _metratura;
- }
-
- @Override
- public void setMetratura(String metratura) {
- _metratura = metratura;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setMetratura", String.class);
-
- method.invoke(_boIntPraticaRemoteModel, metratura);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getLavoriPubblici() {
- return _lavoriPubblici;
- }
-
- @Override
- public boolean isLavoriPubblici() {
- return _lavoriPubblici;
- }
-
- @Override
- public void setLavoriPubblici(boolean lavoriPubblici) {
- _lavoriPubblici = lavoriPubblici;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setLavoriPubblici",
- boolean.class);
-
- method.invoke(_boIntPraticaRemoteModel, lavoriPubblici);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtPratica() {
- return _dtPratica;
- }
-
- @Override
- public void setDtPratica(Date dtPratica) {
- _dtPratica = dtPratica;
-
- if (_boIntPraticaRemoteModel != null) {
- try {
- Class> clazz = _boIntPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtPratica", Date.class);
-
- method.invoke(_boIntPraticaRemoteModel, dtPratica);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoIntPratica.class.getName()));
- }
-
- public BaseModel> getBoIntPraticaRemoteModel() {
- return _boIntPraticaRemoteModel;
- }
-
- public void setBoIntPraticaRemoteModel(BaseModel> boIntPraticaRemoteModel) {
- _boIntPraticaRemoteModel = boIntPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boIntPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boIntPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoIntPraticaLocalServiceUtil.addBoIntPratica(this);
- }
- else {
- BoIntPraticaLocalServiceUtil.updateBoIntPratica(this);
- }
- }
-
- @Override
- public BoIntPratica toEscapedModel() {
- return (BoIntPratica)ProxyUtil.newProxyInstance(BoIntPratica.class.getClassLoader(),
- new Class[] { BoIntPratica.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoIntPraticaClp clone = new BoIntPraticaClp();
-
- clone.setUuid(getUuid());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setTipoPraticaId(getTipoPraticaId());
- clone.setTerritorioId(getTerritorioId());
- clone.setDestinazione(getDestinazione());
- clone.setTipologiaSistemaCostruttivo(getTipologiaSistemaCostruttivo());
- clone.setAg(getAg());
- clone.setDescLongIntervento(getDescLongIntervento());
- clone.setVia(getVia());
- clone.setLocalita(getLocalita());
- clone.setEstremiCatastali(getEstremiCatastali());
- clone.setEstremiPratCom(getEstremiPratCom());
- clone.setDtSorteggio(getDtSorteggio());
- clone.setStatoPratica(getStatoPratica());
- clone.setNumeroProgetto(getNumeroProgetto());
- clone.setValidata(getValidata());
- clone.setVariataDa(getVariataDa());
- clone.setVarianteNumero(getVarianteNumero());
- clone.setVarianteSostanziale(getVarianteSostanziale());
- clone.setOperaConforme(getOperaConforme());
- clone.setTipoPraticaIdSanatoria(getTipoPraticaIdSanatoria());
- clone.setStatus(getStatus());
- clone.setStatusByUserId(getStatusByUserId());
- clone.setStatusDate(getStatusDate());
- clone.setStatoPraticaWorkflow(getStatoPraticaWorkflow());
- clone.setEsitoControllo(getEsitoControllo());
- clone.setCollaudoStatico(getCollaudoStatico());
- clone.setCollaudoStaticoAgtSanatoria(getCollaudoStaticoAgtSanatoria());
- clone.setCodiceFiscaleDelegato(getCodiceFiscaleDelegato());
- clone.setCodiceRuoloDelegato(getCodiceRuoloDelegato());
- clone.setLavoriInEconomiaCommittente(getLavoriInEconomiaCommittente());
- clone.setNomeUtenteSuap(getNomeUtenteSuap());
- clone.setCognomeUtenteSuap(getCognomeUtenteSuap());
- clone.setCodiceFiscaleUtenteSuap(getCodiceFiscaleUtenteSuap());
- clone.setInizioLavoriContestualeOpera(getInizioLavoriContestualeOpera());
- clone.setDataInizioLavoriOpera(getDataInizioLavoriOpera());
- clone.setDataInizioEsecuzioneOpera(getDataInizioEsecuzioneOpera());
- clone.setDataFineEsecuzioneOpera(getDataFineEsecuzioneOpera());
- clone.setMetratura(getMetratura());
- clone.setLavoriPubblici(getLavoriPubblici());
- clone.setDtPratica(getDtPratica());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoIntPratica boIntPratica) {
- long primaryKey = boIntPratica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoIntPraticaClp)) {
- return false;
- }
-
- BoIntPraticaClp boIntPratica = (BoIntPraticaClp)obj;
-
- long primaryKey = boIntPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(95);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", tipoPraticaId=");
- sb.append(getTipoPraticaId());
- sb.append(", territorioId=");
- sb.append(getTerritorioId());
- sb.append(", destinazione=");
- sb.append(getDestinazione());
- sb.append(", tipologiaSistemaCostruttivo=");
- sb.append(getTipologiaSistemaCostruttivo());
- sb.append(", ag=");
- sb.append(getAg());
- sb.append(", descLongIntervento=");
- sb.append(getDescLongIntervento());
- sb.append(", via=");
- sb.append(getVia());
- sb.append(", localita=");
- sb.append(getLocalita());
- sb.append(", estremiCatastali=");
- sb.append(getEstremiCatastali());
- sb.append(", estremiPratCom=");
- sb.append(getEstremiPratCom());
- sb.append(", dtSorteggio=");
- sb.append(getDtSorteggio());
- sb.append(", statoPratica=");
- sb.append(getStatoPratica());
- sb.append(", numeroProgetto=");
- sb.append(getNumeroProgetto());
- sb.append(", validata=");
- sb.append(getValidata());
- sb.append(", variataDa=");
- sb.append(getVariataDa());
- sb.append(", varianteNumero=");
- sb.append(getVarianteNumero());
- sb.append(", varianteSostanziale=");
- sb.append(getVarianteSostanziale());
- sb.append(", operaConforme=");
- sb.append(getOperaConforme());
- sb.append(", tipoPraticaIdSanatoria=");
- sb.append(getTipoPraticaIdSanatoria());
- sb.append(", status=");
- sb.append(getStatus());
- sb.append(", statusByUserId=");
- sb.append(getStatusByUserId());
- sb.append(", statusDate=");
- sb.append(getStatusDate());
- sb.append(", statoPraticaWorkflow=");
- sb.append(getStatoPraticaWorkflow());
- sb.append(", esitoControllo=");
- sb.append(getEsitoControllo());
- sb.append(", collaudoStatico=");
- sb.append(getCollaudoStatico());
- sb.append(", collaudoStaticoAgtSanatoria=");
- sb.append(getCollaudoStaticoAgtSanatoria());
- sb.append(", codiceFiscaleDelegato=");
- sb.append(getCodiceFiscaleDelegato());
- sb.append(", codiceRuoloDelegato=");
- sb.append(getCodiceRuoloDelegato());
- sb.append(", lavoriInEconomiaCommittente=");
- sb.append(getLavoriInEconomiaCommittente());
- sb.append(", nomeUtenteSuap=");
- sb.append(getNomeUtenteSuap());
- sb.append(", cognomeUtenteSuap=");
- sb.append(getCognomeUtenteSuap());
- sb.append(", codiceFiscaleUtenteSuap=");
- sb.append(getCodiceFiscaleUtenteSuap());
- sb.append(", inizioLavoriContestualeOpera=");
- sb.append(getInizioLavoriContestualeOpera());
- sb.append(", dataInizioLavoriOpera=");
- sb.append(getDataInizioLavoriOpera());
- sb.append(", dataInizioEsecuzioneOpera=");
- sb.append(getDataInizioEsecuzioneOpera());
- sb.append(", dataFineEsecuzioneOpera=");
- sb.append(getDataFineEsecuzioneOpera());
- sb.append(", metratura=");
- sb.append(getMetratura());
- sb.append(", lavoriPubblici=");
- sb.append(getLavoriPubblici());
- sb.append(", dtPratica=");
- sb.append(getDtPratica());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(145);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoIntPratica");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "intPraticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "tipoPraticaId");
- sb.append(
- "territorioId");
- sb.append(
- "destinazione");
- sb.append(
- "tipologiaSistemaCostruttivo");
- sb.append(
- "ag");
- sb.append(
- "descLongIntervento");
- sb.append(
- "via");
- sb.append(
- "localita");
- sb.append(
- "estremiCatastali");
- sb.append(
- "estremiPratCom");
- sb.append(
- "dtSorteggio");
- sb.append(
- "statoPratica");
- sb.append(
- "numeroProgetto");
- sb.append(
- "validata");
- sb.append(
- "variataDa");
- sb.append(
- "varianteNumero");
- sb.append(
- "varianteSostanziale");
- sb.append(
- "operaConforme");
- sb.append(
- "tipoPraticaIdSanatoria");
- sb.append(
- "status");
- sb.append(
- "statusByUserId");
- sb.append(
- "statusDate");
- sb.append(
- "statoPraticaWorkflow");
- sb.append(
- "esitoControllo");
- sb.append(
- "collaudoStatico");
- sb.append(
- "collaudoStaticoAgtSanatoria");
- sb.append(
- "codiceFiscaleDelegato");
- sb.append(
- "codiceRuoloDelegato");
- sb.append(
- "lavoriInEconomiaCommittente");
- sb.append(
- "nomeUtenteSuap");
- sb.append(
- "cognomeUtenteSuap");
- sb.append(
- "codiceFiscaleUtenteSuap");
- sb.append(
- "inizioLavoriContestualeOpera");
- sb.append(
- "dataInizioLavoriOpera");
- sb.append(
- "dataInizioEsecuzioneOpera");
- sb.append(
- "dataFineEsecuzioneOpera");
- sb.append(
- "metratura");
- sb.append(
- "lavoriPubblici");
- sb.append(
- "dtPratica");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _intPraticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _tipoPraticaId;
- private long _territorioId;
- private String _destinazione;
- private String _tipologiaSistemaCostruttivo;
- private String _ag;
- private String _descLongIntervento;
- private String _via;
- private String _localita;
- private String _estremiCatastali;
- private String _estremiPratCom;
- private Date _dtSorteggio;
- private String _statoPratica;
- private String _numeroProgetto;
- private boolean _validata;
- private long _variataDa;
- private long _varianteNumero;
- private boolean _varianteSostanziale;
- private boolean _operaConforme;
- private long _tipoPraticaIdSanatoria;
- private int _status;
- private long _statusByUserId;
- private String _statusByUserUuid;
- private Date _statusDate;
- private String _statoPraticaWorkflow;
- private int _esitoControllo;
- private boolean _collaudoStatico;
- private boolean _collaudoStaticoAgtSanatoria;
- private String _codiceFiscaleDelegato;
- private String _codiceRuoloDelegato;
- private boolean _lavoriInEconomiaCommittente;
- private String _nomeUtenteSuap;
- private String _cognomeUtenteSuap;
- private String _codiceFiscaleUtenteSuap;
- private boolean _inizioLavoriContestualeOpera;
- private Date _dataInizioLavoriOpera;
- private Date _dataInizioEsecuzioneOpera;
- private Date _dataFineEsecuzioneOpera;
- private String _metratura;
- private boolean _lavoriPubblici;
- private Date _dtPratica;
- private BaseModel> _boIntPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaModel.java
deleted file mode 100644
index 0fd88a09..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaModel.java
+++ /dev/null
@@ -1,905 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoIntPratica service. Represents a row in the "gc_intpratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoIntPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoIntPraticaModelImpl
- * @generated
- */
-public interface BoIntPraticaModel extends BaseModel,
- StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo int pratica model instance should use the {@link BoIntPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo int pratica.
- *
- * @return the primary key of this bo int pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo int pratica.
- *
- * @param primaryKey the primary key of this bo int pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo int pratica.
- *
- * @return the uuid of this bo int pratica
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo int pratica.
- *
- * @param uuid the uuid of this bo int pratica
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the int pratica ID of this bo int pratica.
- *
- * @return the int pratica ID of this bo int pratica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo int pratica.
- *
- * @param intPraticaId the int pratica ID of this bo int pratica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the company ID of this bo int pratica.
- *
- * @return the company ID of this bo int pratica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo int pratica.
- *
- * @param companyId the company ID of this bo int pratica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo int pratica.
- *
- * @return the user ID of this bo int pratica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo int pratica.
- *
- * @param userId the user ID of this bo int pratica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo int pratica.
- *
- * @return the user uuid of this bo int pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo int pratica.
- *
- * @param userUuid the user uuid of this bo int pratica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo int pratica.
- *
- * @return the user name of this bo int pratica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo int pratica.
- *
- * @param userName the user name of this bo int pratica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo int pratica.
- *
- * @return the create date of this bo int pratica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo int pratica.
- *
- * @param createDate the create date of this bo int pratica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo int pratica.
- *
- * @return the modified date of this bo int pratica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo int pratica.
- *
- * @param modifiedDate the modified date of this bo int pratica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo int pratica.
- *
- * @return the group ID of this bo int pratica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo int pratica.
- *
- * @param groupId the group ID of this bo int pratica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the tipo pratica ID of this bo int pratica.
- *
- * @return the tipo pratica ID of this bo int pratica
- */
- public long getTipoPraticaId();
-
- /**
- * Sets the tipo pratica ID of this bo int pratica.
- *
- * @param tipoPraticaId the tipo pratica ID of this bo int pratica
- */
- public void setTipoPraticaId(long tipoPraticaId);
-
- /**
- * Returns the territorio ID of this bo int pratica.
- *
- * @return the territorio ID of this bo int pratica
- */
- public long getTerritorioId();
-
- /**
- * Sets the territorio ID of this bo int pratica.
- *
- * @param territorioId the territorio ID of this bo int pratica
- */
- public void setTerritorioId(long territorioId);
-
- /**
- * Returns the destinazione of this bo int pratica.
- *
- * @return the destinazione of this bo int pratica
- */
- @AutoEscape
- public String getDestinazione();
-
- /**
- * Sets the destinazione of this bo int pratica.
- *
- * @param destinazione the destinazione of this bo int pratica
- */
- public void setDestinazione(String destinazione);
-
- /**
- * Returns the tipologia sistema costruttivo of this bo int pratica.
- *
- * @return the tipologia sistema costruttivo of this bo int pratica
- */
- @AutoEscape
- public String getTipologiaSistemaCostruttivo();
-
- /**
- * Sets the tipologia sistema costruttivo of this bo int pratica.
- *
- * @param tipologiaSistemaCostruttivo the tipologia sistema costruttivo of this bo int pratica
- */
- public void setTipologiaSistemaCostruttivo(
- String tipologiaSistemaCostruttivo);
-
- /**
- * Returns the ag of this bo int pratica.
- *
- * @return the ag of this bo int pratica
- */
- @AutoEscape
- public String getAg();
-
- /**
- * Sets the ag of this bo int pratica.
- *
- * @param ag the ag of this bo int pratica
- */
- public void setAg(String ag);
-
- /**
- * Returns the desc long intervento of this bo int pratica.
- *
- * @return the desc long intervento of this bo int pratica
- */
- @AutoEscape
- public String getDescLongIntervento();
-
- /**
- * Sets the desc long intervento of this bo int pratica.
- *
- * @param descLongIntervento the desc long intervento of this bo int pratica
- */
- public void setDescLongIntervento(String descLongIntervento);
-
- /**
- * Returns the via of this bo int pratica.
- *
- * @return the via of this bo int pratica
- */
- @AutoEscape
- public String getVia();
-
- /**
- * Sets the via of this bo int pratica.
- *
- * @param via the via of this bo int pratica
- */
- public void setVia(String via);
-
- /**
- * Returns the localita of this bo int pratica.
- *
- * @return the localita of this bo int pratica
- */
- @AutoEscape
- public String getLocalita();
-
- /**
- * Sets the localita of this bo int pratica.
- *
- * @param localita the localita of this bo int pratica
- */
- public void setLocalita(String localita);
-
- /**
- * Returns the estremi catastali of this bo int pratica.
- *
- * @return the estremi catastali of this bo int pratica
- */
- @AutoEscape
- public String getEstremiCatastali();
-
- /**
- * Sets the estremi catastali of this bo int pratica.
- *
- * @param estremiCatastali the estremi catastali of this bo int pratica
- */
- public void setEstremiCatastali(String estremiCatastali);
-
- /**
- * Returns the estremi prat com of this bo int pratica.
- *
- * @return the estremi prat com of this bo int pratica
- */
- @AutoEscape
- public String getEstremiPratCom();
-
- /**
- * Sets the estremi prat com of this bo int pratica.
- *
- * @param estremiPratCom the estremi prat com of this bo int pratica
- */
- public void setEstremiPratCom(String estremiPratCom);
-
- /**
- * Returns the dt sorteggio of this bo int pratica.
- *
- * @return the dt sorteggio of this bo int pratica
- */
- public Date getDtSorteggio();
-
- /**
- * Sets the dt sorteggio of this bo int pratica.
- *
- * @param dtSorteggio the dt sorteggio of this bo int pratica
- */
- public void setDtSorteggio(Date dtSorteggio);
-
- /**
- * Returns the stato pratica of this bo int pratica.
- *
- * @return the stato pratica of this bo int pratica
- */
- @AutoEscape
- public String getStatoPratica();
-
- /**
- * Sets the stato pratica of this bo int pratica.
- *
- * @param statoPratica the stato pratica of this bo int pratica
- */
- public void setStatoPratica(String statoPratica);
-
- /**
- * Returns the numero progetto of this bo int pratica.
- *
- * @return the numero progetto of this bo int pratica
- */
- @AutoEscape
- public String getNumeroProgetto();
-
- /**
- * Sets the numero progetto of this bo int pratica.
- *
- * @param numeroProgetto the numero progetto of this bo int pratica
- */
- public void setNumeroProgetto(String numeroProgetto);
-
- /**
- * Returns the validata of this bo int pratica.
- *
- * @return the validata of this bo int pratica
- */
- public boolean getValidata();
-
- /**
- * Returns true if this bo int pratica is validata.
- *
- * @return true if this bo int pratica is validata; false otherwise
- */
- public boolean isValidata();
-
- /**
- * Sets whether this bo int pratica is validata.
- *
- * @param validata the validata of this bo int pratica
- */
- public void setValidata(boolean validata);
-
- /**
- * Returns the variata da of this bo int pratica.
- *
- * @return the variata da of this bo int pratica
- */
- public long getVariataDa();
-
- /**
- * Sets the variata da of this bo int pratica.
- *
- * @param variataDa the variata da of this bo int pratica
- */
- public void setVariataDa(long variataDa);
-
- /**
- * Returns the variante numero of this bo int pratica.
- *
- * @return the variante numero of this bo int pratica
- */
- public long getVarianteNumero();
-
- /**
- * Sets the variante numero of this bo int pratica.
- *
- * @param varianteNumero the variante numero of this bo int pratica
- */
- public void setVarianteNumero(long varianteNumero);
-
- /**
- * Returns the variante sostanziale of this bo int pratica.
- *
- * @return the variante sostanziale of this bo int pratica
- */
- public boolean getVarianteSostanziale();
-
- /**
- * Returns true if this bo int pratica is variante sostanziale.
- *
- * @return true if this bo int pratica is variante sostanziale; false otherwise
- */
- public boolean isVarianteSostanziale();
-
- /**
- * Sets whether this bo int pratica is variante sostanziale.
- *
- * @param varianteSostanziale the variante sostanziale of this bo int pratica
- */
- public void setVarianteSostanziale(boolean varianteSostanziale);
-
- /**
- * Returns the opera conforme of this bo int pratica.
- *
- * @return the opera conforme of this bo int pratica
- */
- public boolean getOperaConforme();
-
- /**
- * Returns true if this bo int pratica is opera conforme.
- *
- * @return true if this bo int pratica is opera conforme; false otherwise
- */
- public boolean isOperaConforme();
-
- /**
- * Sets whether this bo int pratica is opera conforme.
- *
- * @param operaConforme the opera conforme of this bo int pratica
- */
- public void setOperaConforme(boolean operaConforme);
-
- /**
- * Returns the tipo pratica ID sanatoria of this bo int pratica.
- *
- * @return the tipo pratica ID sanatoria of this bo int pratica
- */
- public long getTipoPraticaIdSanatoria();
-
- /**
- * Sets the tipo pratica ID sanatoria of this bo int pratica.
- *
- * @param tipoPraticaIdSanatoria the tipo pratica ID sanatoria of this bo int pratica
- */
- public void setTipoPraticaIdSanatoria(long tipoPraticaIdSanatoria);
-
- /**
- * Returns the status of this bo int pratica.
- *
- * @return the status of this bo int pratica
- */
- public int getStatus();
-
- /**
- * Sets the status of this bo int pratica.
- *
- * @param status the status of this bo int pratica
- */
- public void setStatus(int status);
-
- /**
- * Returns the status by user ID of this bo int pratica.
- *
- * @return the status by user ID of this bo int pratica
- */
- public long getStatusByUserId();
-
- /**
- * Sets the status by user ID of this bo int pratica.
- *
- * @param statusByUserId the status by user ID of this bo int pratica
- */
- public void setStatusByUserId(long statusByUserId);
-
- /**
- * Returns the status by user uuid of this bo int pratica.
- *
- * @return the status by user uuid of this bo int pratica
- * @throws SystemException if a system exception occurred
- */
- public String getStatusByUserUuid() throws SystemException;
-
- /**
- * Sets the status by user uuid of this bo int pratica.
- *
- * @param statusByUserUuid the status by user uuid of this bo int pratica
- */
- public void setStatusByUserUuid(String statusByUserUuid);
-
- /**
- * Returns the status date of this bo int pratica.
- *
- * @return the status date of this bo int pratica
- */
- public Date getStatusDate();
-
- /**
- * Sets the status date of this bo int pratica.
- *
- * @param statusDate the status date of this bo int pratica
- */
- public void setStatusDate(Date statusDate);
-
- /**
- * Returns the stato pratica workflow of this bo int pratica.
- *
- * @return the stato pratica workflow of this bo int pratica
- */
- @AutoEscape
- public String getStatoPraticaWorkflow();
-
- /**
- * Sets the stato pratica workflow of this bo int pratica.
- *
- * @param statoPraticaWorkflow the stato pratica workflow of this bo int pratica
- */
- public void setStatoPraticaWorkflow(String statoPraticaWorkflow);
-
- /**
- * Returns the esito controllo of this bo int pratica.
- *
- * @return the esito controllo of this bo int pratica
- */
- public int getEsitoControllo();
-
- /**
- * Sets the esito controllo of this bo int pratica.
- *
- * @param esitoControllo the esito controllo of this bo int pratica
- */
- public void setEsitoControllo(int esitoControllo);
-
- /**
- * Returns the collaudo statico of this bo int pratica.
- *
- * @return the collaudo statico of this bo int pratica
- */
- public boolean getCollaudoStatico();
-
- /**
- * Returns true if this bo int pratica is collaudo statico.
- *
- * @return true if this bo int pratica is collaudo statico; false otherwise
- */
- public boolean isCollaudoStatico();
-
- /**
- * Sets whether this bo int pratica is collaudo statico.
- *
- * @param collaudoStatico the collaudo statico of this bo int pratica
- */
- public void setCollaudoStatico(boolean collaudoStatico);
-
- /**
- * Returns the collaudo statico agt sanatoria of this bo int pratica.
- *
- * @return the collaudo statico agt sanatoria of this bo int pratica
- */
- public boolean getCollaudoStaticoAgtSanatoria();
-
- /**
- * Returns true if this bo int pratica is collaudo statico agt sanatoria.
- *
- * @return true if this bo int pratica is collaudo statico agt sanatoria; false otherwise
- */
- public boolean isCollaudoStaticoAgtSanatoria();
-
- /**
- * Sets whether this bo int pratica is collaudo statico agt sanatoria.
- *
- * @param collaudoStaticoAgtSanatoria the collaudo statico agt sanatoria of this bo int pratica
- */
- public void setCollaudoStaticoAgtSanatoria(
- boolean collaudoStaticoAgtSanatoria);
-
- /**
- * Returns the codice fiscale delegato of this bo int pratica.
- *
- * @return the codice fiscale delegato of this bo int pratica
- */
- @AutoEscape
- public String getCodiceFiscaleDelegato();
-
- /**
- * Sets the codice fiscale delegato of this bo int pratica.
- *
- * @param codiceFiscaleDelegato the codice fiscale delegato of this bo int pratica
- */
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato);
-
- /**
- * Returns the codice ruolo delegato of this bo int pratica.
- *
- * @return the codice ruolo delegato of this bo int pratica
- */
- @AutoEscape
- public String getCodiceRuoloDelegato();
-
- /**
- * Sets the codice ruolo delegato of this bo int pratica.
- *
- * @param codiceRuoloDelegato the codice ruolo delegato of this bo int pratica
- */
- public void setCodiceRuoloDelegato(String codiceRuoloDelegato);
-
- /**
- * Returns the lavori in economia committente of this bo int pratica.
- *
- * @return the lavori in economia committente of this bo int pratica
- */
- public boolean getLavoriInEconomiaCommittente();
-
- /**
- * Returns true if this bo int pratica is lavori in economia committente.
- *
- * @return true if this bo int pratica is lavori in economia committente; false otherwise
- */
- public boolean isLavoriInEconomiaCommittente();
-
- /**
- * Sets whether this bo int pratica is lavori in economia committente.
- *
- * @param lavoriInEconomiaCommittente the lavori in economia committente of this bo int pratica
- */
- public void setLavoriInEconomiaCommittente(
- boolean lavoriInEconomiaCommittente);
-
- /**
- * Returns the nome utente suap of this bo int pratica.
- *
- * @return the nome utente suap of this bo int pratica
- */
- @AutoEscape
- public String getNomeUtenteSuap();
-
- /**
- * Sets the nome utente suap of this bo int pratica.
- *
- * @param nomeUtenteSuap the nome utente suap of this bo int pratica
- */
- public void setNomeUtenteSuap(String nomeUtenteSuap);
-
- /**
- * Returns the cognome utente suap of this bo int pratica.
- *
- * @return the cognome utente suap of this bo int pratica
- */
- @AutoEscape
- public String getCognomeUtenteSuap();
-
- /**
- * Sets the cognome utente suap of this bo int pratica.
- *
- * @param cognomeUtenteSuap the cognome utente suap of this bo int pratica
- */
- public void setCognomeUtenteSuap(String cognomeUtenteSuap);
-
- /**
- * Returns the codice fiscale utente suap of this bo int pratica.
- *
- * @return the codice fiscale utente suap of this bo int pratica
- */
- @AutoEscape
- public String getCodiceFiscaleUtenteSuap();
-
- /**
- * Sets the codice fiscale utente suap of this bo int pratica.
- *
- * @param codiceFiscaleUtenteSuap the codice fiscale utente suap of this bo int pratica
- */
- public void setCodiceFiscaleUtenteSuap(String codiceFiscaleUtenteSuap);
-
- /**
- * Returns the inizio lavori contestuale opera of this bo int pratica.
- *
- * @return the inizio lavori contestuale opera of this bo int pratica
- */
- public boolean getInizioLavoriContestualeOpera();
-
- /**
- * Returns true if this bo int pratica is inizio lavori contestuale opera.
- *
- * @return true if this bo int pratica is inizio lavori contestuale opera; false otherwise
- */
- public boolean isInizioLavoriContestualeOpera();
-
- /**
- * Sets whether this bo int pratica is inizio lavori contestuale opera.
- *
- * @param inizioLavoriContestualeOpera the inizio lavori contestuale opera of this bo int pratica
- */
- public void setInizioLavoriContestualeOpera(
- boolean inizioLavoriContestualeOpera);
-
- /**
- * Returns the data inizio lavori opera of this bo int pratica.
- *
- * @return the data inizio lavori opera of this bo int pratica
- */
- public Date getDataInizioLavoriOpera();
-
- /**
- * Sets the data inizio lavori opera of this bo int pratica.
- *
- * @param dataInizioLavoriOpera the data inizio lavori opera of this bo int pratica
- */
- public void setDataInizioLavoriOpera(Date dataInizioLavoriOpera);
-
- /**
- * Returns the data inizio esecuzione opera of this bo int pratica.
- *
- * @return the data inizio esecuzione opera of this bo int pratica
- */
- public Date getDataInizioEsecuzioneOpera();
-
- /**
- * Sets the data inizio esecuzione opera of this bo int pratica.
- *
- * @param dataInizioEsecuzioneOpera the data inizio esecuzione opera of this bo int pratica
- */
- public void setDataInizioEsecuzioneOpera(Date dataInizioEsecuzioneOpera);
-
- /**
- * Returns the data fine esecuzione opera of this bo int pratica.
- *
- * @return the data fine esecuzione opera of this bo int pratica
- */
- public Date getDataFineEsecuzioneOpera();
-
- /**
- * Sets the data fine esecuzione opera of this bo int pratica.
- *
- * @param dataFineEsecuzioneOpera the data fine esecuzione opera of this bo int pratica
- */
- public void setDataFineEsecuzioneOpera(Date dataFineEsecuzioneOpera);
-
- /**
- * Returns the metratura of this bo int pratica.
- *
- * @return the metratura of this bo int pratica
- */
- @AutoEscape
- public String getMetratura();
-
- /**
- * Sets the metratura of this bo int pratica.
- *
- * @param metratura the metratura of this bo int pratica
- */
- public void setMetratura(String metratura);
-
- /**
- * Returns the lavori pubblici of this bo int pratica.
- *
- * @return the lavori pubblici of this bo int pratica
- */
- public boolean getLavoriPubblici();
-
- /**
- * Returns true if this bo int pratica is lavori pubblici.
- *
- * @return true if this bo int pratica is lavori pubblici; false otherwise
- */
- public boolean isLavoriPubblici();
-
- /**
- * Sets whether this bo int pratica is lavori pubblici.
- *
- * @param lavoriPubblici the lavori pubblici of this bo int pratica
- */
- public void setLavoriPubblici(boolean lavoriPubblici);
-
- /**
- * Returns the dt pratica of this bo int pratica.
- *
- * @return the dt pratica of this bo int pratica
- */
- public Date getDtPratica();
-
- /**
- * Sets the dt pratica of this bo int pratica.
- *
- * @param dtPratica the dt pratica of this bo int pratica
- */
- public void setDtPratica(Date dtPratica);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoIntPratica boIntPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoIntPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoIntPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaSoap.java
deleted file mode 100644
index 00888434..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaSoap.java
+++ /dev/null
@@ -1,591 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoIntPraticaSoap implements Serializable {
- public static BoIntPraticaSoap toSoapModel(BoIntPratica model) {
- BoIntPraticaSoap soapModel = new BoIntPraticaSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setTipoPraticaId(model.getTipoPraticaId());
- soapModel.setTerritorioId(model.getTerritorioId());
- soapModel.setDestinazione(model.getDestinazione());
- soapModel.setTipologiaSistemaCostruttivo(model.getTipologiaSistemaCostruttivo());
- soapModel.setAg(model.getAg());
- soapModel.setDescLongIntervento(model.getDescLongIntervento());
- soapModel.setVia(model.getVia());
- soapModel.setLocalita(model.getLocalita());
- soapModel.setEstremiCatastali(model.getEstremiCatastali());
- soapModel.setEstremiPratCom(model.getEstremiPratCom());
- soapModel.setDtSorteggio(model.getDtSorteggio());
- soapModel.setStatoPratica(model.getStatoPratica());
- soapModel.setNumeroProgetto(model.getNumeroProgetto());
- soapModel.setValidata(model.getValidata());
- soapModel.setVariataDa(model.getVariataDa());
- soapModel.setVarianteNumero(model.getVarianteNumero());
- soapModel.setVarianteSostanziale(model.getVarianteSostanziale());
- soapModel.setOperaConforme(model.getOperaConforme());
- soapModel.setTipoPraticaIdSanatoria(model.getTipoPraticaIdSanatoria());
- soapModel.setStatus(model.getStatus());
- soapModel.setStatusByUserId(model.getStatusByUserId());
- soapModel.setStatusDate(model.getStatusDate());
- soapModel.setStatoPraticaWorkflow(model.getStatoPraticaWorkflow());
- soapModel.setEsitoControllo(model.getEsitoControllo());
- soapModel.setCollaudoStatico(model.getCollaudoStatico());
- soapModel.setCollaudoStaticoAgtSanatoria(model.getCollaudoStaticoAgtSanatoria());
- soapModel.setCodiceFiscaleDelegato(model.getCodiceFiscaleDelegato());
- soapModel.setCodiceRuoloDelegato(model.getCodiceRuoloDelegato());
- soapModel.setLavoriInEconomiaCommittente(model.getLavoriInEconomiaCommittente());
- soapModel.setNomeUtenteSuap(model.getNomeUtenteSuap());
- soapModel.setCognomeUtenteSuap(model.getCognomeUtenteSuap());
- soapModel.setCodiceFiscaleUtenteSuap(model.getCodiceFiscaleUtenteSuap());
- soapModel.setInizioLavoriContestualeOpera(model.getInizioLavoriContestualeOpera());
- soapModel.setDataInizioLavoriOpera(model.getDataInizioLavoriOpera());
- soapModel.setDataInizioEsecuzioneOpera(model.getDataInizioEsecuzioneOpera());
- soapModel.setDataFineEsecuzioneOpera(model.getDataFineEsecuzioneOpera());
- soapModel.setMetratura(model.getMetratura());
- soapModel.setLavoriPubblici(model.getLavoriPubblici());
- soapModel.setDtPratica(model.getDtPratica());
-
- return soapModel;
- }
-
- public static BoIntPraticaSoap[] toSoapModels(BoIntPratica[] models) {
- BoIntPraticaSoap[] soapModels = new BoIntPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoIntPraticaSoap[][] toSoapModels(BoIntPratica[][] models) {
- BoIntPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoIntPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoIntPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoIntPraticaSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoIntPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoIntPraticaSoap[soapModels.size()]);
- }
-
- public BoIntPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _intPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setIntPraticaId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getTipoPraticaId() {
- return _tipoPraticaId;
- }
-
- public void setTipoPraticaId(long tipoPraticaId) {
- _tipoPraticaId = tipoPraticaId;
- }
-
- public long getTerritorioId() {
- return _territorioId;
- }
-
- public void setTerritorioId(long territorioId) {
- _territorioId = territorioId;
- }
-
- public String getDestinazione() {
- return _destinazione;
- }
-
- public void setDestinazione(String destinazione) {
- _destinazione = destinazione;
- }
-
- public String getTipologiaSistemaCostruttivo() {
- return _tipologiaSistemaCostruttivo;
- }
-
- public void setTipologiaSistemaCostruttivo(
- String tipologiaSistemaCostruttivo) {
- _tipologiaSistemaCostruttivo = tipologiaSistemaCostruttivo;
- }
-
- public String getAg() {
- return _ag;
- }
-
- public void setAg(String ag) {
- _ag = ag;
- }
-
- public String getDescLongIntervento() {
- return _descLongIntervento;
- }
-
- public void setDescLongIntervento(String descLongIntervento) {
- _descLongIntervento = descLongIntervento;
- }
-
- public String getVia() {
- return _via;
- }
-
- public void setVia(String via) {
- _via = via;
- }
-
- public String getLocalita() {
- return _localita;
- }
-
- public void setLocalita(String localita) {
- _localita = localita;
- }
-
- public String getEstremiCatastali() {
- return _estremiCatastali;
- }
-
- public void setEstremiCatastali(String estremiCatastali) {
- _estremiCatastali = estremiCatastali;
- }
-
- public String getEstremiPratCom() {
- return _estremiPratCom;
- }
-
- public void setEstremiPratCom(String estremiPratCom) {
- _estremiPratCom = estremiPratCom;
- }
-
- public Date getDtSorteggio() {
- return _dtSorteggio;
- }
-
- public void setDtSorteggio(Date dtSorteggio) {
- _dtSorteggio = dtSorteggio;
- }
-
- public String getStatoPratica() {
- return _statoPratica;
- }
-
- public void setStatoPratica(String statoPratica) {
- _statoPratica = statoPratica;
- }
-
- public String getNumeroProgetto() {
- return _numeroProgetto;
- }
-
- public void setNumeroProgetto(String numeroProgetto) {
- _numeroProgetto = numeroProgetto;
- }
-
- public boolean getValidata() {
- return _validata;
- }
-
- public boolean isValidata() {
- return _validata;
- }
-
- public void setValidata(boolean validata) {
- _validata = validata;
- }
-
- public long getVariataDa() {
- return _variataDa;
- }
-
- public void setVariataDa(long variataDa) {
- _variataDa = variataDa;
- }
-
- public long getVarianteNumero() {
- return _varianteNumero;
- }
-
- public void setVarianteNumero(long varianteNumero) {
- _varianteNumero = varianteNumero;
- }
-
- public boolean getVarianteSostanziale() {
- return _varianteSostanziale;
- }
-
- public boolean isVarianteSostanziale() {
- return _varianteSostanziale;
- }
-
- public void setVarianteSostanziale(boolean varianteSostanziale) {
- _varianteSostanziale = varianteSostanziale;
- }
-
- public boolean getOperaConforme() {
- return _operaConforme;
- }
-
- public boolean isOperaConforme() {
- return _operaConforme;
- }
-
- public void setOperaConforme(boolean operaConforme) {
- _operaConforme = operaConforme;
- }
-
- public long getTipoPraticaIdSanatoria() {
- return _tipoPraticaIdSanatoria;
- }
-
- public void setTipoPraticaIdSanatoria(long tipoPraticaIdSanatoria) {
- _tipoPraticaIdSanatoria = tipoPraticaIdSanatoria;
- }
-
- public int getStatus() {
- return _status;
- }
-
- public void setStatus(int status) {
- _status = status;
- }
-
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
- }
-
- public Date getStatusDate() {
- return _statusDate;
- }
-
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
- }
-
- public String getStatoPraticaWorkflow() {
- return _statoPraticaWorkflow;
- }
-
- public void setStatoPraticaWorkflow(String statoPraticaWorkflow) {
- _statoPraticaWorkflow = statoPraticaWorkflow;
- }
-
- public int getEsitoControllo() {
- return _esitoControllo;
- }
-
- public void setEsitoControllo(int esitoControllo) {
- _esitoControllo = esitoControllo;
- }
-
- public boolean getCollaudoStatico() {
- return _collaudoStatico;
- }
-
- public boolean isCollaudoStatico() {
- return _collaudoStatico;
- }
-
- public void setCollaudoStatico(boolean collaudoStatico) {
- _collaudoStatico = collaudoStatico;
- }
-
- public boolean getCollaudoStaticoAgtSanatoria() {
- return _collaudoStaticoAgtSanatoria;
- }
-
- public boolean isCollaudoStaticoAgtSanatoria() {
- return _collaudoStaticoAgtSanatoria;
- }
-
- public void setCollaudoStaticoAgtSanatoria(
- boolean collaudoStaticoAgtSanatoria) {
- _collaudoStaticoAgtSanatoria = collaudoStaticoAgtSanatoria;
- }
-
- public String getCodiceFiscaleDelegato() {
- return _codiceFiscaleDelegato;
- }
-
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato) {
- _codiceFiscaleDelegato = codiceFiscaleDelegato;
- }
-
- public String getCodiceRuoloDelegato() {
- return _codiceRuoloDelegato;
- }
-
- public void setCodiceRuoloDelegato(String codiceRuoloDelegato) {
- _codiceRuoloDelegato = codiceRuoloDelegato;
- }
-
- public boolean getLavoriInEconomiaCommittente() {
- return _lavoriInEconomiaCommittente;
- }
-
- public boolean isLavoriInEconomiaCommittente() {
- return _lavoriInEconomiaCommittente;
- }
-
- public void setLavoriInEconomiaCommittente(
- boolean lavoriInEconomiaCommittente) {
- _lavoriInEconomiaCommittente = lavoriInEconomiaCommittente;
- }
-
- public String getNomeUtenteSuap() {
- return _nomeUtenteSuap;
- }
-
- public void setNomeUtenteSuap(String nomeUtenteSuap) {
- _nomeUtenteSuap = nomeUtenteSuap;
- }
-
- public String getCognomeUtenteSuap() {
- return _cognomeUtenteSuap;
- }
-
- public void setCognomeUtenteSuap(String cognomeUtenteSuap) {
- _cognomeUtenteSuap = cognomeUtenteSuap;
- }
-
- public String getCodiceFiscaleUtenteSuap() {
- return _codiceFiscaleUtenteSuap;
- }
-
- public void setCodiceFiscaleUtenteSuap(String codiceFiscaleUtenteSuap) {
- _codiceFiscaleUtenteSuap = codiceFiscaleUtenteSuap;
- }
-
- public boolean getInizioLavoriContestualeOpera() {
- return _inizioLavoriContestualeOpera;
- }
-
- public boolean isInizioLavoriContestualeOpera() {
- return _inizioLavoriContestualeOpera;
- }
-
- public void setInizioLavoriContestualeOpera(
- boolean inizioLavoriContestualeOpera) {
- _inizioLavoriContestualeOpera = inizioLavoriContestualeOpera;
- }
-
- public Date getDataInizioLavoriOpera() {
- return _dataInizioLavoriOpera;
- }
-
- public void setDataInizioLavoriOpera(Date dataInizioLavoriOpera) {
- _dataInizioLavoriOpera = dataInizioLavoriOpera;
- }
-
- public Date getDataInizioEsecuzioneOpera() {
- return _dataInizioEsecuzioneOpera;
- }
-
- public void setDataInizioEsecuzioneOpera(Date dataInizioEsecuzioneOpera) {
- _dataInizioEsecuzioneOpera = dataInizioEsecuzioneOpera;
- }
-
- public Date getDataFineEsecuzioneOpera() {
- return _dataFineEsecuzioneOpera;
- }
-
- public void setDataFineEsecuzioneOpera(Date dataFineEsecuzioneOpera) {
- _dataFineEsecuzioneOpera = dataFineEsecuzioneOpera;
- }
-
- public String getMetratura() {
- return _metratura;
- }
-
- public void setMetratura(String metratura) {
- _metratura = metratura;
- }
-
- public boolean getLavoriPubblici() {
- return _lavoriPubblici;
- }
-
- public boolean isLavoriPubblici() {
- return _lavoriPubblici;
- }
-
- public void setLavoriPubblici(boolean lavoriPubblici) {
- _lavoriPubblici = lavoriPubblici;
- }
-
- public Date getDtPratica() {
- return _dtPratica;
- }
-
- public void setDtPratica(Date dtPratica) {
- _dtPratica = dtPratica;
- }
-
- private String _uuid;
- private long _intPraticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _tipoPraticaId;
- private long _territorioId;
- private String _destinazione;
- private String _tipologiaSistemaCostruttivo;
- private String _ag;
- private String _descLongIntervento;
- private String _via;
- private String _localita;
- private String _estremiCatastali;
- private String _estremiPratCom;
- private Date _dtSorteggio;
- private String _statoPratica;
- private String _numeroProgetto;
- private boolean _validata;
- private long _variataDa;
- private long _varianteNumero;
- private boolean _varianteSostanziale;
- private boolean _operaConforme;
- private long _tipoPraticaIdSanatoria;
- private int _status;
- private long _statusByUserId;
- private Date _statusDate;
- private String _statoPraticaWorkflow;
- private int _esitoControllo;
- private boolean _collaudoStatico;
- private boolean _collaudoStaticoAgtSanatoria;
- private String _codiceFiscaleDelegato;
- private String _codiceRuoloDelegato;
- private boolean _lavoriInEconomiaCommittente;
- private String _nomeUtenteSuap;
- private String _cognomeUtenteSuap;
- private String _codiceFiscaleUtenteSuap;
- private boolean _inizioLavoriContestualeOpera;
- private Date _dataInizioLavoriOpera;
- private Date _dataInizioEsecuzioneOpera;
- private Date _dataFineEsecuzioneOpera;
- private String _metratura;
- private boolean _lavoriPubblici;
- private Date _dtPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaWrapper.java
deleted file mode 100644
index 0225b728..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoIntPraticaWrapper.java
+++ /dev/null
@@ -1,1646 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoIntPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoIntPratica
- * @generated
- */
-public class BoIntPraticaWrapper implements BoIntPratica,
- ModelWrapper {
- public BoIntPraticaWrapper(BoIntPratica boIntPratica) {
- _boIntPratica = boIntPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoIntPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoIntPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("tipoPraticaId", getTipoPraticaId());
- attributes.put("territorioId", getTerritorioId());
- attributes.put("destinazione", getDestinazione());
- attributes.put("tipologiaSistemaCostruttivo",
- getTipologiaSistemaCostruttivo());
- attributes.put("ag", getAg());
- attributes.put("descLongIntervento", getDescLongIntervento());
- attributes.put("via", getVia());
- attributes.put("localita", getLocalita());
- attributes.put("estremiCatastali", getEstremiCatastali());
- attributes.put("estremiPratCom", getEstremiPratCom());
- attributes.put("dtSorteggio", getDtSorteggio());
- attributes.put("statoPratica", getStatoPratica());
- attributes.put("numeroProgetto", getNumeroProgetto());
- attributes.put("validata", getValidata());
- attributes.put("variataDa", getVariataDa());
- attributes.put("varianteNumero", getVarianteNumero());
- attributes.put("varianteSostanziale", getVarianteSostanziale());
- attributes.put("operaConforme", getOperaConforme());
- attributes.put("tipoPraticaIdSanatoria", getTipoPraticaIdSanatoria());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusDate", getStatusDate());
- attributes.put("statoPraticaWorkflow", getStatoPraticaWorkflow());
- attributes.put("esitoControllo", getEsitoControllo());
- attributes.put("collaudoStatico", getCollaudoStatico());
- attributes.put("collaudoStaticoAgtSanatoria",
- getCollaudoStaticoAgtSanatoria());
- attributes.put("codiceFiscaleDelegato", getCodiceFiscaleDelegato());
- attributes.put("codiceRuoloDelegato", getCodiceRuoloDelegato());
- attributes.put("lavoriInEconomiaCommittente",
- getLavoriInEconomiaCommittente());
- attributes.put("nomeUtenteSuap", getNomeUtenteSuap());
- attributes.put("cognomeUtenteSuap", getCognomeUtenteSuap());
- attributes.put("codiceFiscaleUtenteSuap", getCodiceFiscaleUtenteSuap());
- attributes.put("inizioLavoriContestualeOpera",
- getInizioLavoriContestualeOpera());
- attributes.put("dataInizioLavoriOpera", getDataInizioLavoriOpera());
- attributes.put("dataInizioEsecuzioneOpera",
- getDataInizioEsecuzioneOpera());
- attributes.put("dataFineEsecuzioneOpera", getDataFineEsecuzioneOpera());
- attributes.put("metratura", getMetratura());
- attributes.put("lavoriPubblici", getLavoriPubblici());
- attributes.put("dtPratica", getDtPratica());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long tipoPraticaId = (Long)attributes.get("tipoPraticaId");
-
- if (tipoPraticaId != null) {
- setTipoPraticaId(tipoPraticaId);
- }
-
- Long territorioId = (Long)attributes.get("territorioId");
-
- if (territorioId != null) {
- setTerritorioId(territorioId);
- }
-
- String destinazione = (String)attributes.get("destinazione");
-
- if (destinazione != null) {
- setDestinazione(destinazione);
- }
-
- String tipologiaSistemaCostruttivo = (String)attributes.get(
- "tipologiaSistemaCostruttivo");
-
- if (tipologiaSistemaCostruttivo != null) {
- setTipologiaSistemaCostruttivo(tipologiaSistemaCostruttivo);
- }
-
- String ag = (String)attributes.get("ag");
-
- if (ag != null) {
- setAg(ag);
- }
-
- String descLongIntervento = (String)attributes.get("descLongIntervento");
-
- if (descLongIntervento != null) {
- setDescLongIntervento(descLongIntervento);
- }
-
- String via = (String)attributes.get("via");
-
- if (via != null) {
- setVia(via);
- }
-
- String localita = (String)attributes.get("localita");
-
- if (localita != null) {
- setLocalita(localita);
- }
-
- String estremiCatastali = (String)attributes.get("estremiCatastali");
-
- if (estremiCatastali != null) {
- setEstremiCatastali(estremiCatastali);
- }
-
- String estremiPratCom = (String)attributes.get("estremiPratCom");
-
- if (estremiPratCom != null) {
- setEstremiPratCom(estremiPratCom);
- }
-
- Date dtSorteggio = (Date)attributes.get("dtSorteggio");
-
- if (dtSorteggio != null) {
- setDtSorteggio(dtSorteggio);
- }
-
- String statoPratica = (String)attributes.get("statoPratica");
-
- if (statoPratica != null) {
- setStatoPratica(statoPratica);
- }
-
- String numeroProgetto = (String)attributes.get("numeroProgetto");
-
- if (numeroProgetto != null) {
- setNumeroProgetto(numeroProgetto);
- }
-
- Boolean validata = (Boolean)attributes.get("validata");
-
- if (validata != null) {
- setValidata(validata);
- }
-
- Long variataDa = (Long)attributes.get("variataDa");
-
- if (variataDa != null) {
- setVariataDa(variataDa);
- }
-
- Long varianteNumero = (Long)attributes.get("varianteNumero");
-
- if (varianteNumero != null) {
- setVarianteNumero(varianteNumero);
- }
-
- Boolean varianteSostanziale = (Boolean)attributes.get(
- "varianteSostanziale");
-
- if (varianteSostanziale != null) {
- setVarianteSostanziale(varianteSostanziale);
- }
-
- Boolean operaConforme = (Boolean)attributes.get("operaConforme");
-
- if (operaConforme != null) {
- setOperaConforme(operaConforme);
- }
-
- Long tipoPraticaIdSanatoria = (Long)attributes.get(
- "tipoPraticaIdSanatoria");
-
- if (tipoPraticaIdSanatoria != null) {
- setTipoPraticaIdSanatoria(tipoPraticaIdSanatoria);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- String statoPraticaWorkflow = (String)attributes.get(
- "statoPraticaWorkflow");
-
- if (statoPraticaWorkflow != null) {
- setStatoPraticaWorkflow(statoPraticaWorkflow);
- }
-
- Integer esitoControllo = (Integer)attributes.get("esitoControllo");
-
- if (esitoControllo != null) {
- setEsitoControllo(esitoControllo);
- }
-
- Boolean collaudoStatico = (Boolean)attributes.get("collaudoStatico");
-
- if (collaudoStatico != null) {
- setCollaudoStatico(collaudoStatico);
- }
-
- Boolean collaudoStaticoAgtSanatoria = (Boolean)attributes.get(
- "collaudoStaticoAgtSanatoria");
-
- if (collaudoStaticoAgtSanatoria != null) {
- setCollaudoStaticoAgtSanatoria(collaudoStaticoAgtSanatoria);
- }
-
- String codiceFiscaleDelegato = (String)attributes.get(
- "codiceFiscaleDelegato");
-
- if (codiceFiscaleDelegato != null) {
- setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- String codiceRuoloDelegato = (String)attributes.get(
- "codiceRuoloDelegato");
-
- if (codiceRuoloDelegato != null) {
- setCodiceRuoloDelegato(codiceRuoloDelegato);
- }
-
- Boolean lavoriInEconomiaCommittente = (Boolean)attributes.get(
- "lavoriInEconomiaCommittente");
-
- if (lavoriInEconomiaCommittente != null) {
- setLavoriInEconomiaCommittente(lavoriInEconomiaCommittente);
- }
-
- String nomeUtenteSuap = (String)attributes.get("nomeUtenteSuap");
-
- if (nomeUtenteSuap != null) {
- setNomeUtenteSuap(nomeUtenteSuap);
- }
-
- String cognomeUtenteSuap = (String)attributes.get("cognomeUtenteSuap");
-
- if (cognomeUtenteSuap != null) {
- setCognomeUtenteSuap(cognomeUtenteSuap);
- }
-
- String codiceFiscaleUtenteSuap = (String)attributes.get(
- "codiceFiscaleUtenteSuap");
-
- if (codiceFiscaleUtenteSuap != null) {
- setCodiceFiscaleUtenteSuap(codiceFiscaleUtenteSuap);
- }
-
- Boolean inizioLavoriContestualeOpera = (Boolean)attributes.get(
- "inizioLavoriContestualeOpera");
-
- if (inizioLavoriContestualeOpera != null) {
- setInizioLavoriContestualeOpera(inizioLavoriContestualeOpera);
- }
-
- Date dataInizioLavoriOpera = (Date)attributes.get(
- "dataInizioLavoriOpera");
-
- if (dataInizioLavoriOpera != null) {
- setDataInizioLavoriOpera(dataInizioLavoriOpera);
- }
-
- Date dataInizioEsecuzioneOpera = (Date)attributes.get(
- "dataInizioEsecuzioneOpera");
-
- if (dataInizioEsecuzioneOpera != null) {
- setDataInizioEsecuzioneOpera(dataInizioEsecuzioneOpera);
- }
-
- Date dataFineEsecuzioneOpera = (Date)attributes.get(
- "dataFineEsecuzioneOpera");
-
- if (dataFineEsecuzioneOpera != null) {
- setDataFineEsecuzioneOpera(dataFineEsecuzioneOpera);
- }
-
- String metratura = (String)attributes.get("metratura");
-
- if (metratura != null) {
- setMetratura(metratura);
- }
-
- Boolean lavoriPubblici = (Boolean)attributes.get("lavoriPubblici");
-
- if (lavoriPubblici != null) {
- setLavoriPubblici(lavoriPubblici);
- }
-
- Date dtPratica = (Date)attributes.get("dtPratica");
-
- if (dtPratica != null) {
- setDtPratica(dtPratica);
- }
- }
-
- /**
- * Returns the primary key of this bo int pratica.
- *
- * @return the primary key of this bo int pratica
- */
- @Override
- public long getPrimaryKey() {
- return _boIntPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo int pratica.
- *
- * @param primaryKey the primary key of this bo int pratica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boIntPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo int pratica.
- *
- * @return the uuid of this bo int pratica
- */
- @Override
- public java.lang.String getUuid() {
- return _boIntPratica.getUuid();
- }
-
- /**
- * Sets the uuid of this bo int pratica.
- *
- * @param uuid the uuid of this bo int pratica
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boIntPratica.setUuid(uuid);
- }
-
- /**
- * Returns the int pratica ID of this bo int pratica.
- *
- * @return the int pratica ID of this bo int pratica
- */
- @Override
- public long getIntPraticaId() {
- return _boIntPratica.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo int pratica.
- *
- * @param intPraticaId the int pratica ID of this bo int pratica
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boIntPratica.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the company ID of this bo int pratica.
- *
- * @return the company ID of this bo int pratica
- */
- @Override
- public long getCompanyId() {
- return _boIntPratica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo int pratica.
- *
- * @param companyId the company ID of this bo int pratica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boIntPratica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo int pratica.
- *
- * @return the user ID of this bo int pratica
- */
- @Override
- public long getUserId() {
- return _boIntPratica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo int pratica.
- *
- * @param userId the user ID of this bo int pratica
- */
- @Override
- public void setUserId(long userId) {
- _boIntPratica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo int pratica.
- *
- * @return the user uuid of this bo int pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boIntPratica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo int pratica.
- *
- * @param userUuid the user uuid of this bo int pratica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boIntPratica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo int pratica.
- *
- * @return the user name of this bo int pratica
- */
- @Override
- public java.lang.String getUserName() {
- return _boIntPratica.getUserName();
- }
-
- /**
- * Sets the user name of this bo int pratica.
- *
- * @param userName the user name of this bo int pratica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boIntPratica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo int pratica.
- *
- * @return the create date of this bo int pratica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boIntPratica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo int pratica.
- *
- * @param createDate the create date of this bo int pratica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boIntPratica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo int pratica.
- *
- * @return the modified date of this bo int pratica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boIntPratica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo int pratica.
- *
- * @param modifiedDate the modified date of this bo int pratica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boIntPratica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo int pratica.
- *
- * @return the group ID of this bo int pratica
- */
- @Override
- public long getGroupId() {
- return _boIntPratica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo int pratica.
- *
- * @param groupId the group ID of this bo int pratica
- */
- @Override
- public void setGroupId(long groupId) {
- _boIntPratica.setGroupId(groupId);
- }
-
- /**
- * Returns the tipo pratica ID of this bo int pratica.
- *
- * @return the tipo pratica ID of this bo int pratica
- */
- @Override
- public long getTipoPraticaId() {
- return _boIntPratica.getTipoPraticaId();
- }
-
- /**
- * Sets the tipo pratica ID of this bo int pratica.
- *
- * @param tipoPraticaId the tipo pratica ID of this bo int pratica
- */
- @Override
- public void setTipoPraticaId(long tipoPraticaId) {
- _boIntPratica.setTipoPraticaId(tipoPraticaId);
- }
-
- /**
- * Returns the territorio ID of this bo int pratica.
- *
- * @return the territorio ID of this bo int pratica
- */
- @Override
- public long getTerritorioId() {
- return _boIntPratica.getTerritorioId();
- }
-
- /**
- * Sets the territorio ID of this bo int pratica.
- *
- * @param territorioId the territorio ID of this bo int pratica
- */
- @Override
- public void setTerritorioId(long territorioId) {
- _boIntPratica.setTerritorioId(territorioId);
- }
-
- /**
- * Returns the destinazione of this bo int pratica.
- *
- * @return the destinazione of this bo int pratica
- */
- @Override
- public java.lang.String getDestinazione() {
- return _boIntPratica.getDestinazione();
- }
-
- /**
- * Sets the destinazione of this bo int pratica.
- *
- * @param destinazione the destinazione of this bo int pratica
- */
- @Override
- public void setDestinazione(java.lang.String destinazione) {
- _boIntPratica.setDestinazione(destinazione);
- }
-
- /**
- * Returns the tipologia sistema costruttivo of this bo int pratica.
- *
- * @return the tipologia sistema costruttivo of this bo int pratica
- */
- @Override
- public java.lang.String getTipologiaSistemaCostruttivo() {
- return _boIntPratica.getTipologiaSistemaCostruttivo();
- }
-
- /**
- * Sets the tipologia sistema costruttivo of this bo int pratica.
- *
- * @param tipologiaSistemaCostruttivo the tipologia sistema costruttivo of this bo int pratica
- */
- @Override
- public void setTipologiaSistemaCostruttivo(
- java.lang.String tipologiaSistemaCostruttivo) {
- _boIntPratica.setTipologiaSistemaCostruttivo(tipologiaSistemaCostruttivo);
- }
-
- /**
- * Returns the ag of this bo int pratica.
- *
- * @return the ag of this bo int pratica
- */
- @Override
- public java.lang.String getAg() {
- return _boIntPratica.getAg();
- }
-
- /**
- * Sets the ag of this bo int pratica.
- *
- * @param ag the ag of this bo int pratica
- */
- @Override
- public void setAg(java.lang.String ag) {
- _boIntPratica.setAg(ag);
- }
-
- /**
- * Returns the desc long intervento of this bo int pratica.
- *
- * @return the desc long intervento of this bo int pratica
- */
- @Override
- public java.lang.String getDescLongIntervento() {
- return _boIntPratica.getDescLongIntervento();
- }
-
- /**
- * Sets the desc long intervento of this bo int pratica.
- *
- * @param descLongIntervento the desc long intervento of this bo int pratica
- */
- @Override
- public void setDescLongIntervento(java.lang.String descLongIntervento) {
- _boIntPratica.setDescLongIntervento(descLongIntervento);
- }
-
- /**
- * Returns the via of this bo int pratica.
- *
- * @return the via of this bo int pratica
- */
- @Override
- public java.lang.String getVia() {
- return _boIntPratica.getVia();
- }
-
- /**
- * Sets the via of this bo int pratica.
- *
- * @param via the via of this bo int pratica
- */
- @Override
- public void setVia(java.lang.String via) {
- _boIntPratica.setVia(via);
- }
-
- /**
- * Returns the localita of this bo int pratica.
- *
- * @return the localita of this bo int pratica
- */
- @Override
- public java.lang.String getLocalita() {
- return _boIntPratica.getLocalita();
- }
-
- /**
- * Sets the localita of this bo int pratica.
- *
- * @param localita the localita of this bo int pratica
- */
- @Override
- public void setLocalita(java.lang.String localita) {
- _boIntPratica.setLocalita(localita);
- }
-
- /**
- * Returns the estremi catastali of this bo int pratica.
- *
- * @return the estremi catastali of this bo int pratica
- */
- @Override
- public java.lang.String getEstremiCatastali() {
- return _boIntPratica.getEstremiCatastali();
- }
-
- /**
- * Sets the estremi catastali of this bo int pratica.
- *
- * @param estremiCatastali the estremi catastali of this bo int pratica
- */
- @Override
- public void setEstremiCatastali(java.lang.String estremiCatastali) {
- _boIntPratica.setEstremiCatastali(estremiCatastali);
- }
-
- /**
- * Returns the estremi prat com of this bo int pratica.
- *
- * @return the estremi prat com of this bo int pratica
- */
- @Override
- public java.lang.String getEstremiPratCom() {
- return _boIntPratica.getEstremiPratCom();
- }
-
- /**
- * Sets the estremi prat com of this bo int pratica.
- *
- * @param estremiPratCom the estremi prat com of this bo int pratica
- */
- @Override
- public void setEstremiPratCom(java.lang.String estremiPratCom) {
- _boIntPratica.setEstremiPratCom(estremiPratCom);
- }
-
- /**
- * Returns the dt sorteggio of this bo int pratica.
- *
- * @return the dt sorteggio of this bo int pratica
- */
- @Override
- public java.util.Date getDtSorteggio() {
- return _boIntPratica.getDtSorteggio();
- }
-
- /**
- * Sets the dt sorteggio of this bo int pratica.
- *
- * @param dtSorteggio the dt sorteggio of this bo int pratica
- */
- @Override
- public void setDtSorteggio(java.util.Date dtSorteggio) {
- _boIntPratica.setDtSorteggio(dtSorteggio);
- }
-
- /**
- * Returns the stato pratica of this bo int pratica.
- *
- * @return the stato pratica of this bo int pratica
- */
- @Override
- public java.lang.String getStatoPratica() {
- return _boIntPratica.getStatoPratica();
- }
-
- /**
- * Sets the stato pratica of this bo int pratica.
- *
- * @param statoPratica the stato pratica of this bo int pratica
- */
- @Override
- public void setStatoPratica(java.lang.String statoPratica) {
- _boIntPratica.setStatoPratica(statoPratica);
- }
-
- /**
- * Returns the numero progetto of this bo int pratica.
- *
- * @return the numero progetto of this bo int pratica
- */
- @Override
- public java.lang.String getNumeroProgetto() {
- return _boIntPratica.getNumeroProgetto();
- }
-
- /**
- * Sets the numero progetto of this bo int pratica.
- *
- * @param numeroProgetto the numero progetto of this bo int pratica
- */
- @Override
- public void setNumeroProgetto(java.lang.String numeroProgetto) {
- _boIntPratica.setNumeroProgetto(numeroProgetto);
- }
-
- /**
- * Returns the validata of this bo int pratica.
- *
- * @return the validata of this bo int pratica
- */
- @Override
- public boolean getValidata() {
- return _boIntPratica.getValidata();
- }
-
- /**
- * Returns true if this bo int pratica is validata.
- *
- * @return true if this bo int pratica is validata; false otherwise
- */
- @Override
- public boolean isValidata() {
- return _boIntPratica.isValidata();
- }
-
- /**
- * Sets whether this bo int pratica is validata.
- *
- * @param validata the validata of this bo int pratica
- */
- @Override
- public void setValidata(boolean validata) {
- _boIntPratica.setValidata(validata);
- }
-
- /**
- * Returns the variata da of this bo int pratica.
- *
- * @return the variata da of this bo int pratica
- */
- @Override
- public long getVariataDa() {
- return _boIntPratica.getVariataDa();
- }
-
- /**
- * Sets the variata da of this bo int pratica.
- *
- * @param variataDa the variata da of this bo int pratica
- */
- @Override
- public void setVariataDa(long variataDa) {
- _boIntPratica.setVariataDa(variataDa);
- }
-
- /**
- * Returns the variante numero of this bo int pratica.
- *
- * @return the variante numero of this bo int pratica
- */
- @Override
- public long getVarianteNumero() {
- return _boIntPratica.getVarianteNumero();
- }
-
- /**
- * Sets the variante numero of this bo int pratica.
- *
- * @param varianteNumero the variante numero of this bo int pratica
- */
- @Override
- public void setVarianteNumero(long varianteNumero) {
- _boIntPratica.setVarianteNumero(varianteNumero);
- }
-
- /**
- * Returns the variante sostanziale of this bo int pratica.
- *
- * @return the variante sostanziale of this bo int pratica
- */
- @Override
- public boolean getVarianteSostanziale() {
- return _boIntPratica.getVarianteSostanziale();
- }
-
- /**
- * Returns true if this bo int pratica is variante sostanziale.
- *
- * @return true if this bo int pratica is variante sostanziale; false otherwise
- */
- @Override
- public boolean isVarianteSostanziale() {
- return _boIntPratica.isVarianteSostanziale();
- }
-
- /**
- * Sets whether this bo int pratica is variante sostanziale.
- *
- * @param varianteSostanziale the variante sostanziale of this bo int pratica
- */
- @Override
- public void setVarianteSostanziale(boolean varianteSostanziale) {
- _boIntPratica.setVarianteSostanziale(varianteSostanziale);
- }
-
- /**
- * Returns the opera conforme of this bo int pratica.
- *
- * @return the opera conforme of this bo int pratica
- */
- @Override
- public boolean getOperaConforme() {
- return _boIntPratica.getOperaConforme();
- }
-
- /**
- * Returns true if this bo int pratica is opera conforme.
- *
- * @return true if this bo int pratica is opera conforme; false otherwise
- */
- @Override
- public boolean isOperaConforme() {
- return _boIntPratica.isOperaConforme();
- }
-
- /**
- * Sets whether this bo int pratica is opera conforme.
- *
- * @param operaConforme the opera conforme of this bo int pratica
- */
- @Override
- public void setOperaConforme(boolean operaConforme) {
- _boIntPratica.setOperaConforme(operaConforme);
- }
-
- /**
- * Returns the tipo pratica ID sanatoria of this bo int pratica.
- *
- * @return the tipo pratica ID sanatoria of this bo int pratica
- */
- @Override
- public long getTipoPraticaIdSanatoria() {
- return _boIntPratica.getTipoPraticaIdSanatoria();
- }
-
- /**
- * Sets the tipo pratica ID sanatoria of this bo int pratica.
- *
- * @param tipoPraticaIdSanatoria the tipo pratica ID sanatoria of this bo int pratica
- */
- @Override
- public void setTipoPraticaIdSanatoria(long tipoPraticaIdSanatoria) {
- _boIntPratica.setTipoPraticaIdSanatoria(tipoPraticaIdSanatoria);
- }
-
- /**
- * Returns the status of this bo int pratica.
- *
- * @return the status of this bo int pratica
- */
- @Override
- public int getStatus() {
- return _boIntPratica.getStatus();
- }
-
- /**
- * Sets the status of this bo int pratica.
- *
- * @param status the status of this bo int pratica
- */
- @Override
- public void setStatus(int status) {
- _boIntPratica.setStatus(status);
- }
-
- /**
- * Returns the status by user ID of this bo int pratica.
- *
- * @return the status by user ID of this bo int pratica
- */
- @Override
- public long getStatusByUserId() {
- return _boIntPratica.getStatusByUserId();
- }
-
- /**
- * Sets the status by user ID of this bo int pratica.
- *
- * @param statusByUserId the status by user ID of this bo int pratica
- */
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _boIntPratica.setStatusByUserId(statusByUserId);
- }
-
- /**
- * Returns the status by user uuid of this bo int pratica.
- *
- * @return the status by user uuid of this bo int pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getStatusByUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boIntPratica.getStatusByUserUuid();
- }
-
- /**
- * Sets the status by user uuid of this bo int pratica.
- *
- * @param statusByUserUuid the status by user uuid of this bo int pratica
- */
- @Override
- public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
- _boIntPratica.setStatusByUserUuid(statusByUserUuid);
- }
-
- /**
- * Returns the status date of this bo int pratica.
- *
- * @return the status date of this bo int pratica
- */
- @Override
- public java.util.Date getStatusDate() {
- return _boIntPratica.getStatusDate();
- }
-
- /**
- * Sets the status date of this bo int pratica.
- *
- * @param statusDate the status date of this bo int pratica
- */
- @Override
- public void setStatusDate(java.util.Date statusDate) {
- _boIntPratica.setStatusDate(statusDate);
- }
-
- /**
- * Returns the stato pratica workflow of this bo int pratica.
- *
- * @return the stato pratica workflow of this bo int pratica
- */
- @Override
- public java.lang.String getStatoPraticaWorkflow() {
- return _boIntPratica.getStatoPraticaWorkflow();
- }
-
- /**
- * Sets the stato pratica workflow of this bo int pratica.
- *
- * @param statoPraticaWorkflow the stato pratica workflow of this bo int pratica
- */
- @Override
- public void setStatoPraticaWorkflow(java.lang.String statoPraticaWorkflow) {
- _boIntPratica.setStatoPraticaWorkflow(statoPraticaWorkflow);
- }
-
- /**
- * Returns the esito controllo of this bo int pratica.
- *
- * @return the esito controllo of this bo int pratica
- */
- @Override
- public int getEsitoControllo() {
- return _boIntPratica.getEsitoControllo();
- }
-
- /**
- * Sets the esito controllo of this bo int pratica.
- *
- * @param esitoControllo the esito controllo of this bo int pratica
- */
- @Override
- public void setEsitoControllo(int esitoControllo) {
- _boIntPratica.setEsitoControllo(esitoControllo);
- }
-
- /**
- * Returns the collaudo statico of this bo int pratica.
- *
- * @return the collaudo statico of this bo int pratica
- */
- @Override
- public boolean getCollaudoStatico() {
- return _boIntPratica.getCollaudoStatico();
- }
-
- /**
- * Returns true if this bo int pratica is collaudo statico.
- *
- * @return true if this bo int pratica is collaudo statico; false otherwise
- */
- @Override
- public boolean isCollaudoStatico() {
- return _boIntPratica.isCollaudoStatico();
- }
-
- /**
- * Sets whether this bo int pratica is collaudo statico.
- *
- * @param collaudoStatico the collaudo statico of this bo int pratica
- */
- @Override
- public void setCollaudoStatico(boolean collaudoStatico) {
- _boIntPratica.setCollaudoStatico(collaudoStatico);
- }
-
- /**
- * Returns the collaudo statico agt sanatoria of this bo int pratica.
- *
- * @return the collaudo statico agt sanatoria of this bo int pratica
- */
- @Override
- public boolean getCollaudoStaticoAgtSanatoria() {
- return _boIntPratica.getCollaudoStaticoAgtSanatoria();
- }
-
- /**
- * Returns true if this bo int pratica is collaudo statico agt sanatoria.
- *
- * @return true if this bo int pratica is collaudo statico agt sanatoria; false otherwise
- */
- @Override
- public boolean isCollaudoStaticoAgtSanatoria() {
- return _boIntPratica.isCollaudoStaticoAgtSanatoria();
- }
-
- /**
- * Sets whether this bo int pratica is collaudo statico agt sanatoria.
- *
- * @param collaudoStaticoAgtSanatoria the collaudo statico agt sanatoria of this bo int pratica
- */
- @Override
- public void setCollaudoStaticoAgtSanatoria(
- boolean collaudoStaticoAgtSanatoria) {
- _boIntPratica.setCollaudoStaticoAgtSanatoria(collaudoStaticoAgtSanatoria);
- }
-
- /**
- * Returns the codice fiscale delegato of this bo int pratica.
- *
- * @return the codice fiscale delegato of this bo int pratica
- */
- @Override
- public java.lang.String getCodiceFiscaleDelegato() {
- return _boIntPratica.getCodiceFiscaleDelegato();
- }
-
- /**
- * Sets the codice fiscale delegato of this bo int pratica.
- *
- * @param codiceFiscaleDelegato the codice fiscale delegato of this bo int pratica
- */
- @Override
- public void setCodiceFiscaleDelegato(java.lang.String codiceFiscaleDelegato) {
- _boIntPratica.setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- /**
- * Returns the codice ruolo delegato of this bo int pratica.
- *
- * @return the codice ruolo delegato of this bo int pratica
- */
- @Override
- public java.lang.String getCodiceRuoloDelegato() {
- return _boIntPratica.getCodiceRuoloDelegato();
- }
-
- /**
- * Sets the codice ruolo delegato of this bo int pratica.
- *
- * @param codiceRuoloDelegato the codice ruolo delegato of this bo int pratica
- */
- @Override
- public void setCodiceRuoloDelegato(java.lang.String codiceRuoloDelegato) {
- _boIntPratica.setCodiceRuoloDelegato(codiceRuoloDelegato);
- }
-
- /**
- * Returns the lavori in economia committente of this bo int pratica.
- *
- * @return the lavori in economia committente of this bo int pratica
- */
- @Override
- public boolean getLavoriInEconomiaCommittente() {
- return _boIntPratica.getLavoriInEconomiaCommittente();
- }
-
- /**
- * Returns true if this bo int pratica is lavori in economia committente.
- *
- * @return true if this bo int pratica is lavori in economia committente; false otherwise
- */
- @Override
- public boolean isLavoriInEconomiaCommittente() {
- return _boIntPratica.isLavoriInEconomiaCommittente();
- }
-
- /**
- * Sets whether this bo int pratica is lavori in economia committente.
- *
- * @param lavoriInEconomiaCommittente the lavori in economia committente of this bo int pratica
- */
- @Override
- public void setLavoriInEconomiaCommittente(
- boolean lavoriInEconomiaCommittente) {
- _boIntPratica.setLavoriInEconomiaCommittente(lavoriInEconomiaCommittente);
- }
-
- /**
- * Returns the nome utente suap of this bo int pratica.
- *
- * @return the nome utente suap of this bo int pratica
- */
- @Override
- public java.lang.String getNomeUtenteSuap() {
- return _boIntPratica.getNomeUtenteSuap();
- }
-
- /**
- * Sets the nome utente suap of this bo int pratica.
- *
- * @param nomeUtenteSuap the nome utente suap of this bo int pratica
- */
- @Override
- public void setNomeUtenteSuap(java.lang.String nomeUtenteSuap) {
- _boIntPratica.setNomeUtenteSuap(nomeUtenteSuap);
- }
-
- /**
- * Returns the cognome utente suap of this bo int pratica.
- *
- * @return the cognome utente suap of this bo int pratica
- */
- @Override
- public java.lang.String getCognomeUtenteSuap() {
- return _boIntPratica.getCognomeUtenteSuap();
- }
-
- /**
- * Sets the cognome utente suap of this bo int pratica.
- *
- * @param cognomeUtenteSuap the cognome utente suap of this bo int pratica
- */
- @Override
- public void setCognomeUtenteSuap(java.lang.String cognomeUtenteSuap) {
- _boIntPratica.setCognomeUtenteSuap(cognomeUtenteSuap);
- }
-
- /**
- * Returns the codice fiscale utente suap of this bo int pratica.
- *
- * @return the codice fiscale utente suap of this bo int pratica
- */
- @Override
- public java.lang.String getCodiceFiscaleUtenteSuap() {
- return _boIntPratica.getCodiceFiscaleUtenteSuap();
- }
-
- /**
- * Sets the codice fiscale utente suap of this bo int pratica.
- *
- * @param codiceFiscaleUtenteSuap the codice fiscale utente suap of this bo int pratica
- */
- @Override
- public void setCodiceFiscaleUtenteSuap(
- java.lang.String codiceFiscaleUtenteSuap) {
- _boIntPratica.setCodiceFiscaleUtenteSuap(codiceFiscaleUtenteSuap);
- }
-
- /**
- * Returns the inizio lavori contestuale opera of this bo int pratica.
- *
- * @return the inizio lavori contestuale opera of this bo int pratica
- */
- @Override
- public boolean getInizioLavoriContestualeOpera() {
- return _boIntPratica.getInizioLavoriContestualeOpera();
- }
-
- /**
- * Returns true if this bo int pratica is inizio lavori contestuale opera.
- *
- * @return true if this bo int pratica is inizio lavori contestuale opera; false otherwise
- */
- @Override
- public boolean isInizioLavoriContestualeOpera() {
- return _boIntPratica.isInizioLavoriContestualeOpera();
- }
-
- /**
- * Sets whether this bo int pratica is inizio lavori contestuale opera.
- *
- * @param inizioLavoriContestualeOpera the inizio lavori contestuale opera of this bo int pratica
- */
- @Override
- public void setInizioLavoriContestualeOpera(
- boolean inizioLavoriContestualeOpera) {
- _boIntPratica.setInizioLavoriContestualeOpera(inizioLavoriContestualeOpera);
- }
-
- /**
- * Returns the data inizio lavori opera of this bo int pratica.
- *
- * @return the data inizio lavori opera of this bo int pratica
- */
- @Override
- public java.util.Date getDataInizioLavoriOpera() {
- return _boIntPratica.getDataInizioLavoriOpera();
- }
-
- /**
- * Sets the data inizio lavori opera of this bo int pratica.
- *
- * @param dataInizioLavoriOpera the data inizio lavori opera of this bo int pratica
- */
- @Override
- public void setDataInizioLavoriOpera(java.util.Date dataInizioLavoriOpera) {
- _boIntPratica.setDataInizioLavoriOpera(dataInizioLavoriOpera);
- }
-
- /**
- * Returns the data inizio esecuzione opera of this bo int pratica.
- *
- * @return the data inizio esecuzione opera of this bo int pratica
- */
- @Override
- public java.util.Date getDataInizioEsecuzioneOpera() {
- return _boIntPratica.getDataInizioEsecuzioneOpera();
- }
-
- /**
- * Sets the data inizio esecuzione opera of this bo int pratica.
- *
- * @param dataInizioEsecuzioneOpera the data inizio esecuzione opera of this bo int pratica
- */
- @Override
- public void setDataInizioEsecuzioneOpera(
- java.util.Date dataInizioEsecuzioneOpera) {
- _boIntPratica.setDataInizioEsecuzioneOpera(dataInizioEsecuzioneOpera);
- }
-
- /**
- * Returns the data fine esecuzione opera of this bo int pratica.
- *
- * @return the data fine esecuzione opera of this bo int pratica
- */
- @Override
- public java.util.Date getDataFineEsecuzioneOpera() {
- return _boIntPratica.getDataFineEsecuzioneOpera();
- }
-
- /**
- * Sets the data fine esecuzione opera of this bo int pratica.
- *
- * @param dataFineEsecuzioneOpera the data fine esecuzione opera of this bo int pratica
- */
- @Override
- public void setDataFineEsecuzioneOpera(
- java.util.Date dataFineEsecuzioneOpera) {
- _boIntPratica.setDataFineEsecuzioneOpera(dataFineEsecuzioneOpera);
- }
-
- /**
- * Returns the metratura of this bo int pratica.
- *
- * @return the metratura of this bo int pratica
- */
- @Override
- public java.lang.String getMetratura() {
- return _boIntPratica.getMetratura();
- }
-
- /**
- * Sets the metratura of this bo int pratica.
- *
- * @param metratura the metratura of this bo int pratica
- */
- @Override
- public void setMetratura(java.lang.String metratura) {
- _boIntPratica.setMetratura(metratura);
- }
-
- /**
- * Returns the lavori pubblici of this bo int pratica.
- *
- * @return the lavori pubblici of this bo int pratica
- */
- @Override
- public boolean getLavoriPubblici() {
- return _boIntPratica.getLavoriPubblici();
- }
-
- /**
- * Returns true if this bo int pratica is lavori pubblici.
- *
- * @return true if this bo int pratica is lavori pubblici; false otherwise
- */
- @Override
- public boolean isLavoriPubblici() {
- return _boIntPratica.isLavoriPubblici();
- }
-
- /**
- * Sets whether this bo int pratica is lavori pubblici.
- *
- * @param lavoriPubblici the lavori pubblici of this bo int pratica
- */
- @Override
- public void setLavoriPubblici(boolean lavoriPubblici) {
- _boIntPratica.setLavoriPubblici(lavoriPubblici);
- }
-
- /**
- * Returns the dt pratica of this bo int pratica.
- *
- * @return the dt pratica of this bo int pratica
- */
- @Override
- public java.util.Date getDtPratica() {
- return _boIntPratica.getDtPratica();
- }
-
- /**
- * Sets the dt pratica of this bo int pratica.
- *
- * @param dtPratica the dt pratica of this bo int pratica
- */
- @Override
- public void setDtPratica(java.util.Date dtPratica) {
- _boIntPratica.setDtPratica(dtPratica);
- }
-
- @Override
- public boolean isNew() {
- return _boIntPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boIntPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boIntPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boIntPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boIntPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boIntPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boIntPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boIntPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boIntPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boIntPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boIntPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoIntPraticaWrapper((BoIntPratica)_boIntPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoIntPratica boIntPratica) {
- return _boIntPratica.compareTo(boIntPratica);
- }
-
- @Override
- public int hashCode() {
- return _boIntPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boIntPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoIntPratica toEscapedModel() {
- return new BoIntPraticaWrapper(_boIntPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoIntPratica toUnescapedModel() {
- return new BoIntPraticaWrapper(_boIntPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boIntPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boIntPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boIntPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoIntPraticaWrapper)) {
- return false;
- }
-
- BoIntPraticaWrapper boIntPraticaWrapper = (BoIntPraticaWrapper)obj;
-
- if (Validator.equals(_boIntPratica, boIntPraticaWrapper._boIntPratica)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boIntPratica.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoIntPratica getWrappedBoIntPratica() {
- return _boIntPratica;
- }
-
- @Override
- public BoIntPratica getWrappedModel() {
- return _boIntPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boIntPratica.resetOriginalValues();
- }
-
- private BoIntPratica _boIntPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPratica.java
deleted file mode 100644
index 5aa6ef07..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoProblemiPratica service. Represents a row in the "gc_problemipratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoProblemiPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaModelImpl
- * @generated
- */
-public interface BoProblemiPratica extends BoProblemiPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaClp.java
deleted file mode 100644
index 9998dac4..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaClp.java
+++ /dev/null
@@ -1,585 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoProblemiPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoProblemiPraticaClp extends BaseModelImpl
- implements BoProblemiPratica {
- public BoProblemiPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoProblemiPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoProblemiPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _problemiPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setProblemiPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _problemiPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("problemiPraticaId", getProblemiPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("jsonError", getJsonError());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long problemiPraticaId = (Long)attributes.get("problemiPraticaId");
-
- if (problemiPraticaId != null) {
- setProblemiPraticaId(problemiPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String jsonError = (String)attributes.get("jsonError");
-
- if (jsonError != null) {
- setJsonError(jsonError);
- }
- }
-
- @Override
- public long getProblemiPraticaId() {
- return _problemiPraticaId;
- }
-
- @Override
- public void setProblemiPraticaId(long problemiPraticaId) {
- _problemiPraticaId = problemiPraticaId;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProblemiPraticaId",
- long.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, problemiPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getJsonError() {
- return _jsonError;
- }
-
- @Override
- public void setJsonError(String jsonError) {
- _jsonError = jsonError;
-
- if (_boProblemiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boProblemiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setJsonError", String.class);
-
- method.invoke(_boProblemiPraticaRemoteModel, jsonError);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoProblemiPraticaRemoteModel() {
- return _boProblemiPraticaRemoteModel;
- }
-
- public void setBoProblemiPraticaRemoteModel(
- BaseModel> boProblemiPraticaRemoteModel) {
- _boProblemiPraticaRemoteModel = boProblemiPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boProblemiPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boProblemiPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoProblemiPraticaLocalServiceUtil.addBoProblemiPratica(this);
- }
- else {
- BoProblemiPraticaLocalServiceUtil.updateBoProblemiPratica(this);
- }
- }
-
- @Override
- public BoProblemiPratica toEscapedModel() {
- return (BoProblemiPratica)ProxyUtil.newProxyInstance(BoProblemiPratica.class.getClassLoader(),
- new Class[] { BoProblemiPratica.class },
- new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoProblemiPraticaClp clone = new BoProblemiPraticaClp();
-
- clone.setProblemiPraticaId(getProblemiPraticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setJsonError(getJsonError());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoProblemiPratica boProblemiPratica) {
- long primaryKey = boProblemiPratica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoProblemiPraticaClp)) {
- return false;
- }
-
- BoProblemiPraticaClp boProblemiPratica = (BoProblemiPraticaClp)obj;
-
- long primaryKey = boProblemiPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(19);
-
- sb.append("{problemiPraticaId=");
- sb.append(getProblemiPraticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", jsonError=");
- sb.append(getJsonError());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(31);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoProblemiPratica");
- sb.append("");
-
- sb.append(
- "problemiPraticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "dettPraticaId");
- sb.append(
- "jsonError");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _problemiPraticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private String _jsonError;
- private BaseModel> _boProblemiPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaModel.java
deleted file mode 100644
index ee9bb8de..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaModel.java
+++ /dev/null
@@ -1,279 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.GroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoProblemiPratica service. Represents a row in the "gc_problemipratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoProblemiPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoProblemiPraticaModelImpl
- * @generated
- */
-public interface BoProblemiPraticaModel extends BaseModel,
- GroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo problemi pratica model instance should use the {@link BoProblemiPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo problemi pratica.
- *
- * @return the primary key of this bo problemi pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo problemi pratica.
- *
- * @param primaryKey the primary key of this bo problemi pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the problemi pratica ID of this bo problemi pratica.
- *
- * @return the problemi pratica ID of this bo problemi pratica
- */
- public long getProblemiPraticaId();
-
- /**
- * Sets the problemi pratica ID of this bo problemi pratica.
- *
- * @param problemiPraticaId the problemi pratica ID of this bo problemi pratica
- */
- public void setProblemiPraticaId(long problemiPraticaId);
-
- /**
- * Returns the company ID of this bo problemi pratica.
- *
- * @return the company ID of this bo problemi pratica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo problemi pratica.
- *
- * @param companyId the company ID of this bo problemi pratica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo problemi pratica.
- *
- * @return the user ID of this bo problemi pratica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo problemi pratica.
- *
- * @param userId the user ID of this bo problemi pratica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo problemi pratica.
- *
- * @return the user uuid of this bo problemi pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo problemi pratica.
- *
- * @param userUuid the user uuid of this bo problemi pratica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo problemi pratica.
- *
- * @return the user name of this bo problemi pratica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo problemi pratica.
- *
- * @param userName the user name of this bo problemi pratica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo problemi pratica.
- *
- * @return the create date of this bo problemi pratica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo problemi pratica.
- *
- * @param createDate the create date of this bo problemi pratica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo problemi pratica.
- *
- * @return the modified date of this bo problemi pratica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo problemi pratica.
- *
- * @param modifiedDate the modified date of this bo problemi pratica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo problemi pratica.
- *
- * @return the group ID of this bo problemi pratica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo problemi pratica.
- *
- * @param groupId the group ID of this bo problemi pratica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the dett pratica ID of this bo problemi pratica.
- *
- * @return the dett pratica ID of this bo problemi pratica
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo problemi pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo problemi pratica
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the json error of this bo problemi pratica.
- *
- * @return the json error of this bo problemi pratica
- */
- @AutoEscape
- public String getJsonError();
-
- /**
- * Sets the json error of this bo problemi pratica.
- *
- * @param jsonError the json error of this bo problemi pratica
- */
- public void setJsonError(String jsonError);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoProblemiPratica boProblemiPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoProblemiPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoProblemiPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaSoap.java
deleted file mode 100644
index 83faab28..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaSoap.java
+++ /dev/null
@@ -1,178 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoProblemiPraticaSoap implements Serializable {
- public static BoProblemiPraticaSoap toSoapModel(BoProblemiPratica model) {
- BoProblemiPraticaSoap soapModel = new BoProblemiPraticaSoap();
-
- soapModel.setProblemiPraticaId(model.getProblemiPraticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setJsonError(model.getJsonError());
-
- return soapModel;
- }
-
- public static BoProblemiPraticaSoap[] toSoapModels(
- BoProblemiPratica[] models) {
- BoProblemiPraticaSoap[] soapModels = new BoProblemiPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoProblemiPraticaSoap[][] toSoapModels(
- BoProblemiPratica[][] models) {
- BoProblemiPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoProblemiPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoProblemiPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoProblemiPraticaSoap[] toSoapModels(
- List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoProblemiPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoProblemiPraticaSoap[soapModels.size()]);
- }
-
- public BoProblemiPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _problemiPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setProblemiPraticaId(pk);
- }
-
- public long getProblemiPraticaId() {
- return _problemiPraticaId;
- }
-
- public void setProblemiPraticaId(long problemiPraticaId) {
- _problemiPraticaId = problemiPraticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public String getJsonError() {
- return _jsonError;
- }
-
- public void setJsonError(String jsonError) {
- _jsonError = jsonError;
- }
-
- private long _problemiPraticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private String _jsonError;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaWrapper.java
deleted file mode 100644
index d8f0ca3f..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoProblemiPraticaWrapper.java
+++ /dev/null
@@ -1,488 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoProblemiPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoProblemiPratica
- * @generated
- */
-public class BoProblemiPraticaWrapper implements BoProblemiPratica,
- ModelWrapper {
- public BoProblemiPraticaWrapper(BoProblemiPratica boProblemiPratica) {
- _boProblemiPratica = boProblemiPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoProblemiPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoProblemiPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("problemiPraticaId", getProblemiPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("jsonError", getJsonError());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long problemiPraticaId = (Long)attributes.get("problemiPraticaId");
-
- if (problemiPraticaId != null) {
- setProblemiPraticaId(problemiPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String jsonError = (String)attributes.get("jsonError");
-
- if (jsonError != null) {
- setJsonError(jsonError);
- }
- }
-
- /**
- * Returns the primary key of this bo problemi pratica.
- *
- * @return the primary key of this bo problemi pratica
- */
- @Override
- public long getPrimaryKey() {
- return _boProblemiPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo problemi pratica.
- *
- * @param primaryKey the primary key of this bo problemi pratica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boProblemiPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the problemi pratica ID of this bo problemi pratica.
- *
- * @return the problemi pratica ID of this bo problemi pratica
- */
- @Override
- public long getProblemiPraticaId() {
- return _boProblemiPratica.getProblemiPraticaId();
- }
-
- /**
- * Sets the problemi pratica ID of this bo problemi pratica.
- *
- * @param problemiPraticaId the problemi pratica ID of this bo problemi pratica
- */
- @Override
- public void setProblemiPraticaId(long problemiPraticaId) {
- _boProblemiPratica.setProblemiPraticaId(problemiPraticaId);
- }
-
- /**
- * Returns the company ID of this bo problemi pratica.
- *
- * @return the company ID of this bo problemi pratica
- */
- @Override
- public long getCompanyId() {
- return _boProblemiPratica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo problemi pratica.
- *
- * @param companyId the company ID of this bo problemi pratica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boProblemiPratica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo problemi pratica.
- *
- * @return the user ID of this bo problemi pratica
- */
- @Override
- public long getUserId() {
- return _boProblemiPratica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo problemi pratica.
- *
- * @param userId the user ID of this bo problemi pratica
- */
- @Override
- public void setUserId(long userId) {
- _boProblemiPratica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo problemi pratica.
- *
- * @return the user uuid of this bo problemi pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boProblemiPratica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo problemi pratica.
- *
- * @param userUuid the user uuid of this bo problemi pratica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boProblemiPratica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo problemi pratica.
- *
- * @return the user name of this bo problemi pratica
- */
- @Override
- public java.lang.String getUserName() {
- return _boProblemiPratica.getUserName();
- }
-
- /**
- * Sets the user name of this bo problemi pratica.
- *
- * @param userName the user name of this bo problemi pratica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boProblemiPratica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo problemi pratica.
- *
- * @return the create date of this bo problemi pratica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boProblemiPratica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo problemi pratica.
- *
- * @param createDate the create date of this bo problemi pratica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boProblemiPratica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo problemi pratica.
- *
- * @return the modified date of this bo problemi pratica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boProblemiPratica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo problemi pratica.
- *
- * @param modifiedDate the modified date of this bo problemi pratica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boProblemiPratica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo problemi pratica.
- *
- * @return the group ID of this bo problemi pratica
- */
- @Override
- public long getGroupId() {
- return _boProblemiPratica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo problemi pratica.
- *
- * @param groupId the group ID of this bo problemi pratica
- */
- @Override
- public void setGroupId(long groupId) {
- _boProblemiPratica.setGroupId(groupId);
- }
-
- /**
- * Returns the dett pratica ID of this bo problemi pratica.
- *
- * @return the dett pratica ID of this bo problemi pratica
- */
- @Override
- public long getDettPraticaId() {
- return _boProblemiPratica.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo problemi pratica.
- *
- * @param dettPraticaId the dett pratica ID of this bo problemi pratica
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boProblemiPratica.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the json error of this bo problemi pratica.
- *
- * @return the json error of this bo problemi pratica
- */
- @Override
- public java.lang.String getJsonError() {
- return _boProblemiPratica.getJsonError();
- }
-
- /**
- * Sets the json error of this bo problemi pratica.
- *
- * @param jsonError the json error of this bo problemi pratica
- */
- @Override
- public void setJsonError(java.lang.String jsonError) {
- _boProblemiPratica.setJsonError(jsonError);
- }
-
- @Override
- public boolean isNew() {
- return _boProblemiPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boProblemiPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boProblemiPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boProblemiPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boProblemiPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boProblemiPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boProblemiPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boProblemiPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boProblemiPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boProblemiPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boProblemiPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoProblemiPraticaWrapper((BoProblemiPratica)_boProblemiPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoProblemiPratica boProblemiPratica) {
- return _boProblemiPratica.compareTo(boProblemiPratica);
- }
-
- @Override
- public int hashCode() {
- return _boProblemiPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boProblemiPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoProblemiPratica toEscapedModel() {
- return new BoProblemiPraticaWrapper(_boProblemiPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoProblemiPratica toUnescapedModel() {
- return new BoProblemiPraticaWrapper(_boProblemiPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boProblemiPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boProblemiPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boProblemiPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoProblemiPraticaWrapper)) {
- return false;
- }
-
- BoProblemiPraticaWrapper boProblemiPraticaWrapper = (BoProblemiPraticaWrapper)obj;
-
- if (Validator.equals(_boProblemiPratica,
- boProblemiPraticaWrapper._boProblemiPratica)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoProblemiPratica getWrappedBoProblemiPratica() {
- return _boProblemiPratica;
- }
-
- @Override
- public BoProblemiPratica getWrappedModel() {
- return _boProblemiPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boProblemiPratica.resetOriginalValues();
- }
-
- private BoProblemiPratica _boProblemiPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPratica.java
deleted file mode 100644
index b8a5d45a..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoRelLeggiPratica service. Represents a row in the "gc_relleggipratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoRelLeggiPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaModelImpl
- * @generated
- */
-public interface BoRelLeggiPratica extends BoRelLeggiPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaClp.java
deleted file mode 100644
index 2cbe3714..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaClp.java
+++ /dev/null
@@ -1,380 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-
-import it.tref.liferay.portos.portosimport.service.BoRelLeggiPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-import it.tref.liferay.portos.portosimport.service.persistence.BoRelLeggiPraticaPK;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoRelLeggiPraticaClp extends BaseModelImpl
- implements BoRelLeggiPratica {
- public BoRelLeggiPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoRelLeggiPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoRelLeggiPratica.class.getName();
- }
-
- @Override
- public BoRelLeggiPraticaPK getPrimaryKey() {
- return new BoRelLeggiPraticaPK(_intPraticaId, _artLeggeId);
- }
-
- @Override
- public void setPrimaryKey(BoRelLeggiPraticaPK primaryKey) {
- setIntPraticaId(primaryKey.intPraticaId);
- setArtLeggeId(primaryKey.artLeggeId);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return new BoRelLeggiPraticaPK(_intPraticaId, _artLeggeId);
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey((BoRelLeggiPraticaPK)primaryKeyObj);
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("artLeggeId", getArtLeggeId());
- attributes.put("selezionato", getSelezionato());
- attributes.put("valore", getValore());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long artLeggeId = (Long)attributes.get("artLeggeId");
-
- if (artLeggeId != null) {
- setArtLeggeId(artLeggeId);
- }
-
- Boolean selezionato = (Boolean)attributes.get("selezionato");
-
- if (selezionato != null) {
- setSelezionato(selezionato);
- }
-
- String valore = (String)attributes.get("valore");
-
- if (valore != null) {
- setValore(valore);
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boRelLeggiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boRelLeggiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boRelLeggiPraticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getArtLeggeId() {
- return _artLeggeId;
- }
-
- @Override
- public void setArtLeggeId(long artLeggeId) {
- _artLeggeId = artLeggeId;
-
- if (_boRelLeggiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boRelLeggiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setArtLeggeId", long.class);
-
- method.invoke(_boRelLeggiPraticaRemoteModel, artLeggeId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getSelezionato() {
- return _selezionato;
- }
-
- @Override
- public boolean isSelezionato() {
- return _selezionato;
- }
-
- @Override
- public void setSelezionato(boolean selezionato) {
- _selezionato = selezionato;
-
- if (_boRelLeggiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boRelLeggiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSelezionato", boolean.class);
-
- method.invoke(_boRelLeggiPraticaRemoteModel, selezionato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getValore() {
- return _valore;
- }
-
- @Override
- public void setValore(String valore) {
- _valore = valore;
-
- if (_boRelLeggiPraticaRemoteModel != null) {
- try {
- Class> clazz = _boRelLeggiPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setValore", String.class);
-
- method.invoke(_boRelLeggiPraticaRemoteModel, valore);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoRelLeggiPraticaRemoteModel() {
- return _boRelLeggiPraticaRemoteModel;
- }
-
- public void setBoRelLeggiPraticaRemoteModel(
- BaseModel> boRelLeggiPraticaRemoteModel) {
- _boRelLeggiPraticaRemoteModel = boRelLeggiPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boRelLeggiPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boRelLeggiPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoRelLeggiPraticaLocalServiceUtil.addBoRelLeggiPratica(this);
- }
- else {
- BoRelLeggiPraticaLocalServiceUtil.updateBoRelLeggiPratica(this);
- }
- }
-
- @Override
- public BoRelLeggiPratica toEscapedModel() {
- return (BoRelLeggiPratica)ProxyUtil.newProxyInstance(BoRelLeggiPratica.class.getClassLoader(),
- new Class[] { BoRelLeggiPratica.class },
- new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoRelLeggiPraticaClp clone = new BoRelLeggiPraticaClp();
-
- clone.setIntPraticaId(getIntPraticaId());
- clone.setArtLeggeId(getArtLeggeId());
- clone.setSelezionato(getSelezionato());
- clone.setValore(getValore());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoRelLeggiPratica boRelLeggiPratica) {
- BoRelLeggiPraticaPK primaryKey = boRelLeggiPratica.getPrimaryKey();
-
- return getPrimaryKey().compareTo(primaryKey);
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoRelLeggiPraticaClp)) {
- return false;
- }
-
- BoRelLeggiPraticaClp boRelLeggiPratica = (BoRelLeggiPraticaClp)obj;
-
- BoRelLeggiPraticaPK primaryKey = boRelLeggiPratica.getPrimaryKey();
-
- if (getPrimaryKey().equals(primaryKey)) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return getPrimaryKey().hashCode();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(9);
-
- sb.append("{intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", artLeggeId=");
- sb.append(getArtLeggeId());
- sb.append(", selezionato=");
- sb.append(getSelezionato());
- sb.append(", valore=");
- sb.append(getValore());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(16);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica");
- sb.append("");
-
- sb.append(
- "intPraticaId");
- sb.append(
- "artLeggeId");
- sb.append(
- "selezionato");
- sb.append(
- "valore");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _intPraticaId;
- private long _artLeggeId;
- private boolean _selezionato;
- private String _valore;
- private BaseModel> _boRelLeggiPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaModel.java
deleted file mode 100644
index 4d067094..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaModel.java
+++ /dev/null
@@ -1,183 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import it.tref.liferay.portos.portosimport.service.persistence.BoRelLeggiPraticaPK;
-
-import java.io.Serializable;
-
-/**
- * The base model interface for the BoRelLeggiPratica service. Represents a row in the "gc_relleggipratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoRelLeggiPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoRelLeggiPraticaModelImpl
- * @generated
- */
-public interface BoRelLeggiPraticaModel extends BaseModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo rel leggi pratica model instance should use the {@link BoRelLeggiPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo rel leggi pratica.
- *
- * @return the primary key of this bo rel leggi pratica
- */
- public BoRelLeggiPraticaPK getPrimaryKey();
-
- /**
- * Sets the primary key of this bo rel leggi pratica.
- *
- * @param primaryKey the primary key of this bo rel leggi pratica
- */
- public void setPrimaryKey(BoRelLeggiPraticaPK primaryKey);
-
- /**
- * Returns the int pratica ID of this bo rel leggi pratica.
- *
- * @return the int pratica ID of this bo rel leggi pratica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo rel leggi pratica.
- *
- * @param intPraticaId the int pratica ID of this bo rel leggi pratica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the art legge ID of this bo rel leggi pratica.
- *
- * @return the art legge ID of this bo rel leggi pratica
- */
- public long getArtLeggeId();
-
- /**
- * Sets the art legge ID of this bo rel leggi pratica.
- *
- * @param artLeggeId the art legge ID of this bo rel leggi pratica
- */
- public void setArtLeggeId(long artLeggeId);
-
- /**
- * Returns the selezionato of this bo rel leggi pratica.
- *
- * @return the selezionato of this bo rel leggi pratica
- */
- public boolean getSelezionato();
-
- /**
- * Returns true if this bo rel leggi pratica is selezionato.
- *
- * @return true if this bo rel leggi pratica is selezionato; false otherwise
- */
- public boolean isSelezionato();
-
- /**
- * Sets whether this bo rel leggi pratica is selezionato.
- *
- * @param selezionato the selezionato of this bo rel leggi pratica
- */
- public void setSelezionato(boolean selezionato);
-
- /**
- * Returns the valore of this bo rel leggi pratica.
- *
- * @return the valore of this bo rel leggi pratica
- */
- @AutoEscape
- public String getValore();
-
- /**
- * Sets the valore of this bo rel leggi pratica.
- *
- * @param valore the valore of this bo rel leggi pratica
- */
- public void setValore(String valore);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica boRelLeggiPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaSoap.java
deleted file mode 100644
index 7641e9c9..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaSoap.java
+++ /dev/null
@@ -1,134 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import it.tref.liferay.portos.portosimport.service.persistence.BoRelLeggiPraticaPK;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoRelLeggiPraticaSoap implements Serializable {
- public static BoRelLeggiPraticaSoap toSoapModel(BoRelLeggiPratica model) {
- BoRelLeggiPraticaSoap soapModel = new BoRelLeggiPraticaSoap();
-
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setArtLeggeId(model.getArtLeggeId());
- soapModel.setSelezionato(model.getSelezionato());
- soapModel.setValore(model.getValore());
-
- return soapModel;
- }
-
- public static BoRelLeggiPraticaSoap[] toSoapModels(
- BoRelLeggiPratica[] models) {
- BoRelLeggiPraticaSoap[] soapModels = new BoRelLeggiPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoRelLeggiPraticaSoap[][] toSoapModels(
- BoRelLeggiPratica[][] models) {
- BoRelLeggiPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoRelLeggiPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoRelLeggiPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoRelLeggiPraticaSoap[] toSoapModels(
- List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoRelLeggiPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoRelLeggiPraticaSoap[soapModels.size()]);
- }
-
- public BoRelLeggiPraticaSoap() {
- }
-
- public BoRelLeggiPraticaPK getPrimaryKey() {
- return new BoRelLeggiPraticaPK(_intPraticaId, _artLeggeId);
- }
-
- public void setPrimaryKey(BoRelLeggiPraticaPK pk) {
- setIntPraticaId(pk.intPraticaId);
- setArtLeggeId(pk.artLeggeId);
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public long getArtLeggeId() {
- return _artLeggeId;
- }
-
- public void setArtLeggeId(long artLeggeId) {
- _artLeggeId = artLeggeId;
- }
-
- public boolean getSelezionato() {
- return _selezionato;
- }
-
- public boolean isSelezionato() {
- return _selezionato;
- }
-
- public void setSelezionato(boolean selezionato) {
- _selezionato = selezionato;
- }
-
- public String getValore() {
- return _valore;
- }
-
- public void setValore(String valore) {
- _valore = valore;
- }
-
- private long _intPraticaId;
- private long _artLeggeId;
- private boolean _selezionato;
- private String _valore;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaWrapper.java
deleted file mode 100644
index 2c07ace8..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoRelLeggiPraticaWrapper.java
+++ /dev/null
@@ -1,341 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoRelLeggiPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoRelLeggiPratica
- * @generated
- */
-public class BoRelLeggiPraticaWrapper implements BoRelLeggiPratica,
- ModelWrapper {
- public BoRelLeggiPraticaWrapper(BoRelLeggiPratica boRelLeggiPratica) {
- _boRelLeggiPratica = boRelLeggiPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoRelLeggiPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoRelLeggiPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("artLeggeId", getArtLeggeId());
- attributes.put("selezionato", getSelezionato());
- attributes.put("valore", getValore());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long artLeggeId = (Long)attributes.get("artLeggeId");
-
- if (artLeggeId != null) {
- setArtLeggeId(artLeggeId);
- }
-
- Boolean selezionato = (Boolean)attributes.get("selezionato");
-
- if (selezionato != null) {
- setSelezionato(selezionato);
- }
-
- String valore = (String)attributes.get("valore");
-
- if (valore != null) {
- setValore(valore);
- }
- }
-
- /**
- * Returns the primary key of this bo rel leggi pratica.
- *
- * @return the primary key of this bo rel leggi pratica
- */
- @Override
- public it.tref.liferay.portos.portosimport.service.persistence.BoRelLeggiPraticaPK getPrimaryKey() {
- return _boRelLeggiPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo rel leggi pratica.
- *
- * @param primaryKey the primary key of this bo rel leggi pratica
- */
- @Override
- public void setPrimaryKey(
- it.tref.liferay.portos.portosimport.service.persistence.BoRelLeggiPraticaPK primaryKey) {
- _boRelLeggiPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the int pratica ID of this bo rel leggi pratica.
- *
- * @return the int pratica ID of this bo rel leggi pratica
- */
- @Override
- public long getIntPraticaId() {
- return _boRelLeggiPratica.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo rel leggi pratica.
- *
- * @param intPraticaId the int pratica ID of this bo rel leggi pratica
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boRelLeggiPratica.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the art legge ID of this bo rel leggi pratica.
- *
- * @return the art legge ID of this bo rel leggi pratica
- */
- @Override
- public long getArtLeggeId() {
- return _boRelLeggiPratica.getArtLeggeId();
- }
-
- /**
- * Sets the art legge ID of this bo rel leggi pratica.
- *
- * @param artLeggeId the art legge ID of this bo rel leggi pratica
- */
- @Override
- public void setArtLeggeId(long artLeggeId) {
- _boRelLeggiPratica.setArtLeggeId(artLeggeId);
- }
-
- /**
- * Returns the selezionato of this bo rel leggi pratica.
- *
- * @return the selezionato of this bo rel leggi pratica
- */
- @Override
- public boolean getSelezionato() {
- return _boRelLeggiPratica.getSelezionato();
- }
-
- /**
- * Returns true if this bo rel leggi pratica is selezionato.
- *
- * @return true if this bo rel leggi pratica is selezionato; false otherwise
- */
- @Override
- public boolean isSelezionato() {
- return _boRelLeggiPratica.isSelezionato();
- }
-
- /**
- * Sets whether this bo rel leggi pratica is selezionato.
- *
- * @param selezionato the selezionato of this bo rel leggi pratica
- */
- @Override
- public void setSelezionato(boolean selezionato) {
- _boRelLeggiPratica.setSelezionato(selezionato);
- }
-
- /**
- * Returns the valore of this bo rel leggi pratica.
- *
- * @return the valore of this bo rel leggi pratica
- */
- @Override
- public java.lang.String getValore() {
- return _boRelLeggiPratica.getValore();
- }
-
- /**
- * Sets the valore of this bo rel leggi pratica.
- *
- * @param valore the valore of this bo rel leggi pratica
- */
- @Override
- public void setValore(java.lang.String valore) {
- _boRelLeggiPratica.setValore(valore);
- }
-
- @Override
- public boolean isNew() {
- return _boRelLeggiPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boRelLeggiPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boRelLeggiPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boRelLeggiPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boRelLeggiPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boRelLeggiPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boRelLeggiPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boRelLeggiPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boRelLeggiPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boRelLeggiPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boRelLeggiPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoRelLeggiPraticaWrapper((BoRelLeggiPratica)_boRelLeggiPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica boRelLeggiPratica) {
- return _boRelLeggiPratica.compareTo(boRelLeggiPratica);
- }
-
- @Override
- public int hashCode() {
- return _boRelLeggiPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boRelLeggiPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica toEscapedModel() {
- return new BoRelLeggiPraticaWrapper(_boRelLeggiPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoRelLeggiPratica toUnescapedModel() {
- return new BoRelLeggiPraticaWrapper(_boRelLeggiPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boRelLeggiPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boRelLeggiPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boRelLeggiPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoRelLeggiPraticaWrapper)) {
- return false;
- }
-
- BoRelLeggiPraticaWrapper boRelLeggiPraticaWrapper = (BoRelLeggiPraticaWrapper)obj;
-
- if (Validator.equals(_boRelLeggiPratica,
- boRelLeggiPraticaWrapper._boRelLeggiPratica)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoRelLeggiPratica getWrappedBoRelLeggiPratica() {
- return _boRelLeggiPratica;
- }
-
- @Override
- public BoRelLeggiPratica getWrappedModel() {
- return _boRelLeggiPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boRelLeggiPratica.resetOriginalValues();
- }
-
- private BoRelLeggiPratica _boRelLeggiPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivo.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivo.java
deleted file mode 100644
index 18abbb14..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivo.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoSistemaCostruttivo service. Represents a row in the "gc_sistemacostruttivo" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSistemaCostruttivoModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoModelImpl
- * @generated
- */
-public interface BoSistemaCostruttivo extends BoSistemaCostruttivoModel,
- PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoClp.java
deleted file mode 100644
index 5cf86ee7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoClp.java
+++ /dev/null
@@ -1,635 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoSistemaCostruttivoLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoSistemaCostruttivoClp extends BaseModelImpl
- implements BoSistemaCostruttivo {
- public BoSistemaCostruttivoClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoSistemaCostruttivo.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSistemaCostruttivo.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _sistemaCostruttivoId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setSistemaCostruttivoId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _sistemaCostruttivoId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("sistemaCostruttivoId", getSistemaCostruttivoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("codSistemaCostruttivo", getCodSistemaCostruttivo());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long sistemaCostruttivoId = (Long)attributes.get("sistemaCostruttivoId");
-
- if (sistemaCostruttivoId != null) {
- setSistemaCostruttivoId(sistemaCostruttivoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- String codSistemaCostruttivo = (String)attributes.get(
- "codSistemaCostruttivo");
-
- if (codSistemaCostruttivo != null) {
- setCodSistemaCostruttivo(codSistemaCostruttivo);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getSistemaCostruttivoId() {
- return _sistemaCostruttivoId;
- }
-
- @Override
- public void setSistemaCostruttivoId(long sistemaCostruttivoId) {
- _sistemaCostruttivoId = sistemaCostruttivoId;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSistemaCostruttivoId",
- long.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel,
- sistemaCostruttivoId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodSistemaCostruttivo() {
- return _codSistemaCostruttivo;
- }
-
- @Override
- public void setCodSistemaCostruttivo(String codSistemaCostruttivo) {
- _codSistemaCostruttivo = codSistemaCostruttivo;
-
- if (_boSistemaCostruttivoRemoteModel != null) {
- try {
- Class> clazz = _boSistemaCostruttivoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodSistemaCostruttivo",
- String.class);
-
- method.invoke(_boSistemaCostruttivoRemoteModel,
- codSistemaCostruttivo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoSistemaCostruttivo.class.getName()));
- }
-
- public BaseModel> getBoSistemaCostruttivoRemoteModel() {
- return _boSistemaCostruttivoRemoteModel;
- }
-
- public void setBoSistemaCostruttivoRemoteModel(
- BaseModel> boSistemaCostruttivoRemoteModel) {
- _boSistemaCostruttivoRemoteModel = boSistemaCostruttivoRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boSistemaCostruttivoRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boSistemaCostruttivoRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoSistemaCostruttivoLocalServiceUtil.addBoSistemaCostruttivo(this);
- }
- else {
- BoSistemaCostruttivoLocalServiceUtil.updateBoSistemaCostruttivo(this);
- }
- }
-
- @Override
- public BoSistemaCostruttivo toEscapedModel() {
- return (BoSistemaCostruttivo)ProxyUtil.newProxyInstance(BoSistemaCostruttivo.class.getClassLoader(),
- new Class[] { BoSistemaCostruttivo.class },
- new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoSistemaCostruttivoClp clone = new BoSistemaCostruttivoClp();
-
- clone.setUuid(getUuid());
- clone.setSistemaCostruttivoId(getSistemaCostruttivoId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setCodSistemaCostruttivo(getCodSistemaCostruttivo());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoSistemaCostruttivo boSistemaCostruttivo) {
- long primaryKey = boSistemaCostruttivo.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSistemaCostruttivoClp)) {
- return false;
- }
-
- BoSistemaCostruttivoClp boSistemaCostruttivo = (BoSistemaCostruttivoClp)obj;
-
- long primaryKey = boSistemaCostruttivo.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(21);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", sistemaCostruttivoId=");
- sb.append(getSistemaCostruttivoId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", codSistemaCostruttivo=");
- sb.append(getCodSistemaCostruttivo());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(34);
-
- sb.append("");
- sb.append(
- "it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "sistemaCostruttivoId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "intPraticaId");
- sb.append(
- "codSistemaCostruttivo");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _sistemaCostruttivoId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private String _codSistemaCostruttivo;
- private BaseModel> _boSistemaCostruttivoRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoModel.java
deleted file mode 100644
index b1af2743..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoModel.java
+++ /dev/null
@@ -1,296 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoSistemaCostruttivo service. Represents a row in the "gc_sistemacostruttivo" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSistemaCostruttivo
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSistemaCostruttivoModelImpl
- * @generated
- */
-public interface BoSistemaCostruttivoModel extends BaseModel,
- StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo sistema costruttivo model instance should use the {@link BoSistemaCostruttivo} interface instead.
- */
-
- /**
- * Returns the primary key of this bo sistema costruttivo.
- *
- * @return the primary key of this bo sistema costruttivo
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo sistema costruttivo.
- *
- * @param primaryKey the primary key of this bo sistema costruttivo
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo sistema costruttivo.
- *
- * @return the uuid of this bo sistema costruttivo
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo sistema costruttivo.
- *
- * @param uuid the uuid of this bo sistema costruttivo
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the sistema costruttivo ID of this bo sistema costruttivo.
- *
- * @return the sistema costruttivo ID of this bo sistema costruttivo
- */
- public long getSistemaCostruttivoId();
-
- /**
- * Sets the sistema costruttivo ID of this bo sistema costruttivo.
- *
- * @param sistemaCostruttivoId the sistema costruttivo ID of this bo sistema costruttivo
- */
- public void setSistemaCostruttivoId(long sistemaCostruttivoId);
-
- /**
- * Returns the company ID of this bo sistema costruttivo.
- *
- * @return the company ID of this bo sistema costruttivo
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo sistema costruttivo.
- *
- * @param companyId the company ID of this bo sistema costruttivo
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo sistema costruttivo.
- *
- * @return the user ID of this bo sistema costruttivo
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo sistema costruttivo.
- *
- * @param userId the user ID of this bo sistema costruttivo
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo sistema costruttivo.
- *
- * @return the user uuid of this bo sistema costruttivo
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo sistema costruttivo.
- *
- * @param userUuid the user uuid of this bo sistema costruttivo
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo sistema costruttivo.
- *
- * @return the user name of this bo sistema costruttivo
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo sistema costruttivo.
- *
- * @param userName the user name of this bo sistema costruttivo
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo sistema costruttivo.
- *
- * @return the create date of this bo sistema costruttivo
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo sistema costruttivo.
- *
- * @param createDate the create date of this bo sistema costruttivo
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo sistema costruttivo.
- *
- * @return the modified date of this bo sistema costruttivo
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo sistema costruttivo.
- *
- * @param modifiedDate the modified date of this bo sistema costruttivo
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo sistema costruttivo.
- *
- * @return the group ID of this bo sistema costruttivo
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo sistema costruttivo.
- *
- * @param groupId the group ID of this bo sistema costruttivo
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the int pratica ID of this bo sistema costruttivo.
- *
- * @return the int pratica ID of this bo sistema costruttivo
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo sistema costruttivo.
- *
- * @param intPraticaId the int pratica ID of this bo sistema costruttivo
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the cod sistema costruttivo of this bo sistema costruttivo.
- *
- * @return the cod sistema costruttivo of this bo sistema costruttivo
- */
- @AutoEscape
- public String getCodSistemaCostruttivo();
-
- /**
- * Sets the cod sistema costruttivo of this bo sistema costruttivo.
- *
- * @param codSistemaCostruttivo the cod sistema costruttivo of this bo sistema costruttivo
- */
- public void setCodSistemaCostruttivo(String codSistemaCostruttivo);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo boSistemaCostruttivo);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoSoap.java
deleted file mode 100644
index fcbdcc8d..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoSoap.java
+++ /dev/null
@@ -1,189 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoSistemaCostruttivoSoap implements Serializable {
- public static BoSistemaCostruttivoSoap toSoapModel(
- BoSistemaCostruttivo model) {
- BoSistemaCostruttivoSoap soapModel = new BoSistemaCostruttivoSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setSistemaCostruttivoId(model.getSistemaCostruttivoId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setCodSistemaCostruttivo(model.getCodSistemaCostruttivo());
-
- return soapModel;
- }
-
- public static BoSistemaCostruttivoSoap[] toSoapModels(
- BoSistemaCostruttivo[] models) {
- BoSistemaCostruttivoSoap[] soapModels = new BoSistemaCostruttivoSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSistemaCostruttivoSoap[][] toSoapModels(
- BoSistemaCostruttivo[][] models) {
- BoSistemaCostruttivoSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoSistemaCostruttivoSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoSistemaCostruttivoSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSistemaCostruttivoSoap[] toSoapModels(
- List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoSistemaCostruttivo model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoSistemaCostruttivoSoap[soapModels.size()]);
- }
-
- public BoSistemaCostruttivoSoap() {
- }
-
- public long getPrimaryKey() {
- return _sistemaCostruttivoId;
- }
-
- public void setPrimaryKey(long pk) {
- setSistemaCostruttivoId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getSistemaCostruttivoId() {
- return _sistemaCostruttivoId;
- }
-
- public void setSistemaCostruttivoId(long sistemaCostruttivoId) {
- _sistemaCostruttivoId = sistemaCostruttivoId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public String getCodSistemaCostruttivo() {
- return _codSistemaCostruttivo;
- }
-
- public void setCodSistemaCostruttivo(String codSistemaCostruttivo) {
- _codSistemaCostruttivo = codSistemaCostruttivo;
- }
-
- private String _uuid;
- private long _sistemaCostruttivoId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private String _codSistemaCostruttivo;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoWrapper.java
deleted file mode 100644
index ddcf4372..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSistemaCostruttivoWrapper.java
+++ /dev/null
@@ -1,523 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoSistemaCostruttivo}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSistemaCostruttivo
- * @generated
- */
-public class BoSistemaCostruttivoWrapper implements BoSistemaCostruttivo,
- ModelWrapper {
- public BoSistemaCostruttivoWrapper(
- BoSistemaCostruttivo boSistemaCostruttivo) {
- _boSistemaCostruttivo = boSistemaCostruttivo;
- }
-
- @Override
- public Class> getModelClass() {
- return BoSistemaCostruttivo.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSistemaCostruttivo.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("sistemaCostruttivoId", getSistemaCostruttivoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("codSistemaCostruttivo", getCodSistemaCostruttivo());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long sistemaCostruttivoId = (Long)attributes.get("sistemaCostruttivoId");
-
- if (sistemaCostruttivoId != null) {
- setSistemaCostruttivoId(sistemaCostruttivoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- String codSistemaCostruttivo = (String)attributes.get(
- "codSistemaCostruttivo");
-
- if (codSistemaCostruttivo != null) {
- setCodSistemaCostruttivo(codSistemaCostruttivo);
- }
- }
-
- /**
- * Returns the primary key of this bo sistema costruttivo.
- *
- * @return the primary key of this bo sistema costruttivo
- */
- @Override
- public long getPrimaryKey() {
- return _boSistemaCostruttivo.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo sistema costruttivo.
- *
- * @param primaryKey the primary key of this bo sistema costruttivo
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boSistemaCostruttivo.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo sistema costruttivo.
- *
- * @return the uuid of this bo sistema costruttivo
- */
- @Override
- public java.lang.String getUuid() {
- return _boSistemaCostruttivo.getUuid();
- }
-
- /**
- * Sets the uuid of this bo sistema costruttivo.
- *
- * @param uuid the uuid of this bo sistema costruttivo
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boSistemaCostruttivo.setUuid(uuid);
- }
-
- /**
- * Returns the sistema costruttivo ID of this bo sistema costruttivo.
- *
- * @return the sistema costruttivo ID of this bo sistema costruttivo
- */
- @Override
- public long getSistemaCostruttivoId() {
- return _boSistemaCostruttivo.getSistemaCostruttivoId();
- }
-
- /**
- * Sets the sistema costruttivo ID of this bo sistema costruttivo.
- *
- * @param sistemaCostruttivoId the sistema costruttivo ID of this bo sistema costruttivo
- */
- @Override
- public void setSistemaCostruttivoId(long sistemaCostruttivoId) {
- _boSistemaCostruttivo.setSistemaCostruttivoId(sistemaCostruttivoId);
- }
-
- /**
- * Returns the company ID of this bo sistema costruttivo.
- *
- * @return the company ID of this bo sistema costruttivo
- */
- @Override
- public long getCompanyId() {
- return _boSistemaCostruttivo.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo sistema costruttivo.
- *
- * @param companyId the company ID of this bo sistema costruttivo
- */
- @Override
- public void setCompanyId(long companyId) {
- _boSistemaCostruttivo.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo sistema costruttivo.
- *
- * @return the user ID of this bo sistema costruttivo
- */
- @Override
- public long getUserId() {
- return _boSistemaCostruttivo.getUserId();
- }
-
- /**
- * Sets the user ID of this bo sistema costruttivo.
- *
- * @param userId the user ID of this bo sistema costruttivo
- */
- @Override
- public void setUserId(long userId) {
- _boSistemaCostruttivo.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo sistema costruttivo.
- *
- * @return the user uuid of this bo sistema costruttivo
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boSistemaCostruttivo.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo sistema costruttivo.
- *
- * @param userUuid the user uuid of this bo sistema costruttivo
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boSistemaCostruttivo.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo sistema costruttivo.
- *
- * @return the user name of this bo sistema costruttivo
- */
- @Override
- public java.lang.String getUserName() {
- return _boSistemaCostruttivo.getUserName();
- }
-
- /**
- * Sets the user name of this bo sistema costruttivo.
- *
- * @param userName the user name of this bo sistema costruttivo
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boSistemaCostruttivo.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo sistema costruttivo.
- *
- * @return the create date of this bo sistema costruttivo
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boSistemaCostruttivo.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo sistema costruttivo.
- *
- * @param createDate the create date of this bo sistema costruttivo
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boSistemaCostruttivo.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo sistema costruttivo.
- *
- * @return the modified date of this bo sistema costruttivo
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boSistemaCostruttivo.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo sistema costruttivo.
- *
- * @param modifiedDate the modified date of this bo sistema costruttivo
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boSistemaCostruttivo.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo sistema costruttivo.
- *
- * @return the group ID of this bo sistema costruttivo
- */
- @Override
- public long getGroupId() {
- return _boSistemaCostruttivo.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo sistema costruttivo.
- *
- * @param groupId the group ID of this bo sistema costruttivo
- */
- @Override
- public void setGroupId(long groupId) {
- _boSistemaCostruttivo.setGroupId(groupId);
- }
-
- /**
- * Returns the int pratica ID of this bo sistema costruttivo.
- *
- * @return the int pratica ID of this bo sistema costruttivo
- */
- @Override
- public long getIntPraticaId() {
- return _boSistemaCostruttivo.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo sistema costruttivo.
- *
- * @param intPraticaId the int pratica ID of this bo sistema costruttivo
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boSistemaCostruttivo.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the cod sistema costruttivo of this bo sistema costruttivo.
- *
- * @return the cod sistema costruttivo of this bo sistema costruttivo
- */
- @Override
- public java.lang.String getCodSistemaCostruttivo() {
- return _boSistemaCostruttivo.getCodSistemaCostruttivo();
- }
-
- /**
- * Sets the cod sistema costruttivo of this bo sistema costruttivo.
- *
- * @param codSistemaCostruttivo the cod sistema costruttivo of this bo sistema costruttivo
- */
- @Override
- public void setCodSistemaCostruttivo(java.lang.String codSistemaCostruttivo) {
- _boSistemaCostruttivo.setCodSistemaCostruttivo(codSistemaCostruttivo);
- }
-
- @Override
- public boolean isNew() {
- return _boSistemaCostruttivo.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boSistemaCostruttivo.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boSistemaCostruttivo.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boSistemaCostruttivo.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boSistemaCostruttivo.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boSistemaCostruttivo.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boSistemaCostruttivo.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boSistemaCostruttivo.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boSistemaCostruttivo.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boSistemaCostruttivo.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boSistemaCostruttivo.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoSistemaCostruttivoWrapper((BoSistemaCostruttivo)_boSistemaCostruttivo.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo boSistemaCostruttivo) {
- return _boSistemaCostruttivo.compareTo(boSistemaCostruttivo);
- }
-
- @Override
- public int hashCode() {
- return _boSistemaCostruttivo.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boSistemaCostruttivo.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo toEscapedModel() {
- return new BoSistemaCostruttivoWrapper(_boSistemaCostruttivo.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSistemaCostruttivo toUnescapedModel() {
- return new BoSistemaCostruttivoWrapper(_boSistemaCostruttivo.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boSistemaCostruttivo.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boSistemaCostruttivo.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boSistemaCostruttivo.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSistemaCostruttivoWrapper)) {
- return false;
- }
-
- BoSistemaCostruttivoWrapper boSistemaCostruttivoWrapper = (BoSistemaCostruttivoWrapper)obj;
-
- if (Validator.equals(_boSistemaCostruttivo,
- boSistemaCostruttivoWrapper._boSistemaCostruttivo)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boSistemaCostruttivo.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoSistemaCostruttivo getWrappedBoSistemaCostruttivo() {
- return _boSistemaCostruttivo;
- }
-
- @Override
- public BoSistemaCostruttivo getWrappedModel() {
- return _boSistemaCostruttivo;
- }
-
- @Override
- public void resetOriginalValues() {
- _boSistemaCostruttivo.resetOriginalValues();
- }
-
- private BoSistemaCostruttivo _boSistemaCostruttivo;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggetto.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggetto.java
deleted file mode 100644
index 01feffb5..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggetto.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoSoggetto service. Represents a row in the "gc_soggetto" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSoggettoModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSoggettoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSoggettoModelImpl
- * @generated
- */
-public interface BoSoggetto extends BoSoggettoModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoSoggettoImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoClp.java
deleted file mode 100644
index e78e8904..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoClp.java
+++ /dev/null
@@ -1,2055 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoSoggettoLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoSoggettoClp extends BaseModelImpl
- implements BoSoggetto {
- public BoSoggettoClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoSoggetto.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSoggetto.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _soggettoId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setSoggettoId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _soggettoId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("soggettoId", getSoggettoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("nome", getNome());
- attributes.put("cognome", getCognome());
- attributes.put("codiceFiscale", getCodiceFiscale());
- attributes.put("codiceFiscaleDelegato", getCodiceFiscaleDelegato());
- attributes.put("dataNascita", getDataNascita());
- attributes.put("comuneNascita", getComuneNascita());
- attributes.put("comuneDomicilio", getComuneDomicilio());
- attributes.put("provinciaDomicilio", getProvinciaDomicilio());
- attributes.put("viaDomicilio", getViaDomicilio());
- attributes.put("numeroCivicoDomicilio", getNumeroCivicoDomicilio());
- attributes.put("capDomicilio", getCapDomicilio());
- attributes.put("domicilioExtra", getDomicilioExtra());
- attributes.put("comune", getComune());
- attributes.put("provincia", getProvincia());
- attributes.put("via", getVia());
- attributes.put("numeroCivico", getNumeroCivico());
- attributes.put("cap", getCap());
- attributes.put("denominazione", getDenominazione());
- attributes.put("sedeLegale", getSedeLegale());
- attributes.put("legaleRap", getLegaleRap());
- attributes.put("dataNascitaRap", getDataNascitaRap());
- attributes.put("comuneNascitaRap", getComuneNascitaRap());
- attributes.put("viaRap", getViaRap());
- attributes.put("numeroCivicoRap", getNumeroCivicoRap());
- attributes.put("capRap", getCapRap());
- attributes.put("provinciaRap", getProvinciaRap());
- attributes.put("comuneRap", getComuneRap());
- attributes.put("albo", getAlbo());
- attributes.put("regAlbo", getRegAlbo());
- attributes.put("provAlbo", getProvAlbo());
- attributes.put("numIscrAlbo", getNumIscrAlbo());
- attributes.put("telefono", getTelefono());
- attributes.put("fax", getFax());
- attributes.put("email", getEmail());
- attributes.put("tipologiaSoggetto", getTipologiaSoggetto());
- attributes.put("tipologiaProfessione", getTipologiaProfessione());
- attributes.put("aggiuntivo", getAggiuntivo());
- attributes.put("sostituito", getSostituito());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long soggettoId = (Long)attributes.get("soggettoId");
-
- if (soggettoId != null) {
- setSoggettoId(soggettoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String nome = (String)attributes.get("nome");
-
- if (nome != null) {
- setNome(nome);
- }
-
- String cognome = (String)attributes.get("cognome");
-
- if (cognome != null) {
- setCognome(cognome);
- }
-
- String codiceFiscale = (String)attributes.get("codiceFiscale");
-
- if (codiceFiscale != null) {
- setCodiceFiscale(codiceFiscale);
- }
-
- String codiceFiscaleDelegato = (String)attributes.get(
- "codiceFiscaleDelegato");
-
- if (codiceFiscaleDelegato != null) {
- setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- Date dataNascita = (Date)attributes.get("dataNascita");
-
- if (dataNascita != null) {
- setDataNascita(dataNascita);
- }
-
- String comuneNascita = (String)attributes.get("comuneNascita");
-
- if (comuneNascita != null) {
- setComuneNascita(comuneNascita);
- }
-
- String comuneDomicilio = (String)attributes.get("comuneDomicilio");
-
- if (comuneDomicilio != null) {
- setComuneDomicilio(comuneDomicilio);
- }
-
- String provinciaDomicilio = (String)attributes.get("provinciaDomicilio");
-
- if (provinciaDomicilio != null) {
- setProvinciaDomicilio(provinciaDomicilio);
- }
-
- String viaDomicilio = (String)attributes.get("viaDomicilio");
-
- if (viaDomicilio != null) {
- setViaDomicilio(viaDomicilio);
- }
-
- String numeroCivicoDomicilio = (String)attributes.get(
- "numeroCivicoDomicilio");
-
- if (numeroCivicoDomicilio != null) {
- setNumeroCivicoDomicilio(numeroCivicoDomicilio);
- }
-
- String capDomicilio = (String)attributes.get("capDomicilio");
-
- if (capDomicilio != null) {
- setCapDomicilio(capDomicilio);
- }
-
- String domicilioExtra = (String)attributes.get("domicilioExtra");
-
- if (domicilioExtra != null) {
- setDomicilioExtra(domicilioExtra);
- }
-
- String comune = (String)attributes.get("comune");
-
- if (comune != null) {
- setComune(comune);
- }
-
- String provincia = (String)attributes.get("provincia");
-
- if (provincia != null) {
- setProvincia(provincia);
- }
-
- String via = (String)attributes.get("via");
-
- if (via != null) {
- setVia(via);
- }
-
- String numeroCivico = (String)attributes.get("numeroCivico");
-
- if (numeroCivico != null) {
- setNumeroCivico(numeroCivico);
- }
-
- String cap = (String)attributes.get("cap");
-
- if (cap != null) {
- setCap(cap);
- }
-
- String denominazione = (String)attributes.get("denominazione");
-
- if (denominazione != null) {
- setDenominazione(denominazione);
- }
-
- String sedeLegale = (String)attributes.get("sedeLegale");
-
- if (sedeLegale != null) {
- setSedeLegale(sedeLegale);
- }
-
- String legaleRap = (String)attributes.get("legaleRap");
-
- if (legaleRap != null) {
- setLegaleRap(legaleRap);
- }
-
- Date dataNascitaRap = (Date)attributes.get("dataNascitaRap");
-
- if (dataNascitaRap != null) {
- setDataNascitaRap(dataNascitaRap);
- }
-
- String comuneNascitaRap = (String)attributes.get("comuneNascitaRap");
-
- if (comuneNascitaRap != null) {
- setComuneNascitaRap(comuneNascitaRap);
- }
-
- String viaRap = (String)attributes.get("viaRap");
-
- if (viaRap != null) {
- setViaRap(viaRap);
- }
-
- String numeroCivicoRap = (String)attributes.get("numeroCivicoRap");
-
- if (numeroCivicoRap != null) {
- setNumeroCivicoRap(numeroCivicoRap);
- }
-
- String capRap = (String)attributes.get("capRap");
-
- if (capRap != null) {
- setCapRap(capRap);
- }
-
- String provinciaRap = (String)attributes.get("provinciaRap");
-
- if (provinciaRap != null) {
- setProvinciaRap(provinciaRap);
- }
-
- String comuneRap = (String)attributes.get("comuneRap");
-
- if (comuneRap != null) {
- setComuneRap(comuneRap);
- }
-
- String albo = (String)attributes.get("albo");
-
- if (albo != null) {
- setAlbo(albo);
- }
-
- String regAlbo = (String)attributes.get("regAlbo");
-
- if (regAlbo != null) {
- setRegAlbo(regAlbo);
- }
-
- String provAlbo = (String)attributes.get("provAlbo");
-
- if (provAlbo != null) {
- setProvAlbo(provAlbo);
- }
-
- String numIscrAlbo = (String)attributes.get("numIscrAlbo");
-
- if (numIscrAlbo != null) {
- setNumIscrAlbo(numIscrAlbo);
- }
-
- String telefono = (String)attributes.get("telefono");
-
- if (telefono != null) {
- setTelefono(telefono);
- }
-
- String fax = (String)attributes.get("fax");
-
- if (fax != null) {
- setFax(fax);
- }
-
- String email = (String)attributes.get("email");
-
- if (email != null) {
- setEmail(email);
- }
-
- String tipologiaSoggetto = (String)attributes.get("tipologiaSoggetto");
-
- if (tipologiaSoggetto != null) {
- setTipologiaSoggetto(tipologiaSoggetto);
- }
-
- String tipologiaProfessione = (String)attributes.get(
- "tipologiaProfessione");
-
- if (tipologiaProfessione != null) {
- setTipologiaProfessione(tipologiaProfessione);
- }
-
- Boolean aggiuntivo = (Boolean)attributes.get("aggiuntivo");
-
- if (aggiuntivo != null) {
- setAggiuntivo(aggiuntivo);
- }
-
- Boolean sostituito = (Boolean)attributes.get("sostituito");
-
- if (sostituito != null) {
- setSostituito(sostituito);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boSoggettoRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getSoggettoId() {
- return _soggettoId;
- }
-
- @Override
- public void setSoggettoId(long soggettoId) {
- _soggettoId = soggettoId;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSoggettoId", long.class);
-
- method.invoke(_boSoggettoRemoteModel, soggettoId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boSoggettoRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boSoggettoRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boSoggettoRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boSoggettoRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boSoggettoRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boSoggettoRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boSoggettoRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNome() {
- return _nome;
- }
-
- @Override
- public void setNome(String nome) {
- _nome = nome;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNome", String.class);
-
- method.invoke(_boSoggettoRemoteModel, nome);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCognome() {
- return _cognome;
- }
-
- @Override
- public void setCognome(String cognome) {
- _cognome = cognome;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCognome", String.class);
-
- method.invoke(_boSoggettoRemoteModel, cognome);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceFiscale() {
- return _codiceFiscale;
- }
-
- @Override
- public void setCodiceFiscale(String codiceFiscale) {
- _codiceFiscale = codiceFiscale;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceFiscale", String.class);
-
- method.invoke(_boSoggettoRemoteModel, codiceFiscale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceFiscaleDelegato() {
- return _codiceFiscaleDelegato;
- }
-
- @Override
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato) {
- _codiceFiscaleDelegato = codiceFiscaleDelegato;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceFiscaleDelegato",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, codiceFiscaleDelegato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataNascita() {
- return _dataNascita;
- }
-
- @Override
- public void setDataNascita(Date dataNascita) {
- _dataNascita = dataNascita;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataNascita", Date.class);
-
- method.invoke(_boSoggettoRemoteModel, dataNascita);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComuneNascita() {
- return _comuneNascita;
- }
-
- @Override
- public void setComuneNascita(String comuneNascita) {
- _comuneNascita = comuneNascita;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneNascita", String.class);
-
- method.invoke(_boSoggettoRemoteModel, comuneNascita);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComuneDomicilio() {
- return _comuneDomicilio;
- }
-
- @Override
- public void setComuneDomicilio(String comuneDomicilio) {
- _comuneDomicilio = comuneDomicilio;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneDomicilio",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, comuneDomicilio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProvinciaDomicilio() {
- return _provinciaDomicilio;
- }
-
- @Override
- public void setProvinciaDomicilio(String provinciaDomicilio) {
- _provinciaDomicilio = provinciaDomicilio;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvinciaDomicilio",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, provinciaDomicilio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getViaDomicilio() {
- return _viaDomicilio;
- }
-
- @Override
- public void setViaDomicilio(String viaDomicilio) {
- _viaDomicilio = viaDomicilio;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setViaDomicilio", String.class);
-
- method.invoke(_boSoggettoRemoteModel, viaDomicilio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNumeroCivicoDomicilio() {
- return _numeroCivicoDomicilio;
- }
-
- @Override
- public void setNumeroCivicoDomicilio(String numeroCivicoDomicilio) {
- _numeroCivicoDomicilio = numeroCivicoDomicilio;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumeroCivicoDomicilio",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, numeroCivicoDomicilio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCapDomicilio() {
- return _capDomicilio;
- }
-
- @Override
- public void setCapDomicilio(String capDomicilio) {
- _capDomicilio = capDomicilio;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCapDomicilio", String.class);
-
- method.invoke(_boSoggettoRemoteModel, capDomicilio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDomicilioExtra() {
- return _domicilioExtra;
- }
-
- @Override
- public void setDomicilioExtra(String domicilioExtra) {
- _domicilioExtra = domicilioExtra;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDomicilioExtra",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, domicilioExtra);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComune() {
- return _comune;
- }
-
- @Override
- public void setComune(String comune) {
- _comune = comune;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComune", String.class);
-
- method.invoke(_boSoggettoRemoteModel, comune);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProvincia() {
- return _provincia;
- }
-
- @Override
- public void setProvincia(String provincia) {
- _provincia = provincia;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvincia", String.class);
-
- method.invoke(_boSoggettoRemoteModel, provincia);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getVia() {
- return _via;
- }
-
- @Override
- public void setVia(String via) {
- _via = via;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setVia", String.class);
-
- method.invoke(_boSoggettoRemoteModel, via);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNumeroCivico() {
- return _numeroCivico;
- }
-
- @Override
- public void setNumeroCivico(String numeroCivico) {
- _numeroCivico = numeroCivico;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumeroCivico", String.class);
-
- method.invoke(_boSoggettoRemoteModel, numeroCivico);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCap() {
- return _cap;
- }
-
- @Override
- public void setCap(String cap) {
- _cap = cap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, cap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDenominazione() {
- return _denominazione;
- }
-
- @Override
- public void setDenominazione(String denominazione) {
- _denominazione = denominazione;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDenominazione", String.class);
-
- method.invoke(_boSoggettoRemoteModel, denominazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getSedeLegale() {
- return _sedeLegale;
- }
-
- @Override
- public void setSedeLegale(String sedeLegale) {
- _sedeLegale = sedeLegale;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSedeLegale", String.class);
-
- method.invoke(_boSoggettoRemoteModel, sedeLegale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getLegaleRap() {
- return _legaleRap;
- }
-
- @Override
- public void setLegaleRap(String legaleRap) {
- _legaleRap = legaleRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setLegaleRap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, legaleRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDataNascitaRap() {
- return _dataNascitaRap;
- }
-
- @Override
- public void setDataNascitaRap(Date dataNascitaRap) {
- _dataNascitaRap = dataNascitaRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDataNascitaRap", Date.class);
-
- method.invoke(_boSoggettoRemoteModel, dataNascitaRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComuneNascitaRap() {
- return _comuneNascitaRap;
- }
-
- @Override
- public void setComuneNascitaRap(String comuneNascitaRap) {
- _comuneNascitaRap = comuneNascitaRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneNascitaRap",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, comuneNascitaRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getViaRap() {
- return _viaRap;
- }
-
- @Override
- public void setViaRap(String viaRap) {
- _viaRap = viaRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setViaRap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, viaRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNumeroCivicoRap() {
- return _numeroCivicoRap;
- }
-
- @Override
- public void setNumeroCivicoRap(String numeroCivicoRap) {
- _numeroCivicoRap = numeroCivicoRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumeroCivicoRap",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, numeroCivicoRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCapRap() {
- return _capRap;
- }
-
- @Override
- public void setCapRap(String capRap) {
- _capRap = capRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCapRap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, capRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProvinciaRap() {
- return _provinciaRap;
- }
-
- @Override
- public void setProvinciaRap(String provinciaRap) {
- _provinciaRap = provinciaRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvinciaRap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, provinciaRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComuneRap() {
- return _comuneRap;
- }
-
- @Override
- public void setComuneRap(String comuneRap) {
- _comuneRap = comuneRap;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneRap", String.class);
-
- method.invoke(_boSoggettoRemoteModel, comuneRap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getAlbo() {
- return _albo;
- }
-
- @Override
- public void setAlbo(String albo) {
- _albo = albo;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAlbo", String.class);
-
- method.invoke(_boSoggettoRemoteModel, albo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getRegAlbo() {
- return _regAlbo;
- }
-
- @Override
- public void setRegAlbo(String regAlbo) {
- _regAlbo = regAlbo;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setRegAlbo", String.class);
-
- method.invoke(_boSoggettoRemoteModel, regAlbo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProvAlbo() {
- return _provAlbo;
- }
-
- @Override
- public void setProvAlbo(String provAlbo) {
- _provAlbo = provAlbo;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvAlbo", String.class);
-
- method.invoke(_boSoggettoRemoteModel, provAlbo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNumIscrAlbo() {
- return _numIscrAlbo;
- }
-
- @Override
- public void setNumIscrAlbo(String numIscrAlbo) {
- _numIscrAlbo = numIscrAlbo;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumIscrAlbo", String.class);
-
- method.invoke(_boSoggettoRemoteModel, numIscrAlbo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTelefono() {
- return _telefono;
- }
-
- @Override
- public void setTelefono(String telefono) {
- _telefono = telefono;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTelefono", String.class);
-
- method.invoke(_boSoggettoRemoteModel, telefono);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getFax() {
- return _fax;
- }
-
- @Override
- public void setFax(String fax) {
- _fax = fax;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFax", String.class);
-
- method.invoke(_boSoggettoRemoteModel, fax);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getEmail() {
- return _email;
- }
-
- @Override
- public void setEmail(String email) {
- _email = email;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEmail", String.class);
-
- method.invoke(_boSoggettoRemoteModel, email);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipologiaSoggetto() {
- return _tipologiaSoggetto;
- }
-
- @Override
- public void setTipologiaSoggetto(String tipologiaSoggetto) {
- _tipologiaSoggetto = tipologiaSoggetto;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipologiaSoggetto",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, tipologiaSoggetto);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipologiaProfessione() {
- return _tipologiaProfessione;
- }
-
- @Override
- public void setTipologiaProfessione(String tipologiaProfessione) {
- _tipologiaProfessione = tipologiaProfessione;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipologiaProfessione",
- String.class);
-
- method.invoke(_boSoggettoRemoteModel, tipologiaProfessione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getAggiuntivo() {
- return _aggiuntivo;
- }
-
- @Override
- public boolean isAggiuntivo() {
- return _aggiuntivo;
- }
-
- @Override
- public void setAggiuntivo(boolean aggiuntivo) {
- _aggiuntivo = aggiuntivo;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAggiuntivo", boolean.class);
-
- method.invoke(_boSoggettoRemoteModel, aggiuntivo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getSostituito() {
- return _sostituito;
- }
-
- @Override
- public boolean isSostituito() {
- return _sostituito;
- }
-
- @Override
- public void setSostituito(boolean sostituito) {
- _sostituito = sostituito;
-
- if (_boSoggettoRemoteModel != null) {
- try {
- Class> clazz = _boSoggettoRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSostituito", boolean.class);
-
- method.invoke(_boSoggettoRemoteModel, sostituito);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoSoggetto.class.getName()));
- }
-
- public BaseModel> getBoSoggettoRemoteModel() {
- return _boSoggettoRemoteModel;
- }
-
- public void setBoSoggettoRemoteModel(BaseModel> boSoggettoRemoteModel) {
- _boSoggettoRemoteModel = boSoggettoRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boSoggettoRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boSoggettoRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoSoggettoLocalServiceUtil.addBoSoggetto(this);
- }
- else {
- BoSoggettoLocalServiceUtil.updateBoSoggetto(this);
- }
- }
-
- @Override
- public BoSoggetto toEscapedModel() {
- return (BoSoggetto)ProxyUtil.newProxyInstance(BoSoggetto.class.getClassLoader(),
- new Class[] { BoSoggetto.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoSoggettoClp clone = new BoSoggettoClp();
-
- clone.setUuid(getUuid());
- clone.setSoggettoId(getSoggettoId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setNome(getNome());
- clone.setCognome(getCognome());
- clone.setCodiceFiscale(getCodiceFiscale());
- clone.setCodiceFiscaleDelegato(getCodiceFiscaleDelegato());
- clone.setDataNascita(getDataNascita());
- clone.setComuneNascita(getComuneNascita());
- clone.setComuneDomicilio(getComuneDomicilio());
- clone.setProvinciaDomicilio(getProvinciaDomicilio());
- clone.setViaDomicilio(getViaDomicilio());
- clone.setNumeroCivicoDomicilio(getNumeroCivicoDomicilio());
- clone.setCapDomicilio(getCapDomicilio());
- clone.setDomicilioExtra(getDomicilioExtra());
- clone.setComune(getComune());
- clone.setProvincia(getProvincia());
- clone.setVia(getVia());
- clone.setNumeroCivico(getNumeroCivico());
- clone.setCap(getCap());
- clone.setDenominazione(getDenominazione());
- clone.setSedeLegale(getSedeLegale());
- clone.setLegaleRap(getLegaleRap());
- clone.setDataNascitaRap(getDataNascitaRap());
- clone.setComuneNascitaRap(getComuneNascitaRap());
- clone.setViaRap(getViaRap());
- clone.setNumeroCivicoRap(getNumeroCivicoRap());
- clone.setCapRap(getCapRap());
- clone.setProvinciaRap(getProvinciaRap());
- clone.setComuneRap(getComuneRap());
- clone.setAlbo(getAlbo());
- clone.setRegAlbo(getRegAlbo());
- clone.setProvAlbo(getProvAlbo());
- clone.setNumIscrAlbo(getNumIscrAlbo());
- clone.setTelefono(getTelefono());
- clone.setFax(getFax());
- clone.setEmail(getEmail());
- clone.setTipologiaSoggetto(getTipologiaSoggetto());
- clone.setTipologiaProfessione(getTipologiaProfessione());
- clone.setAggiuntivo(getAggiuntivo());
- clone.setSostituito(getSostituito());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoSoggetto boSoggetto) {
- long primaryKey = boSoggetto.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSoggettoClp)) {
- return false;
- }
-
- BoSoggettoClp boSoggetto = (BoSoggettoClp)obj;
-
- long primaryKey = boSoggetto.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(95);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", soggettoId=");
- sb.append(getSoggettoId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", nome=");
- sb.append(getNome());
- sb.append(", cognome=");
- sb.append(getCognome());
- sb.append(", codiceFiscale=");
- sb.append(getCodiceFiscale());
- sb.append(", codiceFiscaleDelegato=");
- sb.append(getCodiceFiscaleDelegato());
- sb.append(", dataNascita=");
- sb.append(getDataNascita());
- sb.append(", comuneNascita=");
- sb.append(getComuneNascita());
- sb.append(", comuneDomicilio=");
- sb.append(getComuneDomicilio());
- sb.append(", provinciaDomicilio=");
- sb.append(getProvinciaDomicilio());
- sb.append(", viaDomicilio=");
- sb.append(getViaDomicilio());
- sb.append(", numeroCivicoDomicilio=");
- sb.append(getNumeroCivicoDomicilio());
- sb.append(", capDomicilio=");
- sb.append(getCapDomicilio());
- sb.append(", domicilioExtra=");
- sb.append(getDomicilioExtra());
- sb.append(", comune=");
- sb.append(getComune());
- sb.append(", provincia=");
- sb.append(getProvincia());
- sb.append(", via=");
- sb.append(getVia());
- sb.append(", numeroCivico=");
- sb.append(getNumeroCivico());
- sb.append(", cap=");
- sb.append(getCap());
- sb.append(", denominazione=");
- sb.append(getDenominazione());
- sb.append(", sedeLegale=");
- sb.append(getSedeLegale());
- sb.append(", legaleRap=");
- sb.append(getLegaleRap());
- sb.append(", dataNascitaRap=");
- sb.append(getDataNascitaRap());
- sb.append(", comuneNascitaRap=");
- sb.append(getComuneNascitaRap());
- sb.append(", viaRap=");
- sb.append(getViaRap());
- sb.append(", numeroCivicoRap=");
- sb.append(getNumeroCivicoRap());
- sb.append(", capRap=");
- sb.append(getCapRap());
- sb.append(", provinciaRap=");
- sb.append(getProvinciaRap());
- sb.append(", comuneRap=");
- sb.append(getComuneRap());
- sb.append(", albo=");
- sb.append(getAlbo());
- sb.append(", regAlbo=");
- sb.append(getRegAlbo());
- sb.append(", provAlbo=");
- sb.append(getProvAlbo());
- sb.append(", numIscrAlbo=");
- sb.append(getNumIscrAlbo());
- sb.append(", telefono=");
- sb.append(getTelefono());
- sb.append(", fax=");
- sb.append(getFax());
- sb.append(", email=");
- sb.append(getEmail());
- sb.append(", tipologiaSoggetto=");
- sb.append(getTipologiaSoggetto());
- sb.append(", tipologiaProfessione=");
- sb.append(getTipologiaProfessione());
- sb.append(", aggiuntivo=");
- sb.append(getAggiuntivo());
- sb.append(", sostituito=");
- sb.append(getSostituito());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(145);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoSoggetto");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "soggettoId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "dettPraticaId");
- sb.append(
- "nome");
- sb.append(
- "cognome");
- sb.append(
- "codiceFiscale");
- sb.append(
- "codiceFiscaleDelegato");
- sb.append(
- "dataNascita");
- sb.append(
- "comuneNascita");
- sb.append(
- "comuneDomicilio");
- sb.append(
- "provinciaDomicilio");
- sb.append(
- "viaDomicilio");
- sb.append(
- "numeroCivicoDomicilio");
- sb.append(
- "capDomicilio");
- sb.append(
- "domicilioExtra");
- sb.append(
- "comune");
- sb.append(
- "provincia");
- sb.append(
- "via");
- sb.append(
- "numeroCivico");
- sb.append(
- "cap");
- sb.append(
- "denominazione");
- sb.append(
- "sedeLegale");
- sb.append(
- "legaleRap");
- sb.append(
- "dataNascitaRap");
- sb.append(
- "comuneNascitaRap");
- sb.append(
- "viaRap");
- sb.append(
- "numeroCivicoRap");
- sb.append(
- "capRap");
- sb.append(
- "provinciaRap");
- sb.append(
- "comuneRap");
- sb.append(
- "albo");
- sb.append(
- "regAlbo");
- sb.append(
- "provAlbo");
- sb.append(
- "numIscrAlbo");
- sb.append(
- "telefono");
- sb.append(
- "fax");
- sb.append(
- "email");
- sb.append(
- "tipologiaSoggetto");
- sb.append(
- "tipologiaProfessione");
- sb.append(
- "aggiuntivo");
- sb.append(
- "sostituito");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _soggettoId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private String _nome;
- private String _cognome;
- private String _codiceFiscale;
- private String _codiceFiscaleDelegato;
- private Date _dataNascita;
- private String _comuneNascita;
- private String _comuneDomicilio;
- private String _provinciaDomicilio;
- private String _viaDomicilio;
- private String _numeroCivicoDomicilio;
- private String _capDomicilio;
- private String _domicilioExtra;
- private String _comune;
- private String _provincia;
- private String _via;
- private String _numeroCivico;
- private String _cap;
- private String _denominazione;
- private String _sedeLegale;
- private String _legaleRap;
- private Date _dataNascitaRap;
- private String _comuneNascitaRap;
- private String _viaRap;
- private String _numeroCivicoRap;
- private String _capRap;
- private String _provinciaRap;
- private String _comuneRap;
- private String _albo;
- private String _regAlbo;
- private String _provAlbo;
- private String _numIscrAlbo;
- private String _telefono;
- private String _fax;
- private String _email;
- private String _tipologiaSoggetto;
- private String _tipologiaProfessione;
- private boolean _aggiuntivo;
- private boolean _sostituito;
- private BaseModel> _boSoggettoRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoModel.java
deleted file mode 100644
index e6cf2a91..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoModel.java
+++ /dev/null
@@ -1,861 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoSoggetto service. Represents a row in the "gc_soggetto" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoSoggettoModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoSoggettoImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSoggetto
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSoggettoImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSoggettoModelImpl
- * @generated
- */
-public interface BoSoggettoModel extends BaseModel,
- StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo soggetto model instance should use the {@link BoSoggetto} interface instead.
- */
-
- /**
- * Returns the primary key of this bo soggetto.
- *
- * @return the primary key of this bo soggetto
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo soggetto.
- *
- * @param primaryKey the primary key of this bo soggetto
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo soggetto.
- *
- * @return the uuid of this bo soggetto
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo soggetto.
- *
- * @param uuid the uuid of this bo soggetto
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the soggetto ID of this bo soggetto.
- *
- * @return the soggetto ID of this bo soggetto
- */
- public long getSoggettoId();
-
- /**
- * Sets the soggetto ID of this bo soggetto.
- *
- * @param soggettoId the soggetto ID of this bo soggetto
- */
- public void setSoggettoId(long soggettoId);
-
- /**
- * Returns the company ID of this bo soggetto.
- *
- * @return the company ID of this bo soggetto
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo soggetto.
- *
- * @param companyId the company ID of this bo soggetto
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo soggetto.
- *
- * @return the user ID of this bo soggetto
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo soggetto.
- *
- * @param userId the user ID of this bo soggetto
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo soggetto.
- *
- * @return the user uuid of this bo soggetto
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo soggetto.
- *
- * @param userUuid the user uuid of this bo soggetto
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo soggetto.
- *
- * @return the user name of this bo soggetto
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo soggetto.
- *
- * @param userName the user name of this bo soggetto
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo soggetto.
- *
- * @return the create date of this bo soggetto
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo soggetto.
- *
- * @param createDate the create date of this bo soggetto
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo soggetto.
- *
- * @return the modified date of this bo soggetto
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo soggetto.
- *
- * @param modifiedDate the modified date of this bo soggetto
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo soggetto.
- *
- * @return the group ID of this bo soggetto
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo soggetto.
- *
- * @param groupId the group ID of this bo soggetto
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the dett pratica ID of this bo soggetto.
- *
- * @return the dett pratica ID of this bo soggetto
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo soggetto.
- *
- * @param dettPraticaId the dett pratica ID of this bo soggetto
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the nome of this bo soggetto.
- *
- * @return the nome of this bo soggetto
- */
- @AutoEscape
- public String getNome();
-
- /**
- * Sets the nome of this bo soggetto.
- *
- * @param nome the nome of this bo soggetto
- */
- public void setNome(String nome);
-
- /**
- * Returns the cognome of this bo soggetto.
- *
- * @return the cognome of this bo soggetto
- */
- @AutoEscape
- public String getCognome();
-
- /**
- * Sets the cognome of this bo soggetto.
- *
- * @param cognome the cognome of this bo soggetto
- */
- public void setCognome(String cognome);
-
- /**
- * Returns the codice fiscale of this bo soggetto.
- *
- * @return the codice fiscale of this bo soggetto
- */
- @AutoEscape
- public String getCodiceFiscale();
-
- /**
- * Sets the codice fiscale of this bo soggetto.
- *
- * @param codiceFiscale the codice fiscale of this bo soggetto
- */
- public void setCodiceFiscale(String codiceFiscale);
-
- /**
- * Returns the codice fiscale delegato of this bo soggetto.
- *
- * @return the codice fiscale delegato of this bo soggetto
- */
- @AutoEscape
- public String getCodiceFiscaleDelegato();
-
- /**
- * Sets the codice fiscale delegato of this bo soggetto.
- *
- * @param codiceFiscaleDelegato the codice fiscale delegato of this bo soggetto
- */
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato);
-
- /**
- * Returns the data nascita of this bo soggetto.
- *
- * @return the data nascita of this bo soggetto
- */
- public Date getDataNascita();
-
- /**
- * Sets the data nascita of this bo soggetto.
- *
- * @param dataNascita the data nascita of this bo soggetto
- */
- public void setDataNascita(Date dataNascita);
-
- /**
- * Returns the comune nascita of this bo soggetto.
- *
- * @return the comune nascita of this bo soggetto
- */
- @AutoEscape
- public String getComuneNascita();
-
- /**
- * Sets the comune nascita of this bo soggetto.
- *
- * @param comuneNascita the comune nascita of this bo soggetto
- */
- public void setComuneNascita(String comuneNascita);
-
- /**
- * Returns the comune domicilio of this bo soggetto.
- *
- * @return the comune domicilio of this bo soggetto
- */
- @AutoEscape
- public String getComuneDomicilio();
-
- /**
- * Sets the comune domicilio of this bo soggetto.
- *
- * @param comuneDomicilio the comune domicilio of this bo soggetto
- */
- public void setComuneDomicilio(String comuneDomicilio);
-
- /**
- * Returns the provincia domicilio of this bo soggetto.
- *
- * @return the provincia domicilio of this bo soggetto
- */
- @AutoEscape
- public String getProvinciaDomicilio();
-
- /**
- * Sets the provincia domicilio of this bo soggetto.
- *
- * @param provinciaDomicilio the provincia domicilio of this bo soggetto
- */
- public void setProvinciaDomicilio(String provinciaDomicilio);
-
- /**
- * Returns the via domicilio of this bo soggetto.
- *
- * @return the via domicilio of this bo soggetto
- */
- @AutoEscape
- public String getViaDomicilio();
-
- /**
- * Sets the via domicilio of this bo soggetto.
- *
- * @param viaDomicilio the via domicilio of this bo soggetto
- */
- public void setViaDomicilio(String viaDomicilio);
-
- /**
- * Returns the numero civico domicilio of this bo soggetto.
- *
- * @return the numero civico domicilio of this bo soggetto
- */
- @AutoEscape
- public String getNumeroCivicoDomicilio();
-
- /**
- * Sets the numero civico domicilio of this bo soggetto.
- *
- * @param numeroCivicoDomicilio the numero civico domicilio of this bo soggetto
- */
- public void setNumeroCivicoDomicilio(String numeroCivicoDomicilio);
-
- /**
- * Returns the cap domicilio of this bo soggetto.
- *
- * @return the cap domicilio of this bo soggetto
- */
- @AutoEscape
- public String getCapDomicilio();
-
- /**
- * Sets the cap domicilio of this bo soggetto.
- *
- * @param capDomicilio the cap domicilio of this bo soggetto
- */
- public void setCapDomicilio(String capDomicilio);
-
- /**
- * Returns the domicilio extra of this bo soggetto.
- *
- * @return the domicilio extra of this bo soggetto
- */
- @AutoEscape
- public String getDomicilioExtra();
-
- /**
- * Sets the domicilio extra of this bo soggetto.
- *
- * @param domicilioExtra the domicilio extra of this bo soggetto
- */
- public void setDomicilioExtra(String domicilioExtra);
-
- /**
- * Returns the comune of this bo soggetto.
- *
- * @return the comune of this bo soggetto
- */
- @AutoEscape
- public String getComune();
-
- /**
- * Sets the comune of this bo soggetto.
- *
- * @param comune the comune of this bo soggetto
- */
- public void setComune(String comune);
-
- /**
- * Returns the provincia of this bo soggetto.
- *
- * @return the provincia of this bo soggetto
- */
- @AutoEscape
- public String getProvincia();
-
- /**
- * Sets the provincia of this bo soggetto.
- *
- * @param provincia the provincia of this bo soggetto
- */
- public void setProvincia(String provincia);
-
- /**
- * Returns the via of this bo soggetto.
- *
- * @return the via of this bo soggetto
- */
- @AutoEscape
- public String getVia();
-
- /**
- * Sets the via of this bo soggetto.
- *
- * @param via the via of this bo soggetto
- */
- public void setVia(String via);
-
- /**
- * Returns the numero civico of this bo soggetto.
- *
- * @return the numero civico of this bo soggetto
- */
- @AutoEscape
- public String getNumeroCivico();
-
- /**
- * Sets the numero civico of this bo soggetto.
- *
- * @param numeroCivico the numero civico of this bo soggetto
- */
- public void setNumeroCivico(String numeroCivico);
-
- /**
- * Returns the cap of this bo soggetto.
- *
- * @return the cap of this bo soggetto
- */
- @AutoEscape
- public String getCap();
-
- /**
- * Sets the cap of this bo soggetto.
- *
- * @param cap the cap of this bo soggetto
- */
- public void setCap(String cap);
-
- /**
- * Returns the denominazione of this bo soggetto.
- *
- * @return the denominazione of this bo soggetto
- */
- @AutoEscape
- public String getDenominazione();
-
- /**
- * Sets the denominazione of this bo soggetto.
- *
- * @param denominazione the denominazione of this bo soggetto
- */
- public void setDenominazione(String denominazione);
-
- /**
- * Returns the sede legale of this bo soggetto.
- *
- * @return the sede legale of this bo soggetto
- */
- @AutoEscape
- public String getSedeLegale();
-
- /**
- * Sets the sede legale of this bo soggetto.
- *
- * @param sedeLegale the sede legale of this bo soggetto
- */
- public void setSedeLegale(String sedeLegale);
-
- /**
- * Returns the legale rap of this bo soggetto.
- *
- * @return the legale rap of this bo soggetto
- */
- @AutoEscape
- public String getLegaleRap();
-
- /**
- * Sets the legale rap of this bo soggetto.
- *
- * @param legaleRap the legale rap of this bo soggetto
- */
- public void setLegaleRap(String legaleRap);
-
- /**
- * Returns the data nascita rap of this bo soggetto.
- *
- * @return the data nascita rap of this bo soggetto
- */
- public Date getDataNascitaRap();
-
- /**
- * Sets the data nascita rap of this bo soggetto.
- *
- * @param dataNascitaRap the data nascita rap of this bo soggetto
- */
- public void setDataNascitaRap(Date dataNascitaRap);
-
- /**
- * Returns the comune nascita rap of this bo soggetto.
- *
- * @return the comune nascita rap of this bo soggetto
- */
- @AutoEscape
- public String getComuneNascitaRap();
-
- /**
- * Sets the comune nascita rap of this bo soggetto.
- *
- * @param comuneNascitaRap the comune nascita rap of this bo soggetto
- */
- public void setComuneNascitaRap(String comuneNascitaRap);
-
- /**
- * Returns the via rap of this bo soggetto.
- *
- * @return the via rap of this bo soggetto
- */
- @AutoEscape
- public String getViaRap();
-
- /**
- * Sets the via rap of this bo soggetto.
- *
- * @param viaRap the via rap of this bo soggetto
- */
- public void setViaRap(String viaRap);
-
- /**
- * Returns the numero civico rap of this bo soggetto.
- *
- * @return the numero civico rap of this bo soggetto
- */
- @AutoEscape
- public String getNumeroCivicoRap();
-
- /**
- * Sets the numero civico rap of this bo soggetto.
- *
- * @param numeroCivicoRap the numero civico rap of this bo soggetto
- */
- public void setNumeroCivicoRap(String numeroCivicoRap);
-
- /**
- * Returns the cap rap of this bo soggetto.
- *
- * @return the cap rap of this bo soggetto
- */
- @AutoEscape
- public String getCapRap();
-
- /**
- * Sets the cap rap of this bo soggetto.
- *
- * @param capRap the cap rap of this bo soggetto
- */
- public void setCapRap(String capRap);
-
- /**
- * Returns the provincia rap of this bo soggetto.
- *
- * @return the provincia rap of this bo soggetto
- */
- @AutoEscape
- public String getProvinciaRap();
-
- /**
- * Sets the provincia rap of this bo soggetto.
- *
- * @param provinciaRap the provincia rap of this bo soggetto
- */
- public void setProvinciaRap(String provinciaRap);
-
- /**
- * Returns the comune rap of this bo soggetto.
- *
- * @return the comune rap of this bo soggetto
- */
- @AutoEscape
- public String getComuneRap();
-
- /**
- * Sets the comune rap of this bo soggetto.
- *
- * @param comuneRap the comune rap of this bo soggetto
- */
- public void setComuneRap(String comuneRap);
-
- /**
- * Returns the albo of this bo soggetto.
- *
- * @return the albo of this bo soggetto
- */
- @AutoEscape
- public String getAlbo();
-
- /**
- * Sets the albo of this bo soggetto.
- *
- * @param albo the albo of this bo soggetto
- */
- public void setAlbo(String albo);
-
- /**
- * Returns the reg albo of this bo soggetto.
- *
- * @return the reg albo of this bo soggetto
- */
- @AutoEscape
- public String getRegAlbo();
-
- /**
- * Sets the reg albo of this bo soggetto.
- *
- * @param regAlbo the reg albo of this bo soggetto
- */
- public void setRegAlbo(String regAlbo);
-
- /**
- * Returns the prov albo of this bo soggetto.
- *
- * @return the prov albo of this bo soggetto
- */
- @AutoEscape
- public String getProvAlbo();
-
- /**
- * Sets the prov albo of this bo soggetto.
- *
- * @param provAlbo the prov albo of this bo soggetto
- */
- public void setProvAlbo(String provAlbo);
-
- /**
- * Returns the num iscr albo of this bo soggetto.
- *
- * @return the num iscr albo of this bo soggetto
- */
- @AutoEscape
- public String getNumIscrAlbo();
-
- /**
- * Sets the num iscr albo of this bo soggetto.
- *
- * @param numIscrAlbo the num iscr albo of this bo soggetto
- */
- public void setNumIscrAlbo(String numIscrAlbo);
-
- /**
- * Returns the telefono of this bo soggetto.
- *
- * @return the telefono of this bo soggetto
- */
- @AutoEscape
- public String getTelefono();
-
- /**
- * Sets the telefono of this bo soggetto.
- *
- * @param telefono the telefono of this bo soggetto
- */
- public void setTelefono(String telefono);
-
- /**
- * Returns the fax of this bo soggetto.
- *
- * @return the fax of this bo soggetto
- */
- @AutoEscape
- public String getFax();
-
- /**
- * Sets the fax of this bo soggetto.
- *
- * @param fax the fax of this bo soggetto
- */
- public void setFax(String fax);
-
- /**
- * Returns the email of this bo soggetto.
- *
- * @return the email of this bo soggetto
- */
- @AutoEscape
- public String getEmail();
-
- /**
- * Sets the email of this bo soggetto.
- *
- * @param email the email of this bo soggetto
- */
- public void setEmail(String email);
-
- /**
- * Returns the tipologia soggetto of this bo soggetto.
- *
- * @return the tipologia soggetto of this bo soggetto
- */
- @AutoEscape
- public String getTipologiaSoggetto();
-
- /**
- * Sets the tipologia soggetto of this bo soggetto.
- *
- * @param tipologiaSoggetto the tipologia soggetto of this bo soggetto
- */
- public void setTipologiaSoggetto(String tipologiaSoggetto);
-
- /**
- * Returns the tipologia professione of this bo soggetto.
- *
- * @return the tipologia professione of this bo soggetto
- */
- @AutoEscape
- public String getTipologiaProfessione();
-
- /**
- * Sets the tipologia professione of this bo soggetto.
- *
- * @param tipologiaProfessione the tipologia professione of this bo soggetto
- */
- public void setTipologiaProfessione(String tipologiaProfessione);
-
- /**
- * Returns the aggiuntivo of this bo soggetto.
- *
- * @return the aggiuntivo of this bo soggetto
- */
- public boolean getAggiuntivo();
-
- /**
- * Returns true if this bo soggetto is aggiuntivo.
- *
- * @return true if this bo soggetto is aggiuntivo; false otherwise
- */
- public boolean isAggiuntivo();
-
- /**
- * Sets whether this bo soggetto is aggiuntivo.
- *
- * @param aggiuntivo the aggiuntivo of this bo soggetto
- */
- public void setAggiuntivo(boolean aggiuntivo);
-
- /**
- * Returns the sostituito of this bo soggetto.
- *
- * @return the sostituito of this bo soggetto
- */
- public boolean getSostituito();
-
- /**
- * Returns true if this bo soggetto is sostituito.
- *
- * @return true if this bo soggetto is sostituito; false otherwise
- */
- public boolean isSostituito();
-
- /**
- * Sets whether this bo soggetto is sostituito.
- *
- * @param sostituito the sostituito of this bo soggetto
- */
- public void setSostituito(boolean sostituito);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSoggetto boSoggetto);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSoggetto toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSoggetto toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoSoap.java
deleted file mode 100644
index 21b2ef31..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoSoap.java
+++ /dev/null
@@ -1,563 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoSoggettoSoap implements Serializable {
- public static BoSoggettoSoap toSoapModel(BoSoggetto model) {
- BoSoggettoSoap soapModel = new BoSoggettoSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setSoggettoId(model.getSoggettoId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setNome(model.getNome());
- soapModel.setCognome(model.getCognome());
- soapModel.setCodiceFiscale(model.getCodiceFiscale());
- soapModel.setCodiceFiscaleDelegato(model.getCodiceFiscaleDelegato());
- soapModel.setDataNascita(model.getDataNascita());
- soapModel.setComuneNascita(model.getComuneNascita());
- soapModel.setComuneDomicilio(model.getComuneDomicilio());
- soapModel.setProvinciaDomicilio(model.getProvinciaDomicilio());
- soapModel.setViaDomicilio(model.getViaDomicilio());
- soapModel.setNumeroCivicoDomicilio(model.getNumeroCivicoDomicilio());
- soapModel.setCapDomicilio(model.getCapDomicilio());
- soapModel.setDomicilioExtra(model.getDomicilioExtra());
- soapModel.setComune(model.getComune());
- soapModel.setProvincia(model.getProvincia());
- soapModel.setVia(model.getVia());
- soapModel.setNumeroCivico(model.getNumeroCivico());
- soapModel.setCap(model.getCap());
- soapModel.setDenominazione(model.getDenominazione());
- soapModel.setSedeLegale(model.getSedeLegale());
- soapModel.setLegaleRap(model.getLegaleRap());
- soapModel.setDataNascitaRap(model.getDataNascitaRap());
- soapModel.setComuneNascitaRap(model.getComuneNascitaRap());
- soapModel.setViaRap(model.getViaRap());
- soapModel.setNumeroCivicoRap(model.getNumeroCivicoRap());
- soapModel.setCapRap(model.getCapRap());
- soapModel.setProvinciaRap(model.getProvinciaRap());
- soapModel.setComuneRap(model.getComuneRap());
- soapModel.setAlbo(model.getAlbo());
- soapModel.setRegAlbo(model.getRegAlbo());
- soapModel.setProvAlbo(model.getProvAlbo());
- soapModel.setNumIscrAlbo(model.getNumIscrAlbo());
- soapModel.setTelefono(model.getTelefono());
- soapModel.setFax(model.getFax());
- soapModel.setEmail(model.getEmail());
- soapModel.setTipologiaSoggetto(model.getTipologiaSoggetto());
- soapModel.setTipologiaProfessione(model.getTipologiaProfessione());
- soapModel.setAggiuntivo(model.getAggiuntivo());
- soapModel.setSostituito(model.getSostituito());
-
- return soapModel;
- }
-
- public static BoSoggettoSoap[] toSoapModels(BoSoggetto[] models) {
- BoSoggettoSoap[] soapModels = new BoSoggettoSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSoggettoSoap[][] toSoapModels(BoSoggetto[][] models) {
- BoSoggettoSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoSoggettoSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoSoggettoSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSoggettoSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoSoggetto model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoSoggettoSoap[soapModels.size()]);
- }
-
- public BoSoggettoSoap() {
- }
-
- public long getPrimaryKey() {
- return _soggettoId;
- }
-
- public void setPrimaryKey(long pk) {
- setSoggettoId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getSoggettoId() {
- return _soggettoId;
- }
-
- public void setSoggettoId(long soggettoId) {
- _soggettoId = soggettoId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public String getNome() {
- return _nome;
- }
-
- public void setNome(String nome) {
- _nome = nome;
- }
-
- public String getCognome() {
- return _cognome;
- }
-
- public void setCognome(String cognome) {
- _cognome = cognome;
- }
-
- public String getCodiceFiscale() {
- return _codiceFiscale;
- }
-
- public void setCodiceFiscale(String codiceFiscale) {
- _codiceFiscale = codiceFiscale;
- }
-
- public String getCodiceFiscaleDelegato() {
- return _codiceFiscaleDelegato;
- }
-
- public void setCodiceFiscaleDelegato(String codiceFiscaleDelegato) {
- _codiceFiscaleDelegato = codiceFiscaleDelegato;
- }
-
- public Date getDataNascita() {
- return _dataNascita;
- }
-
- public void setDataNascita(Date dataNascita) {
- _dataNascita = dataNascita;
- }
-
- public String getComuneNascita() {
- return _comuneNascita;
- }
-
- public void setComuneNascita(String comuneNascita) {
- _comuneNascita = comuneNascita;
- }
-
- public String getComuneDomicilio() {
- return _comuneDomicilio;
- }
-
- public void setComuneDomicilio(String comuneDomicilio) {
- _comuneDomicilio = comuneDomicilio;
- }
-
- public String getProvinciaDomicilio() {
- return _provinciaDomicilio;
- }
-
- public void setProvinciaDomicilio(String provinciaDomicilio) {
- _provinciaDomicilio = provinciaDomicilio;
- }
-
- public String getViaDomicilio() {
- return _viaDomicilio;
- }
-
- public void setViaDomicilio(String viaDomicilio) {
- _viaDomicilio = viaDomicilio;
- }
-
- public String getNumeroCivicoDomicilio() {
- return _numeroCivicoDomicilio;
- }
-
- public void setNumeroCivicoDomicilio(String numeroCivicoDomicilio) {
- _numeroCivicoDomicilio = numeroCivicoDomicilio;
- }
-
- public String getCapDomicilio() {
- return _capDomicilio;
- }
-
- public void setCapDomicilio(String capDomicilio) {
- _capDomicilio = capDomicilio;
- }
-
- public String getDomicilioExtra() {
- return _domicilioExtra;
- }
-
- public void setDomicilioExtra(String domicilioExtra) {
- _domicilioExtra = domicilioExtra;
- }
-
- public String getComune() {
- return _comune;
- }
-
- public void setComune(String comune) {
- _comune = comune;
- }
-
- public String getProvincia() {
- return _provincia;
- }
-
- public void setProvincia(String provincia) {
- _provincia = provincia;
- }
-
- public String getVia() {
- return _via;
- }
-
- public void setVia(String via) {
- _via = via;
- }
-
- public String getNumeroCivico() {
- return _numeroCivico;
- }
-
- public void setNumeroCivico(String numeroCivico) {
- _numeroCivico = numeroCivico;
- }
-
- public String getCap() {
- return _cap;
- }
-
- public void setCap(String cap) {
- _cap = cap;
- }
-
- public String getDenominazione() {
- return _denominazione;
- }
-
- public void setDenominazione(String denominazione) {
- _denominazione = denominazione;
- }
-
- public String getSedeLegale() {
- return _sedeLegale;
- }
-
- public void setSedeLegale(String sedeLegale) {
- _sedeLegale = sedeLegale;
- }
-
- public String getLegaleRap() {
- return _legaleRap;
- }
-
- public void setLegaleRap(String legaleRap) {
- _legaleRap = legaleRap;
- }
-
- public Date getDataNascitaRap() {
- return _dataNascitaRap;
- }
-
- public void setDataNascitaRap(Date dataNascitaRap) {
- _dataNascitaRap = dataNascitaRap;
- }
-
- public String getComuneNascitaRap() {
- return _comuneNascitaRap;
- }
-
- public void setComuneNascitaRap(String comuneNascitaRap) {
- _comuneNascitaRap = comuneNascitaRap;
- }
-
- public String getViaRap() {
- return _viaRap;
- }
-
- public void setViaRap(String viaRap) {
- _viaRap = viaRap;
- }
-
- public String getNumeroCivicoRap() {
- return _numeroCivicoRap;
- }
-
- public void setNumeroCivicoRap(String numeroCivicoRap) {
- _numeroCivicoRap = numeroCivicoRap;
- }
-
- public String getCapRap() {
- return _capRap;
- }
-
- public void setCapRap(String capRap) {
- _capRap = capRap;
- }
-
- public String getProvinciaRap() {
- return _provinciaRap;
- }
-
- public void setProvinciaRap(String provinciaRap) {
- _provinciaRap = provinciaRap;
- }
-
- public String getComuneRap() {
- return _comuneRap;
- }
-
- public void setComuneRap(String comuneRap) {
- _comuneRap = comuneRap;
- }
-
- public String getAlbo() {
- return _albo;
- }
-
- public void setAlbo(String albo) {
- _albo = albo;
- }
-
- public String getRegAlbo() {
- return _regAlbo;
- }
-
- public void setRegAlbo(String regAlbo) {
- _regAlbo = regAlbo;
- }
-
- public String getProvAlbo() {
- return _provAlbo;
- }
-
- public void setProvAlbo(String provAlbo) {
- _provAlbo = provAlbo;
- }
-
- public String getNumIscrAlbo() {
- return _numIscrAlbo;
- }
-
- public void setNumIscrAlbo(String numIscrAlbo) {
- _numIscrAlbo = numIscrAlbo;
- }
-
- public String getTelefono() {
- return _telefono;
- }
-
- public void setTelefono(String telefono) {
- _telefono = telefono;
- }
-
- public String getFax() {
- return _fax;
- }
-
- public void setFax(String fax) {
- _fax = fax;
- }
-
- public String getEmail() {
- return _email;
- }
-
- public void setEmail(String email) {
- _email = email;
- }
-
- public String getTipologiaSoggetto() {
- return _tipologiaSoggetto;
- }
-
- public void setTipologiaSoggetto(String tipologiaSoggetto) {
- _tipologiaSoggetto = tipologiaSoggetto;
- }
-
- public String getTipologiaProfessione() {
- return _tipologiaProfessione;
- }
-
- public void setTipologiaProfessione(String tipologiaProfessione) {
- _tipologiaProfessione = tipologiaProfessione;
- }
-
- public boolean getAggiuntivo() {
- return _aggiuntivo;
- }
-
- public boolean isAggiuntivo() {
- return _aggiuntivo;
- }
-
- public void setAggiuntivo(boolean aggiuntivo) {
- _aggiuntivo = aggiuntivo;
- }
-
- public boolean getSostituito() {
- return _sostituito;
- }
-
- public boolean isSostituito() {
- return _sostituito;
- }
-
- public void setSostituito(boolean sostituito) {
- _sostituito = sostituito;
- }
-
- private String _uuid;
- private long _soggettoId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _dettPraticaId;
- private String _nome;
- private String _cognome;
- private String _codiceFiscale;
- private String _codiceFiscaleDelegato;
- private Date _dataNascita;
- private String _comuneNascita;
- private String _comuneDomicilio;
- private String _provinciaDomicilio;
- private String _viaDomicilio;
- private String _numeroCivicoDomicilio;
- private String _capDomicilio;
- private String _domicilioExtra;
- private String _comune;
- private String _provincia;
- private String _via;
- private String _numeroCivico;
- private String _cap;
- private String _denominazione;
- private String _sedeLegale;
- private String _legaleRap;
- private Date _dataNascitaRap;
- private String _comuneNascitaRap;
- private String _viaRap;
- private String _numeroCivicoRap;
- private String _capRap;
- private String _provinciaRap;
- private String _comuneRap;
- private String _albo;
- private String _regAlbo;
- private String _provAlbo;
- private String _numIscrAlbo;
- private String _telefono;
- private String _fax;
- private String _email;
- private String _tipologiaSoggetto;
- private String _tipologiaProfessione;
- private boolean _aggiuntivo;
- private boolean _sostituito;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoWrapper.java
deleted file mode 100644
index 5088405d..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSoggettoWrapper.java
+++ /dev/null
@@ -1,1541 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoSoggetto}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSoggetto
- * @generated
- */
-public class BoSoggettoWrapper implements BoSoggetto, ModelWrapper {
- public BoSoggettoWrapper(BoSoggetto boSoggetto) {
- _boSoggetto = boSoggetto;
- }
-
- @Override
- public Class> getModelClass() {
- return BoSoggetto.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSoggetto.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("soggettoId", getSoggettoId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("nome", getNome());
- attributes.put("cognome", getCognome());
- attributes.put("codiceFiscale", getCodiceFiscale());
- attributes.put("codiceFiscaleDelegato", getCodiceFiscaleDelegato());
- attributes.put("dataNascita", getDataNascita());
- attributes.put("comuneNascita", getComuneNascita());
- attributes.put("comuneDomicilio", getComuneDomicilio());
- attributes.put("provinciaDomicilio", getProvinciaDomicilio());
- attributes.put("viaDomicilio", getViaDomicilio());
- attributes.put("numeroCivicoDomicilio", getNumeroCivicoDomicilio());
- attributes.put("capDomicilio", getCapDomicilio());
- attributes.put("domicilioExtra", getDomicilioExtra());
- attributes.put("comune", getComune());
- attributes.put("provincia", getProvincia());
- attributes.put("via", getVia());
- attributes.put("numeroCivico", getNumeroCivico());
- attributes.put("cap", getCap());
- attributes.put("denominazione", getDenominazione());
- attributes.put("sedeLegale", getSedeLegale());
- attributes.put("legaleRap", getLegaleRap());
- attributes.put("dataNascitaRap", getDataNascitaRap());
- attributes.put("comuneNascitaRap", getComuneNascitaRap());
- attributes.put("viaRap", getViaRap());
- attributes.put("numeroCivicoRap", getNumeroCivicoRap());
- attributes.put("capRap", getCapRap());
- attributes.put("provinciaRap", getProvinciaRap());
- attributes.put("comuneRap", getComuneRap());
- attributes.put("albo", getAlbo());
- attributes.put("regAlbo", getRegAlbo());
- attributes.put("provAlbo", getProvAlbo());
- attributes.put("numIscrAlbo", getNumIscrAlbo());
- attributes.put("telefono", getTelefono());
- attributes.put("fax", getFax());
- attributes.put("email", getEmail());
- attributes.put("tipologiaSoggetto", getTipologiaSoggetto());
- attributes.put("tipologiaProfessione", getTipologiaProfessione());
- attributes.put("aggiuntivo", getAggiuntivo());
- attributes.put("sostituito", getSostituito());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long soggettoId = (Long)attributes.get("soggettoId");
-
- if (soggettoId != null) {
- setSoggettoId(soggettoId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String nome = (String)attributes.get("nome");
-
- if (nome != null) {
- setNome(nome);
- }
-
- String cognome = (String)attributes.get("cognome");
-
- if (cognome != null) {
- setCognome(cognome);
- }
-
- String codiceFiscale = (String)attributes.get("codiceFiscale");
-
- if (codiceFiscale != null) {
- setCodiceFiscale(codiceFiscale);
- }
-
- String codiceFiscaleDelegato = (String)attributes.get(
- "codiceFiscaleDelegato");
-
- if (codiceFiscaleDelegato != null) {
- setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- Date dataNascita = (Date)attributes.get("dataNascita");
-
- if (dataNascita != null) {
- setDataNascita(dataNascita);
- }
-
- String comuneNascita = (String)attributes.get("comuneNascita");
-
- if (comuneNascita != null) {
- setComuneNascita(comuneNascita);
- }
-
- String comuneDomicilio = (String)attributes.get("comuneDomicilio");
-
- if (comuneDomicilio != null) {
- setComuneDomicilio(comuneDomicilio);
- }
-
- String provinciaDomicilio = (String)attributes.get("provinciaDomicilio");
-
- if (provinciaDomicilio != null) {
- setProvinciaDomicilio(provinciaDomicilio);
- }
-
- String viaDomicilio = (String)attributes.get("viaDomicilio");
-
- if (viaDomicilio != null) {
- setViaDomicilio(viaDomicilio);
- }
-
- String numeroCivicoDomicilio = (String)attributes.get(
- "numeroCivicoDomicilio");
-
- if (numeroCivicoDomicilio != null) {
- setNumeroCivicoDomicilio(numeroCivicoDomicilio);
- }
-
- String capDomicilio = (String)attributes.get("capDomicilio");
-
- if (capDomicilio != null) {
- setCapDomicilio(capDomicilio);
- }
-
- String domicilioExtra = (String)attributes.get("domicilioExtra");
-
- if (domicilioExtra != null) {
- setDomicilioExtra(domicilioExtra);
- }
-
- String comune = (String)attributes.get("comune");
-
- if (comune != null) {
- setComune(comune);
- }
-
- String provincia = (String)attributes.get("provincia");
-
- if (provincia != null) {
- setProvincia(provincia);
- }
-
- String via = (String)attributes.get("via");
-
- if (via != null) {
- setVia(via);
- }
-
- String numeroCivico = (String)attributes.get("numeroCivico");
-
- if (numeroCivico != null) {
- setNumeroCivico(numeroCivico);
- }
-
- String cap = (String)attributes.get("cap");
-
- if (cap != null) {
- setCap(cap);
- }
-
- String denominazione = (String)attributes.get("denominazione");
-
- if (denominazione != null) {
- setDenominazione(denominazione);
- }
-
- String sedeLegale = (String)attributes.get("sedeLegale");
-
- if (sedeLegale != null) {
- setSedeLegale(sedeLegale);
- }
-
- String legaleRap = (String)attributes.get("legaleRap");
-
- if (legaleRap != null) {
- setLegaleRap(legaleRap);
- }
-
- Date dataNascitaRap = (Date)attributes.get("dataNascitaRap");
-
- if (dataNascitaRap != null) {
- setDataNascitaRap(dataNascitaRap);
- }
-
- String comuneNascitaRap = (String)attributes.get("comuneNascitaRap");
-
- if (comuneNascitaRap != null) {
- setComuneNascitaRap(comuneNascitaRap);
- }
-
- String viaRap = (String)attributes.get("viaRap");
-
- if (viaRap != null) {
- setViaRap(viaRap);
- }
-
- String numeroCivicoRap = (String)attributes.get("numeroCivicoRap");
-
- if (numeroCivicoRap != null) {
- setNumeroCivicoRap(numeroCivicoRap);
- }
-
- String capRap = (String)attributes.get("capRap");
-
- if (capRap != null) {
- setCapRap(capRap);
- }
-
- String provinciaRap = (String)attributes.get("provinciaRap");
-
- if (provinciaRap != null) {
- setProvinciaRap(provinciaRap);
- }
-
- String comuneRap = (String)attributes.get("comuneRap");
-
- if (comuneRap != null) {
- setComuneRap(comuneRap);
- }
-
- String albo = (String)attributes.get("albo");
-
- if (albo != null) {
- setAlbo(albo);
- }
-
- String regAlbo = (String)attributes.get("regAlbo");
-
- if (regAlbo != null) {
- setRegAlbo(regAlbo);
- }
-
- String provAlbo = (String)attributes.get("provAlbo");
-
- if (provAlbo != null) {
- setProvAlbo(provAlbo);
- }
-
- String numIscrAlbo = (String)attributes.get("numIscrAlbo");
-
- if (numIscrAlbo != null) {
- setNumIscrAlbo(numIscrAlbo);
- }
-
- String telefono = (String)attributes.get("telefono");
-
- if (telefono != null) {
- setTelefono(telefono);
- }
-
- String fax = (String)attributes.get("fax");
-
- if (fax != null) {
- setFax(fax);
- }
-
- String email = (String)attributes.get("email");
-
- if (email != null) {
- setEmail(email);
- }
-
- String tipologiaSoggetto = (String)attributes.get("tipologiaSoggetto");
-
- if (tipologiaSoggetto != null) {
- setTipologiaSoggetto(tipologiaSoggetto);
- }
-
- String tipologiaProfessione = (String)attributes.get(
- "tipologiaProfessione");
-
- if (tipologiaProfessione != null) {
- setTipologiaProfessione(tipologiaProfessione);
- }
-
- Boolean aggiuntivo = (Boolean)attributes.get("aggiuntivo");
-
- if (aggiuntivo != null) {
- setAggiuntivo(aggiuntivo);
- }
-
- Boolean sostituito = (Boolean)attributes.get("sostituito");
-
- if (sostituito != null) {
- setSostituito(sostituito);
- }
- }
-
- /**
- * Returns the primary key of this bo soggetto.
- *
- * @return the primary key of this bo soggetto
- */
- @Override
- public long getPrimaryKey() {
- return _boSoggetto.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo soggetto.
- *
- * @param primaryKey the primary key of this bo soggetto
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boSoggetto.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo soggetto.
- *
- * @return the uuid of this bo soggetto
- */
- @Override
- public java.lang.String getUuid() {
- return _boSoggetto.getUuid();
- }
-
- /**
- * Sets the uuid of this bo soggetto.
- *
- * @param uuid the uuid of this bo soggetto
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boSoggetto.setUuid(uuid);
- }
-
- /**
- * Returns the soggetto ID of this bo soggetto.
- *
- * @return the soggetto ID of this bo soggetto
- */
- @Override
- public long getSoggettoId() {
- return _boSoggetto.getSoggettoId();
- }
-
- /**
- * Sets the soggetto ID of this bo soggetto.
- *
- * @param soggettoId the soggetto ID of this bo soggetto
- */
- @Override
- public void setSoggettoId(long soggettoId) {
- _boSoggetto.setSoggettoId(soggettoId);
- }
-
- /**
- * Returns the company ID of this bo soggetto.
- *
- * @return the company ID of this bo soggetto
- */
- @Override
- public long getCompanyId() {
- return _boSoggetto.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo soggetto.
- *
- * @param companyId the company ID of this bo soggetto
- */
- @Override
- public void setCompanyId(long companyId) {
- _boSoggetto.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo soggetto.
- *
- * @return the user ID of this bo soggetto
- */
- @Override
- public long getUserId() {
- return _boSoggetto.getUserId();
- }
-
- /**
- * Sets the user ID of this bo soggetto.
- *
- * @param userId the user ID of this bo soggetto
- */
- @Override
- public void setUserId(long userId) {
- _boSoggetto.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo soggetto.
- *
- * @return the user uuid of this bo soggetto
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boSoggetto.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo soggetto.
- *
- * @param userUuid the user uuid of this bo soggetto
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boSoggetto.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo soggetto.
- *
- * @return the user name of this bo soggetto
- */
- @Override
- public java.lang.String getUserName() {
- return _boSoggetto.getUserName();
- }
-
- /**
- * Sets the user name of this bo soggetto.
- *
- * @param userName the user name of this bo soggetto
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boSoggetto.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo soggetto.
- *
- * @return the create date of this bo soggetto
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boSoggetto.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo soggetto.
- *
- * @param createDate the create date of this bo soggetto
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boSoggetto.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo soggetto.
- *
- * @return the modified date of this bo soggetto
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boSoggetto.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo soggetto.
- *
- * @param modifiedDate the modified date of this bo soggetto
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boSoggetto.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo soggetto.
- *
- * @return the group ID of this bo soggetto
- */
- @Override
- public long getGroupId() {
- return _boSoggetto.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo soggetto.
- *
- * @param groupId the group ID of this bo soggetto
- */
- @Override
- public void setGroupId(long groupId) {
- _boSoggetto.setGroupId(groupId);
- }
-
- /**
- * Returns the dett pratica ID of this bo soggetto.
- *
- * @return the dett pratica ID of this bo soggetto
- */
- @Override
- public long getDettPraticaId() {
- return _boSoggetto.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo soggetto.
- *
- * @param dettPraticaId the dett pratica ID of this bo soggetto
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boSoggetto.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the nome of this bo soggetto.
- *
- * @return the nome of this bo soggetto
- */
- @Override
- public java.lang.String getNome() {
- return _boSoggetto.getNome();
- }
-
- /**
- * Sets the nome of this bo soggetto.
- *
- * @param nome the nome of this bo soggetto
- */
- @Override
- public void setNome(java.lang.String nome) {
- _boSoggetto.setNome(nome);
- }
-
- /**
- * Returns the cognome of this bo soggetto.
- *
- * @return the cognome of this bo soggetto
- */
- @Override
- public java.lang.String getCognome() {
- return _boSoggetto.getCognome();
- }
-
- /**
- * Sets the cognome of this bo soggetto.
- *
- * @param cognome the cognome of this bo soggetto
- */
- @Override
- public void setCognome(java.lang.String cognome) {
- _boSoggetto.setCognome(cognome);
- }
-
- /**
- * Returns the codice fiscale of this bo soggetto.
- *
- * @return the codice fiscale of this bo soggetto
- */
- @Override
- public java.lang.String getCodiceFiscale() {
- return _boSoggetto.getCodiceFiscale();
- }
-
- /**
- * Sets the codice fiscale of this bo soggetto.
- *
- * @param codiceFiscale the codice fiscale of this bo soggetto
- */
- @Override
- public void setCodiceFiscale(java.lang.String codiceFiscale) {
- _boSoggetto.setCodiceFiscale(codiceFiscale);
- }
-
- /**
- * Returns the codice fiscale delegato of this bo soggetto.
- *
- * @return the codice fiscale delegato of this bo soggetto
- */
- @Override
- public java.lang.String getCodiceFiscaleDelegato() {
- return _boSoggetto.getCodiceFiscaleDelegato();
- }
-
- /**
- * Sets the codice fiscale delegato of this bo soggetto.
- *
- * @param codiceFiscaleDelegato the codice fiscale delegato of this bo soggetto
- */
- @Override
- public void setCodiceFiscaleDelegato(java.lang.String codiceFiscaleDelegato) {
- _boSoggetto.setCodiceFiscaleDelegato(codiceFiscaleDelegato);
- }
-
- /**
- * Returns the data nascita of this bo soggetto.
- *
- * @return the data nascita of this bo soggetto
- */
- @Override
- public java.util.Date getDataNascita() {
- return _boSoggetto.getDataNascita();
- }
-
- /**
- * Sets the data nascita of this bo soggetto.
- *
- * @param dataNascita the data nascita of this bo soggetto
- */
- @Override
- public void setDataNascita(java.util.Date dataNascita) {
- _boSoggetto.setDataNascita(dataNascita);
- }
-
- /**
- * Returns the comune nascita of this bo soggetto.
- *
- * @return the comune nascita of this bo soggetto
- */
- @Override
- public java.lang.String getComuneNascita() {
- return _boSoggetto.getComuneNascita();
- }
-
- /**
- * Sets the comune nascita of this bo soggetto.
- *
- * @param comuneNascita the comune nascita of this bo soggetto
- */
- @Override
- public void setComuneNascita(java.lang.String comuneNascita) {
- _boSoggetto.setComuneNascita(comuneNascita);
- }
-
- /**
- * Returns the comune domicilio of this bo soggetto.
- *
- * @return the comune domicilio of this bo soggetto
- */
- @Override
- public java.lang.String getComuneDomicilio() {
- return _boSoggetto.getComuneDomicilio();
- }
-
- /**
- * Sets the comune domicilio of this bo soggetto.
- *
- * @param comuneDomicilio the comune domicilio of this bo soggetto
- */
- @Override
- public void setComuneDomicilio(java.lang.String comuneDomicilio) {
- _boSoggetto.setComuneDomicilio(comuneDomicilio);
- }
-
- /**
- * Returns the provincia domicilio of this bo soggetto.
- *
- * @return the provincia domicilio of this bo soggetto
- */
- @Override
- public java.lang.String getProvinciaDomicilio() {
- return _boSoggetto.getProvinciaDomicilio();
- }
-
- /**
- * Sets the provincia domicilio of this bo soggetto.
- *
- * @param provinciaDomicilio the provincia domicilio of this bo soggetto
- */
- @Override
- public void setProvinciaDomicilio(java.lang.String provinciaDomicilio) {
- _boSoggetto.setProvinciaDomicilio(provinciaDomicilio);
- }
-
- /**
- * Returns the via domicilio of this bo soggetto.
- *
- * @return the via domicilio of this bo soggetto
- */
- @Override
- public java.lang.String getViaDomicilio() {
- return _boSoggetto.getViaDomicilio();
- }
-
- /**
- * Sets the via domicilio of this bo soggetto.
- *
- * @param viaDomicilio the via domicilio of this bo soggetto
- */
- @Override
- public void setViaDomicilio(java.lang.String viaDomicilio) {
- _boSoggetto.setViaDomicilio(viaDomicilio);
- }
-
- /**
- * Returns the numero civico domicilio of this bo soggetto.
- *
- * @return the numero civico domicilio of this bo soggetto
- */
- @Override
- public java.lang.String getNumeroCivicoDomicilio() {
- return _boSoggetto.getNumeroCivicoDomicilio();
- }
-
- /**
- * Sets the numero civico domicilio of this bo soggetto.
- *
- * @param numeroCivicoDomicilio the numero civico domicilio of this bo soggetto
- */
- @Override
- public void setNumeroCivicoDomicilio(java.lang.String numeroCivicoDomicilio) {
- _boSoggetto.setNumeroCivicoDomicilio(numeroCivicoDomicilio);
- }
-
- /**
- * Returns the cap domicilio of this bo soggetto.
- *
- * @return the cap domicilio of this bo soggetto
- */
- @Override
- public java.lang.String getCapDomicilio() {
- return _boSoggetto.getCapDomicilio();
- }
-
- /**
- * Sets the cap domicilio of this bo soggetto.
- *
- * @param capDomicilio the cap domicilio of this bo soggetto
- */
- @Override
- public void setCapDomicilio(java.lang.String capDomicilio) {
- _boSoggetto.setCapDomicilio(capDomicilio);
- }
-
- /**
- * Returns the domicilio extra of this bo soggetto.
- *
- * @return the domicilio extra of this bo soggetto
- */
- @Override
- public java.lang.String getDomicilioExtra() {
- return _boSoggetto.getDomicilioExtra();
- }
-
- /**
- * Sets the domicilio extra of this bo soggetto.
- *
- * @param domicilioExtra the domicilio extra of this bo soggetto
- */
- @Override
- public void setDomicilioExtra(java.lang.String domicilioExtra) {
- _boSoggetto.setDomicilioExtra(domicilioExtra);
- }
-
- /**
- * Returns the comune of this bo soggetto.
- *
- * @return the comune of this bo soggetto
- */
- @Override
- public java.lang.String getComune() {
- return _boSoggetto.getComune();
- }
-
- /**
- * Sets the comune of this bo soggetto.
- *
- * @param comune the comune of this bo soggetto
- */
- @Override
- public void setComune(java.lang.String comune) {
- _boSoggetto.setComune(comune);
- }
-
- /**
- * Returns the provincia of this bo soggetto.
- *
- * @return the provincia of this bo soggetto
- */
- @Override
- public java.lang.String getProvincia() {
- return _boSoggetto.getProvincia();
- }
-
- /**
- * Sets the provincia of this bo soggetto.
- *
- * @param provincia the provincia of this bo soggetto
- */
- @Override
- public void setProvincia(java.lang.String provincia) {
- _boSoggetto.setProvincia(provincia);
- }
-
- /**
- * Returns the via of this bo soggetto.
- *
- * @return the via of this bo soggetto
- */
- @Override
- public java.lang.String getVia() {
- return _boSoggetto.getVia();
- }
-
- /**
- * Sets the via of this bo soggetto.
- *
- * @param via the via of this bo soggetto
- */
- @Override
- public void setVia(java.lang.String via) {
- _boSoggetto.setVia(via);
- }
-
- /**
- * Returns the numero civico of this bo soggetto.
- *
- * @return the numero civico of this bo soggetto
- */
- @Override
- public java.lang.String getNumeroCivico() {
- return _boSoggetto.getNumeroCivico();
- }
-
- /**
- * Sets the numero civico of this bo soggetto.
- *
- * @param numeroCivico the numero civico of this bo soggetto
- */
- @Override
- public void setNumeroCivico(java.lang.String numeroCivico) {
- _boSoggetto.setNumeroCivico(numeroCivico);
- }
-
- /**
- * Returns the cap of this bo soggetto.
- *
- * @return the cap of this bo soggetto
- */
- @Override
- public java.lang.String getCap() {
- return _boSoggetto.getCap();
- }
-
- /**
- * Sets the cap of this bo soggetto.
- *
- * @param cap the cap of this bo soggetto
- */
- @Override
- public void setCap(java.lang.String cap) {
- _boSoggetto.setCap(cap);
- }
-
- /**
- * Returns the denominazione of this bo soggetto.
- *
- * @return the denominazione of this bo soggetto
- */
- @Override
- public java.lang.String getDenominazione() {
- return _boSoggetto.getDenominazione();
- }
-
- /**
- * Sets the denominazione of this bo soggetto.
- *
- * @param denominazione the denominazione of this bo soggetto
- */
- @Override
- public void setDenominazione(java.lang.String denominazione) {
- _boSoggetto.setDenominazione(denominazione);
- }
-
- /**
- * Returns the sede legale of this bo soggetto.
- *
- * @return the sede legale of this bo soggetto
- */
- @Override
- public java.lang.String getSedeLegale() {
- return _boSoggetto.getSedeLegale();
- }
-
- /**
- * Sets the sede legale of this bo soggetto.
- *
- * @param sedeLegale the sede legale of this bo soggetto
- */
- @Override
- public void setSedeLegale(java.lang.String sedeLegale) {
- _boSoggetto.setSedeLegale(sedeLegale);
- }
-
- /**
- * Returns the legale rap of this bo soggetto.
- *
- * @return the legale rap of this bo soggetto
- */
- @Override
- public java.lang.String getLegaleRap() {
- return _boSoggetto.getLegaleRap();
- }
-
- /**
- * Sets the legale rap of this bo soggetto.
- *
- * @param legaleRap the legale rap of this bo soggetto
- */
- @Override
- public void setLegaleRap(java.lang.String legaleRap) {
- _boSoggetto.setLegaleRap(legaleRap);
- }
-
- /**
- * Returns the data nascita rap of this bo soggetto.
- *
- * @return the data nascita rap of this bo soggetto
- */
- @Override
- public java.util.Date getDataNascitaRap() {
- return _boSoggetto.getDataNascitaRap();
- }
-
- /**
- * Sets the data nascita rap of this bo soggetto.
- *
- * @param dataNascitaRap the data nascita rap of this bo soggetto
- */
- @Override
- public void setDataNascitaRap(java.util.Date dataNascitaRap) {
- _boSoggetto.setDataNascitaRap(dataNascitaRap);
- }
-
- /**
- * Returns the comune nascita rap of this bo soggetto.
- *
- * @return the comune nascita rap of this bo soggetto
- */
- @Override
- public java.lang.String getComuneNascitaRap() {
- return _boSoggetto.getComuneNascitaRap();
- }
-
- /**
- * Sets the comune nascita rap of this bo soggetto.
- *
- * @param comuneNascitaRap the comune nascita rap of this bo soggetto
- */
- @Override
- public void setComuneNascitaRap(java.lang.String comuneNascitaRap) {
- _boSoggetto.setComuneNascitaRap(comuneNascitaRap);
- }
-
- /**
- * Returns the via rap of this bo soggetto.
- *
- * @return the via rap of this bo soggetto
- */
- @Override
- public java.lang.String getViaRap() {
- return _boSoggetto.getViaRap();
- }
-
- /**
- * Sets the via rap of this bo soggetto.
- *
- * @param viaRap the via rap of this bo soggetto
- */
- @Override
- public void setViaRap(java.lang.String viaRap) {
- _boSoggetto.setViaRap(viaRap);
- }
-
- /**
- * Returns the numero civico rap of this bo soggetto.
- *
- * @return the numero civico rap of this bo soggetto
- */
- @Override
- public java.lang.String getNumeroCivicoRap() {
- return _boSoggetto.getNumeroCivicoRap();
- }
-
- /**
- * Sets the numero civico rap of this bo soggetto.
- *
- * @param numeroCivicoRap the numero civico rap of this bo soggetto
- */
- @Override
- public void setNumeroCivicoRap(java.lang.String numeroCivicoRap) {
- _boSoggetto.setNumeroCivicoRap(numeroCivicoRap);
- }
-
- /**
- * Returns the cap rap of this bo soggetto.
- *
- * @return the cap rap of this bo soggetto
- */
- @Override
- public java.lang.String getCapRap() {
- return _boSoggetto.getCapRap();
- }
-
- /**
- * Sets the cap rap of this bo soggetto.
- *
- * @param capRap the cap rap of this bo soggetto
- */
- @Override
- public void setCapRap(java.lang.String capRap) {
- _boSoggetto.setCapRap(capRap);
- }
-
- /**
- * Returns the provincia rap of this bo soggetto.
- *
- * @return the provincia rap of this bo soggetto
- */
- @Override
- public java.lang.String getProvinciaRap() {
- return _boSoggetto.getProvinciaRap();
- }
-
- /**
- * Sets the provincia rap of this bo soggetto.
- *
- * @param provinciaRap the provincia rap of this bo soggetto
- */
- @Override
- public void setProvinciaRap(java.lang.String provinciaRap) {
- _boSoggetto.setProvinciaRap(provinciaRap);
- }
-
- /**
- * Returns the comune rap of this bo soggetto.
- *
- * @return the comune rap of this bo soggetto
- */
- @Override
- public java.lang.String getComuneRap() {
- return _boSoggetto.getComuneRap();
- }
-
- /**
- * Sets the comune rap of this bo soggetto.
- *
- * @param comuneRap the comune rap of this bo soggetto
- */
- @Override
- public void setComuneRap(java.lang.String comuneRap) {
- _boSoggetto.setComuneRap(comuneRap);
- }
-
- /**
- * Returns the albo of this bo soggetto.
- *
- * @return the albo of this bo soggetto
- */
- @Override
- public java.lang.String getAlbo() {
- return _boSoggetto.getAlbo();
- }
-
- /**
- * Sets the albo of this bo soggetto.
- *
- * @param albo the albo of this bo soggetto
- */
- @Override
- public void setAlbo(java.lang.String albo) {
- _boSoggetto.setAlbo(albo);
- }
-
- /**
- * Returns the reg albo of this bo soggetto.
- *
- * @return the reg albo of this bo soggetto
- */
- @Override
- public java.lang.String getRegAlbo() {
- return _boSoggetto.getRegAlbo();
- }
-
- /**
- * Sets the reg albo of this bo soggetto.
- *
- * @param regAlbo the reg albo of this bo soggetto
- */
- @Override
- public void setRegAlbo(java.lang.String regAlbo) {
- _boSoggetto.setRegAlbo(regAlbo);
- }
-
- /**
- * Returns the prov albo of this bo soggetto.
- *
- * @return the prov albo of this bo soggetto
- */
- @Override
- public java.lang.String getProvAlbo() {
- return _boSoggetto.getProvAlbo();
- }
-
- /**
- * Sets the prov albo of this bo soggetto.
- *
- * @param provAlbo the prov albo of this bo soggetto
- */
- @Override
- public void setProvAlbo(java.lang.String provAlbo) {
- _boSoggetto.setProvAlbo(provAlbo);
- }
-
- /**
- * Returns the num iscr albo of this bo soggetto.
- *
- * @return the num iscr albo of this bo soggetto
- */
- @Override
- public java.lang.String getNumIscrAlbo() {
- return _boSoggetto.getNumIscrAlbo();
- }
-
- /**
- * Sets the num iscr albo of this bo soggetto.
- *
- * @param numIscrAlbo the num iscr albo of this bo soggetto
- */
- @Override
- public void setNumIscrAlbo(java.lang.String numIscrAlbo) {
- _boSoggetto.setNumIscrAlbo(numIscrAlbo);
- }
-
- /**
- * Returns the telefono of this bo soggetto.
- *
- * @return the telefono of this bo soggetto
- */
- @Override
- public java.lang.String getTelefono() {
- return _boSoggetto.getTelefono();
- }
-
- /**
- * Sets the telefono of this bo soggetto.
- *
- * @param telefono the telefono of this bo soggetto
- */
- @Override
- public void setTelefono(java.lang.String telefono) {
- _boSoggetto.setTelefono(telefono);
- }
-
- /**
- * Returns the fax of this bo soggetto.
- *
- * @return the fax of this bo soggetto
- */
- @Override
- public java.lang.String getFax() {
- return _boSoggetto.getFax();
- }
-
- /**
- * Sets the fax of this bo soggetto.
- *
- * @param fax the fax of this bo soggetto
- */
- @Override
- public void setFax(java.lang.String fax) {
- _boSoggetto.setFax(fax);
- }
-
- /**
- * Returns the email of this bo soggetto.
- *
- * @return the email of this bo soggetto
- */
- @Override
- public java.lang.String getEmail() {
- return _boSoggetto.getEmail();
- }
-
- /**
- * Sets the email of this bo soggetto.
- *
- * @param email the email of this bo soggetto
- */
- @Override
- public void setEmail(java.lang.String email) {
- _boSoggetto.setEmail(email);
- }
-
- /**
- * Returns the tipologia soggetto of this bo soggetto.
- *
- * @return the tipologia soggetto of this bo soggetto
- */
- @Override
- public java.lang.String getTipologiaSoggetto() {
- return _boSoggetto.getTipologiaSoggetto();
- }
-
- /**
- * Sets the tipologia soggetto of this bo soggetto.
- *
- * @param tipologiaSoggetto the tipologia soggetto of this bo soggetto
- */
- @Override
- public void setTipologiaSoggetto(java.lang.String tipologiaSoggetto) {
- _boSoggetto.setTipologiaSoggetto(tipologiaSoggetto);
- }
-
- /**
- * Returns the tipologia professione of this bo soggetto.
- *
- * @return the tipologia professione of this bo soggetto
- */
- @Override
- public java.lang.String getTipologiaProfessione() {
- return _boSoggetto.getTipologiaProfessione();
- }
-
- /**
- * Sets the tipologia professione of this bo soggetto.
- *
- * @param tipologiaProfessione the tipologia professione of this bo soggetto
- */
- @Override
- public void setTipologiaProfessione(java.lang.String tipologiaProfessione) {
- _boSoggetto.setTipologiaProfessione(tipologiaProfessione);
- }
-
- /**
- * Returns the aggiuntivo of this bo soggetto.
- *
- * @return the aggiuntivo of this bo soggetto
- */
- @Override
- public boolean getAggiuntivo() {
- return _boSoggetto.getAggiuntivo();
- }
-
- /**
- * Returns true if this bo soggetto is aggiuntivo.
- *
- * @return true if this bo soggetto is aggiuntivo; false otherwise
- */
- @Override
- public boolean isAggiuntivo() {
- return _boSoggetto.isAggiuntivo();
- }
-
- /**
- * Sets whether this bo soggetto is aggiuntivo.
- *
- * @param aggiuntivo the aggiuntivo of this bo soggetto
- */
- @Override
- public void setAggiuntivo(boolean aggiuntivo) {
- _boSoggetto.setAggiuntivo(aggiuntivo);
- }
-
- /**
- * Returns the sostituito of this bo soggetto.
- *
- * @return the sostituito of this bo soggetto
- */
- @Override
- public boolean getSostituito() {
- return _boSoggetto.getSostituito();
- }
-
- /**
- * Returns true if this bo soggetto is sostituito.
- *
- * @return true if this bo soggetto is sostituito; false otherwise
- */
- @Override
- public boolean isSostituito() {
- return _boSoggetto.isSostituito();
- }
-
- /**
- * Sets whether this bo soggetto is sostituito.
- *
- * @param sostituito the sostituito of this bo soggetto
- */
- @Override
- public void setSostituito(boolean sostituito) {
- _boSoggetto.setSostituito(sostituito);
- }
-
- @Override
- public boolean isNew() {
- return _boSoggetto.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boSoggetto.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boSoggetto.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boSoggetto.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boSoggetto.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boSoggetto.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boSoggetto.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boSoggetto.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boSoggetto.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boSoggetto.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boSoggetto.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoSoggettoWrapper((BoSoggetto)_boSoggetto.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSoggetto boSoggetto) {
- return _boSoggetto.compareTo(boSoggetto);
- }
-
- @Override
- public int hashCode() {
- return _boSoggetto.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boSoggetto.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSoggetto toEscapedModel() {
- return new BoSoggettoWrapper(_boSoggetto.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSoggetto toUnescapedModel() {
- return new BoSoggettoWrapper(_boSoggetto.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boSoggetto.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boSoggetto.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boSoggetto.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSoggettoWrapper)) {
- return false;
- }
-
- BoSoggettoWrapper boSoggettoWrapper = (BoSoggettoWrapper)obj;
-
- if (Validator.equals(_boSoggetto, boSoggettoWrapper._boSoggetto)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boSoggetto.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoSoggetto getWrappedBoSoggetto() {
- return _boSoggetto;
- }
-
- @Override
- public BoSoggetto getWrappedModel() {
- return _boSoggetto;
- }
-
- @Override
- public void resetOriginalValues() {
- _boSoggetto.resetOriginalValues();
- }
-
- private BoSoggetto _boSoggetto;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggio.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggio.java
deleted file mode 100644
index 8fdd1a63..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggio.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoSorteggio service. Represents a row in the "gc_sorteggio" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSorteggioModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSorteggioImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSorteggioModelImpl
- * @generated
- */
-public interface BoSorteggio extends BoSorteggioModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoSorteggioImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioClp.java
deleted file mode 100644
index 6bf7b762..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioClp.java
+++ /dev/null
@@ -1,1421 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.kernel.workflow.WorkflowConstants;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoSorteggioLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoSorteggioClp extends BaseModelImpl
- implements BoSorteggio {
- public BoSorteggioClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoSorteggio.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSorteggio.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _sorteggioId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setSorteggioId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _sorteggioId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("sorteggioId", getSorteggioId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusByUserName", getStatusByUserName());
- attributes.put("statusDate", getStatusDate());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("note", getNote());
- attributes.put("anno", getAnno());
- attributes.put("mese", getMese());
- attributes.put("dtSorteggio", getDtSorteggio());
- attributes.put("stato", getStato());
- attributes.put("dettagli", getDettagli());
- attributes.put("numeroEstrazione", getNumeroEstrazione());
- attributes.put("pratica", getPratica());
- attributes.put("committente", getCommittente());
- attributes.put("comune", getComune());
- attributes.put("provincia", getProvincia());
- attributes.put("tecnico", getTecnico());
- attributes.put("mesePrecedente", getMesePrecedente());
- attributes.put("esterna", getEsterna());
- attributes.put("praticaEsternaId", getPraticaEsternaId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long sorteggioId = (Long)attributes.get("sorteggioId");
-
- if (sorteggioId != null) {
- setSorteggioId(sorteggioId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- String statusByUserName = (String)attributes.get("statusByUserName");
-
- if (statusByUserName != null) {
- setStatusByUserName(statusByUserName);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String note = (String)attributes.get("note");
-
- if (note != null) {
- setNote(note);
- }
-
- String anno = (String)attributes.get("anno");
-
- if (anno != null) {
- setAnno(anno);
- }
-
- String mese = (String)attributes.get("mese");
-
- if (mese != null) {
- setMese(mese);
- }
-
- Date dtSorteggio = (Date)attributes.get("dtSorteggio");
-
- if (dtSorteggio != null) {
- setDtSorteggio(dtSorteggio);
- }
-
- String stato = (String)attributes.get("stato");
-
- if (stato != null) {
- setStato(stato);
- }
-
- String dettagli = (String)attributes.get("dettagli");
-
- if (dettagli != null) {
- setDettagli(dettagli);
- }
-
- Long numeroEstrazione = (Long)attributes.get("numeroEstrazione");
-
- if (numeroEstrazione != null) {
- setNumeroEstrazione(numeroEstrazione);
- }
-
- String pratica = (String)attributes.get("pratica");
-
- if (pratica != null) {
- setPratica(pratica);
- }
-
- String committente = (String)attributes.get("committente");
-
- if (committente != null) {
- setCommittente(committente);
- }
-
- String comune = (String)attributes.get("comune");
-
- if (comune != null) {
- setComune(comune);
- }
-
- String provincia = (String)attributes.get("provincia");
-
- if (provincia != null) {
- setProvincia(provincia);
- }
-
- String tecnico = (String)attributes.get("tecnico");
-
- if (tecnico != null) {
- setTecnico(tecnico);
- }
-
- String mesePrecedente = (String)attributes.get("mesePrecedente");
-
- if (mesePrecedente != null) {
- setMesePrecedente(mesePrecedente);
- }
-
- Boolean esterna = (Boolean)attributes.get("esterna");
-
- if (esterna != null) {
- setEsterna(esterna);
- }
-
- Long praticaEsternaId = (Long)attributes.get("praticaEsternaId");
-
- if (praticaEsternaId != null) {
- setPraticaEsternaId(praticaEsternaId);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boSorteggioRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getSorteggioId() {
- return _sorteggioId;
- }
-
- @Override
- public void setSorteggioId(long sorteggioId) {
- _sorteggioId = sorteggioId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setSorteggioId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, sorteggioId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boSorteggioRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boSorteggioRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boSorteggioRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public int getStatus() {
- return _status;
- }
-
- @Override
- public void setStatus(int status) {
- _status = status;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatus", int.class);
-
- method.invoke(_boSorteggioRemoteModel, status);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusByUserId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, statusByUserId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStatusByUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getStatusByUserId(), "uuid",
- _statusByUserUuid);
- }
-
- @Override
- public void setStatusByUserUuid(String statusByUserUuid) {
- _statusByUserUuid = statusByUserUuid;
- }
-
- @Override
- public String getStatusByUserName() {
- return _statusByUserName;
- }
-
- @Override
- public void setStatusByUserName(String statusByUserName) {
- _statusByUserName = statusByUserName;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusByUserName",
- String.class);
-
- method.invoke(_boSorteggioRemoteModel, statusByUserName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getStatusDate() {
- return _statusDate;
- }
-
- @Override
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStatusDate", Date.class);
-
- method.invoke(_boSorteggioRemoteModel, statusDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boSorteggioRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNote() {
- return _note;
- }
-
- @Override
- public void setNote(String note) {
- _note = note;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNote", String.class);
-
- method.invoke(_boSorteggioRemoteModel, note);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getAnno() {
- return _anno;
- }
-
- @Override
- public void setAnno(String anno) {
- _anno = anno;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setAnno", String.class);
-
- method.invoke(_boSorteggioRemoteModel, anno);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getMese() {
- return _mese;
- }
-
- @Override
- public void setMese(String mese) {
- _mese = mese;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setMese", String.class);
-
- method.invoke(_boSorteggioRemoteModel, mese);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtSorteggio() {
- return _dtSorteggio;
- }
-
- @Override
- public void setDtSorteggio(Date dtSorteggio) {
- _dtSorteggio = dtSorteggio;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtSorteggio", Date.class);
-
- method.invoke(_boSorteggioRemoteModel, dtSorteggio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getStato() {
- return _stato;
- }
-
- @Override
- public void setStato(String stato) {
- _stato = stato;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStato", String.class);
-
- method.invoke(_boSorteggioRemoteModel, stato);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDettagli() {
- return _dettagli;
- }
-
- @Override
- public void setDettagli(String dettagli) {
- _dettagli = dettagli;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettagli", String.class);
-
- method.invoke(_boSorteggioRemoteModel, dettagli);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getNumeroEstrazione() {
- return _numeroEstrazione;
- }
-
- @Override
- public void setNumeroEstrazione(long numeroEstrazione) {
- _numeroEstrazione = numeroEstrazione;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNumeroEstrazione",
- long.class);
-
- method.invoke(_boSorteggioRemoteModel, numeroEstrazione);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getPratica() {
- return _pratica;
- }
-
- @Override
- public void setPratica(String pratica) {
- _pratica = pratica;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setPratica", String.class);
-
- method.invoke(_boSorteggioRemoteModel, pratica);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCommittente() {
- return _committente;
- }
-
- @Override
- public void setCommittente(String committente) {
- _committente = committente;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCommittente", String.class);
-
- method.invoke(_boSorteggioRemoteModel, committente);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getComune() {
- return _comune;
- }
-
- @Override
- public void setComune(String comune) {
- _comune = comune;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComune", String.class);
-
- method.invoke(_boSorteggioRemoteModel, comune);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getProvincia() {
- return _provincia;
- }
-
- @Override
- public void setProvincia(String provincia) {
- _provincia = provincia;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setProvincia", String.class);
-
- method.invoke(_boSorteggioRemoteModel, provincia);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTecnico() {
- return _tecnico;
- }
-
- @Override
- public void setTecnico(String tecnico) {
- _tecnico = tecnico;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTecnico", String.class);
-
- method.invoke(_boSorteggioRemoteModel, tecnico);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getMesePrecedente() {
- return _mesePrecedente;
- }
-
- @Override
- public void setMesePrecedente(String mesePrecedente) {
- _mesePrecedente = mesePrecedente;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setMesePrecedente",
- String.class);
-
- method.invoke(_boSorteggioRemoteModel, mesePrecedente);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getEsterna() {
- return _esterna;
- }
-
- @Override
- public boolean isEsterna() {
- return _esterna;
- }
-
- @Override
- public void setEsterna(boolean esterna) {
- _esterna = esterna;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setEsterna", boolean.class);
-
- method.invoke(_boSorteggioRemoteModel, esterna);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getPraticaEsternaId() {
- return _praticaEsternaId;
- }
-
- @Override
- public void setPraticaEsternaId(long praticaEsternaId) {
- _praticaEsternaId = praticaEsternaId;
-
- if (_boSorteggioRemoteModel != null) {
- try {
- Class> clazz = _boSorteggioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setPraticaEsternaId",
- long.class);
-
- method.invoke(_boSorteggioRemoteModel, praticaEsternaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoSorteggio.class.getName()));
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved}
- */
- @Override
- public boolean getApproved() {
- return isApproved();
- }
-
- @Override
- public boolean isApproved() {
- if (getStatus() == WorkflowConstants.STATUS_APPROVED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isDenied() {
- if (getStatus() == WorkflowConstants.STATUS_DENIED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isDraft() {
- if (getStatus() == WorkflowConstants.STATUS_DRAFT) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isExpired() {
- if (getStatus() == WorkflowConstants.STATUS_EXPIRED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isInactive() {
- if (getStatus() == WorkflowConstants.STATUS_INACTIVE) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isIncomplete() {
- if (getStatus() == WorkflowConstants.STATUS_INCOMPLETE) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isPending() {
- if (getStatus() == WorkflowConstants.STATUS_PENDING) {
- return true;
- }
- else {
- return false;
- }
- }
-
- @Override
- public boolean isScheduled() {
- if (getStatus() == WorkflowConstants.STATUS_SCHEDULED) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public BaseModel> getBoSorteggioRemoteModel() {
- return _boSorteggioRemoteModel;
- }
-
- public void setBoSorteggioRemoteModel(BaseModel> boSorteggioRemoteModel) {
- _boSorteggioRemoteModel = boSorteggioRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boSorteggioRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boSorteggioRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoSorteggioLocalServiceUtil.addBoSorteggio(this);
- }
- else {
- BoSorteggioLocalServiceUtil.updateBoSorteggio(this);
- }
- }
-
- @Override
- public BoSorteggio toEscapedModel() {
- return (BoSorteggio)ProxyUtil.newProxyInstance(BoSorteggio.class.getClassLoader(),
- new Class[] { BoSorteggio.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoSorteggioClp clone = new BoSorteggioClp();
-
- clone.setUuid(getUuid());
- clone.setSorteggioId(getSorteggioId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setStatus(getStatus());
- clone.setStatusByUserId(getStatusByUserId());
- clone.setStatusByUserName(getStatusByUserName());
- clone.setStatusDate(getStatusDate());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setNote(getNote());
- clone.setAnno(getAnno());
- clone.setMese(getMese());
- clone.setDtSorteggio(getDtSorteggio());
- clone.setStato(getStato());
- clone.setDettagli(getDettagli());
- clone.setNumeroEstrazione(getNumeroEstrazione());
- clone.setPratica(getPratica());
- clone.setCommittente(getCommittente());
- clone.setComune(getComune());
- clone.setProvincia(getProvincia());
- clone.setTecnico(getTecnico());
- clone.setMesePrecedente(getMesePrecedente());
- clone.setEsterna(getEsterna());
- clone.setPraticaEsternaId(getPraticaEsternaId());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoSorteggio boSorteggio) {
- long primaryKey = boSorteggio.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSorteggioClp)) {
- return false;
- }
-
- BoSorteggioClp boSorteggio = (BoSorteggioClp)obj;
-
- long primaryKey = boSorteggio.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(57);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", sorteggioId=");
- sb.append(getSorteggioId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", status=");
- sb.append(getStatus());
- sb.append(", statusByUserId=");
- sb.append(getStatusByUserId());
- sb.append(", statusByUserName=");
- sb.append(getStatusByUserName());
- sb.append(", statusDate=");
- sb.append(getStatusDate());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", note=");
- sb.append(getNote());
- sb.append(", anno=");
- sb.append(getAnno());
- sb.append(", mese=");
- sb.append(getMese());
- sb.append(", dtSorteggio=");
- sb.append(getDtSorteggio());
- sb.append(", stato=");
- sb.append(getStato());
- sb.append(", dettagli=");
- sb.append(getDettagli());
- sb.append(", numeroEstrazione=");
- sb.append(getNumeroEstrazione());
- sb.append(", pratica=");
- sb.append(getPratica());
- sb.append(", committente=");
- sb.append(getCommittente());
- sb.append(", comune=");
- sb.append(getComune());
- sb.append(", provincia=");
- sb.append(getProvincia());
- sb.append(", tecnico=");
- sb.append(getTecnico());
- sb.append(", mesePrecedente=");
- sb.append(getMesePrecedente());
- sb.append(", esterna=");
- sb.append(getEsterna());
- sb.append(", praticaEsternaId=");
- sb.append(getPraticaEsternaId());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(88);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoSorteggio");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "sorteggioId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "status");
- sb.append(
- "statusByUserId");
- sb.append(
- "statusByUserName");
- sb.append(
- "statusDate");
- sb.append(
- "dettPraticaId");
- sb.append(
- "note");
- sb.append(
- "anno");
- sb.append(
- "mese");
- sb.append(
- "dtSorteggio");
- sb.append(
- "stato");
- sb.append(
- "dettagli");
- sb.append(
- "numeroEstrazione");
- sb.append(
- "pratica");
- sb.append(
- "committente");
- sb.append(
- "comune");
- sb.append(
- "provincia");
- sb.append(
- "tecnico");
- sb.append(
- "mesePrecedente");
- sb.append(
- "esterna");
- sb.append(
- "praticaEsternaId");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _sorteggioId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private int _status;
- private long _statusByUserId;
- private String _statusByUserUuid;
- private String _statusByUserName;
- private Date _statusDate;
- private long _dettPraticaId;
- private String _note;
- private String _anno;
- private String _mese;
- private Date _dtSorteggio;
- private String _stato;
- private String _dettagli;
- private long _numeroEstrazione;
- private String _pratica;
- private String _committente;
- private String _comune;
- private String _provincia;
- private String _tecnico;
- private String _mesePrecedente;
- private boolean _esterna;
- private long _praticaEsternaId;
- private BaseModel> _boSorteggioRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioModel.java
deleted file mode 100644
index f55330ab..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioModel.java
+++ /dev/null
@@ -1,662 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.model.WorkflowedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoSorteggio service. Represents a row in the "gc_sorteggio" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoSorteggioModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoSorteggioImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSorteggio
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSorteggioImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoSorteggioModelImpl
- * @generated
- */
-public interface BoSorteggioModel extends BaseModel,
- StagedGroupedModel, WorkflowedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo sorteggio model instance should use the {@link BoSorteggio} interface instead.
- */
-
- /**
- * Returns the primary key of this bo sorteggio.
- *
- * @return the primary key of this bo sorteggio
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo sorteggio.
- *
- * @param primaryKey the primary key of this bo sorteggio
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo sorteggio.
- *
- * @return the uuid of this bo sorteggio
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo sorteggio.
- *
- * @param uuid the uuid of this bo sorteggio
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the sorteggio ID of this bo sorteggio.
- *
- * @return the sorteggio ID of this bo sorteggio
- */
- public long getSorteggioId();
-
- /**
- * Sets the sorteggio ID of this bo sorteggio.
- *
- * @param sorteggioId the sorteggio ID of this bo sorteggio
- */
- public void setSorteggioId(long sorteggioId);
-
- /**
- * Returns the company ID of this bo sorteggio.
- *
- * @return the company ID of this bo sorteggio
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo sorteggio.
- *
- * @param companyId the company ID of this bo sorteggio
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo sorteggio.
- *
- * @return the user ID of this bo sorteggio
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo sorteggio.
- *
- * @param userId the user ID of this bo sorteggio
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo sorteggio.
- *
- * @return the user uuid of this bo sorteggio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo sorteggio.
- *
- * @param userUuid the user uuid of this bo sorteggio
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo sorteggio.
- *
- * @return the user name of this bo sorteggio
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo sorteggio.
- *
- * @param userName the user name of this bo sorteggio
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo sorteggio.
- *
- * @return the create date of this bo sorteggio
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo sorteggio.
- *
- * @param createDate the create date of this bo sorteggio
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo sorteggio.
- *
- * @return the modified date of this bo sorteggio
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo sorteggio.
- *
- * @param modifiedDate the modified date of this bo sorteggio
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo sorteggio.
- *
- * @return the group ID of this bo sorteggio
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo sorteggio.
- *
- * @param groupId the group ID of this bo sorteggio
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the status of this bo sorteggio.
- *
- * @return the status of this bo sorteggio
- */
- @Override
- public int getStatus();
-
- /**
- * Sets the status of this bo sorteggio.
- *
- * @param status the status of this bo sorteggio
- */
- @Override
- public void setStatus(int status);
-
- /**
- * Returns the status by user ID of this bo sorteggio.
- *
- * @return the status by user ID of this bo sorteggio
- */
- @Override
- public long getStatusByUserId();
-
- /**
- * Sets the status by user ID of this bo sorteggio.
- *
- * @param statusByUserId the status by user ID of this bo sorteggio
- */
- @Override
- public void setStatusByUserId(long statusByUserId);
-
- /**
- * Returns the status by user uuid of this bo sorteggio.
- *
- * @return the status by user uuid of this bo sorteggio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getStatusByUserUuid() throws SystemException;
-
- /**
- * Sets the status by user uuid of this bo sorteggio.
- *
- * @param statusByUserUuid the status by user uuid of this bo sorteggio
- */
- @Override
- public void setStatusByUserUuid(String statusByUserUuid);
-
- /**
- * Returns the status by user name of this bo sorteggio.
- *
- * @return the status by user name of this bo sorteggio
- */
- @AutoEscape
- @Override
- public String getStatusByUserName();
-
- /**
- * Sets the status by user name of this bo sorteggio.
- *
- * @param statusByUserName the status by user name of this bo sorteggio
- */
- @Override
- public void setStatusByUserName(String statusByUserName);
-
- /**
- * Returns the status date of this bo sorteggio.
- *
- * @return the status date of this bo sorteggio
- */
- @Override
- public Date getStatusDate();
-
- /**
- * Sets the status date of this bo sorteggio.
- *
- * @param statusDate the status date of this bo sorteggio
- */
- @Override
- public void setStatusDate(Date statusDate);
-
- /**
- * Returns the dett pratica ID of this bo sorteggio.
- *
- * @return the dett pratica ID of this bo sorteggio
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo sorteggio.
- *
- * @param dettPraticaId the dett pratica ID of this bo sorteggio
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the note of this bo sorteggio.
- *
- * @return the note of this bo sorteggio
- */
- @AutoEscape
- public String getNote();
-
- /**
- * Sets the note of this bo sorteggio.
- *
- * @param note the note of this bo sorteggio
- */
- public void setNote(String note);
-
- /**
- * Returns the anno of this bo sorteggio.
- *
- * @return the anno of this bo sorteggio
- */
- @AutoEscape
- public String getAnno();
-
- /**
- * Sets the anno of this bo sorteggio.
- *
- * @param anno the anno of this bo sorteggio
- */
- public void setAnno(String anno);
-
- /**
- * Returns the mese of this bo sorteggio.
- *
- * @return the mese of this bo sorteggio
- */
- @AutoEscape
- public String getMese();
-
- /**
- * Sets the mese of this bo sorteggio.
- *
- * @param mese the mese of this bo sorteggio
- */
- public void setMese(String mese);
-
- /**
- * Returns the dt sorteggio of this bo sorteggio.
- *
- * @return the dt sorteggio of this bo sorteggio
- */
- public Date getDtSorteggio();
-
- /**
- * Sets the dt sorteggio of this bo sorteggio.
- *
- * @param dtSorteggio the dt sorteggio of this bo sorteggio
- */
- public void setDtSorteggio(Date dtSorteggio);
-
- /**
- * Returns the stato of this bo sorteggio.
- *
- * @return the stato of this bo sorteggio
- */
- @AutoEscape
- public String getStato();
-
- /**
- * Sets the stato of this bo sorteggio.
- *
- * @param stato the stato of this bo sorteggio
- */
- public void setStato(String stato);
-
- /**
- * Returns the dettagli of this bo sorteggio.
- *
- * @return the dettagli of this bo sorteggio
- */
- @AutoEscape
- public String getDettagli();
-
- /**
- * Sets the dettagli of this bo sorteggio.
- *
- * @param dettagli the dettagli of this bo sorteggio
- */
- public void setDettagli(String dettagli);
-
- /**
- * Returns the numero estrazione of this bo sorteggio.
- *
- * @return the numero estrazione of this bo sorteggio
- */
- public long getNumeroEstrazione();
-
- /**
- * Sets the numero estrazione of this bo sorteggio.
- *
- * @param numeroEstrazione the numero estrazione of this bo sorteggio
- */
- public void setNumeroEstrazione(long numeroEstrazione);
-
- /**
- * Returns the pratica of this bo sorteggio.
- *
- * @return the pratica of this bo sorteggio
- */
- @AutoEscape
- public String getPratica();
-
- /**
- * Sets the pratica of this bo sorteggio.
- *
- * @param pratica the pratica of this bo sorteggio
- */
- public void setPratica(String pratica);
-
- /**
- * Returns the committente of this bo sorteggio.
- *
- * @return the committente of this bo sorteggio
- */
- @AutoEscape
- public String getCommittente();
-
- /**
- * Sets the committente of this bo sorteggio.
- *
- * @param committente the committente of this bo sorteggio
- */
- public void setCommittente(String committente);
-
- /**
- * Returns the comune of this bo sorteggio.
- *
- * @return the comune of this bo sorteggio
- */
- @AutoEscape
- public String getComune();
-
- /**
- * Sets the comune of this bo sorteggio.
- *
- * @param comune the comune of this bo sorteggio
- */
- public void setComune(String comune);
-
- /**
- * Returns the provincia of this bo sorteggio.
- *
- * @return the provincia of this bo sorteggio
- */
- @AutoEscape
- public String getProvincia();
-
- /**
- * Sets the provincia of this bo sorteggio.
- *
- * @param provincia the provincia of this bo sorteggio
- */
- public void setProvincia(String provincia);
-
- /**
- * Returns the tecnico of this bo sorteggio.
- *
- * @return the tecnico of this bo sorteggio
- */
- @AutoEscape
- public String getTecnico();
-
- /**
- * Sets the tecnico of this bo sorteggio.
- *
- * @param tecnico the tecnico of this bo sorteggio
- */
- public void setTecnico(String tecnico);
-
- /**
- * Returns the mese precedente of this bo sorteggio.
- *
- * @return the mese precedente of this bo sorteggio
- */
- @AutoEscape
- public String getMesePrecedente();
-
- /**
- * Sets the mese precedente of this bo sorteggio.
- *
- * @param mesePrecedente the mese precedente of this bo sorteggio
- */
- public void setMesePrecedente(String mesePrecedente);
-
- /**
- * Returns the esterna of this bo sorteggio.
- *
- * @return the esterna of this bo sorteggio
- */
- public boolean getEsterna();
-
- /**
- * Returns true if this bo sorteggio is esterna.
- *
- * @return true if this bo sorteggio is esterna; false otherwise
- */
- public boolean isEsterna();
-
- /**
- * Sets whether this bo sorteggio is esterna.
- *
- * @param esterna the esterna of this bo sorteggio
- */
- public void setEsterna(boolean esterna);
-
- /**
- * Returns the pratica esterna ID of this bo sorteggio.
- *
- * @return the pratica esterna ID of this bo sorteggio
- */
- public long getPraticaEsternaId();
-
- /**
- * Sets the pratica esterna ID of this bo sorteggio.
- *
- * @param praticaEsternaId the pratica esterna ID of this bo sorteggio
- */
- public void setPraticaEsternaId(long praticaEsternaId);
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
- */
- @Override
- public boolean getApproved();
-
- /**
- * Returns true if this bo sorteggio is approved.
- *
- * @return true if this bo sorteggio is approved; false otherwise
- */
- @Override
- public boolean isApproved();
-
- /**
- * Returns true if this bo sorteggio is denied.
- *
- * @return true if this bo sorteggio is denied; false otherwise
- */
- @Override
- public boolean isDenied();
-
- /**
- * Returns true if this bo sorteggio is a draft.
- *
- * @return true if this bo sorteggio is a draft; false otherwise
- */
- @Override
- public boolean isDraft();
-
- /**
- * Returns true if this bo sorteggio is expired.
- *
- * @return true if this bo sorteggio is expired; false otherwise
- */
- @Override
- public boolean isExpired();
-
- /**
- * Returns true if this bo sorteggio is inactive.
- *
- * @return true if this bo sorteggio is inactive; false otherwise
- */
- @Override
- public boolean isInactive();
-
- /**
- * Returns true if this bo sorteggio is incomplete.
- *
- * @return true if this bo sorteggio is incomplete; false otherwise
- */
- @Override
- public boolean isIncomplete();
-
- /**
- * Returns true if this bo sorteggio is pending.
- *
- * @return true if this bo sorteggio is pending; false otherwise
- */
- @Override
- public boolean isPending();
-
- /**
- * Returns true if this bo sorteggio is scheduled.
- *
- * @return true if this bo sorteggio is scheduled; false otherwise
- */
- @Override
- public boolean isScheduled();
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSorteggio boSorteggio);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSorteggio toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSorteggio toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioSoap.java
deleted file mode 100644
index 115878d7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioSoap.java
+++ /dev/null
@@ -1,369 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoSorteggioSoap implements Serializable {
- public static BoSorteggioSoap toSoapModel(BoSorteggio model) {
- BoSorteggioSoap soapModel = new BoSorteggioSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setSorteggioId(model.getSorteggioId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setStatus(model.getStatus());
- soapModel.setStatusByUserId(model.getStatusByUserId());
- soapModel.setStatusByUserName(model.getStatusByUserName());
- soapModel.setStatusDate(model.getStatusDate());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setNote(model.getNote());
- soapModel.setAnno(model.getAnno());
- soapModel.setMese(model.getMese());
- soapModel.setDtSorteggio(model.getDtSorteggio());
- soapModel.setStato(model.getStato());
- soapModel.setDettagli(model.getDettagli());
- soapModel.setNumeroEstrazione(model.getNumeroEstrazione());
- soapModel.setPratica(model.getPratica());
- soapModel.setCommittente(model.getCommittente());
- soapModel.setComune(model.getComune());
- soapModel.setProvincia(model.getProvincia());
- soapModel.setTecnico(model.getTecnico());
- soapModel.setMesePrecedente(model.getMesePrecedente());
- soapModel.setEsterna(model.getEsterna());
- soapModel.setPraticaEsternaId(model.getPraticaEsternaId());
-
- return soapModel;
- }
-
- public static BoSorteggioSoap[] toSoapModels(BoSorteggio[] models) {
- BoSorteggioSoap[] soapModels = new BoSorteggioSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSorteggioSoap[][] toSoapModels(BoSorteggio[][] models) {
- BoSorteggioSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoSorteggioSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoSorteggioSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoSorteggioSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoSorteggio model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoSorteggioSoap[soapModels.size()]);
- }
-
- public BoSorteggioSoap() {
- }
-
- public long getPrimaryKey() {
- return _sorteggioId;
- }
-
- public void setPrimaryKey(long pk) {
- setSorteggioId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getSorteggioId() {
- return _sorteggioId;
- }
-
- public void setSorteggioId(long sorteggioId) {
- _sorteggioId = sorteggioId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public int getStatus() {
- return _status;
- }
-
- public void setStatus(int status) {
- _status = status;
- }
-
- public long getStatusByUserId() {
- return _statusByUserId;
- }
-
- public void setStatusByUserId(long statusByUserId) {
- _statusByUserId = statusByUserId;
- }
-
- public String getStatusByUserName() {
- return _statusByUserName;
- }
-
- public void setStatusByUserName(String statusByUserName) {
- _statusByUserName = statusByUserName;
- }
-
- public Date getStatusDate() {
- return _statusDate;
- }
-
- public void setStatusDate(Date statusDate) {
- _statusDate = statusDate;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public String getNote() {
- return _note;
- }
-
- public void setNote(String note) {
- _note = note;
- }
-
- public String getAnno() {
- return _anno;
- }
-
- public void setAnno(String anno) {
- _anno = anno;
- }
-
- public String getMese() {
- return _mese;
- }
-
- public void setMese(String mese) {
- _mese = mese;
- }
-
- public Date getDtSorteggio() {
- return _dtSorteggio;
- }
-
- public void setDtSorteggio(Date dtSorteggio) {
- _dtSorteggio = dtSorteggio;
- }
-
- public String getStato() {
- return _stato;
- }
-
- public void setStato(String stato) {
- _stato = stato;
- }
-
- public String getDettagli() {
- return _dettagli;
- }
-
- public void setDettagli(String dettagli) {
- _dettagli = dettagli;
- }
-
- public long getNumeroEstrazione() {
- return _numeroEstrazione;
- }
-
- public void setNumeroEstrazione(long numeroEstrazione) {
- _numeroEstrazione = numeroEstrazione;
- }
-
- public String getPratica() {
- return _pratica;
- }
-
- public void setPratica(String pratica) {
- _pratica = pratica;
- }
-
- public String getCommittente() {
- return _committente;
- }
-
- public void setCommittente(String committente) {
- _committente = committente;
- }
-
- public String getComune() {
- return _comune;
- }
-
- public void setComune(String comune) {
- _comune = comune;
- }
-
- public String getProvincia() {
- return _provincia;
- }
-
- public void setProvincia(String provincia) {
- _provincia = provincia;
- }
-
- public String getTecnico() {
- return _tecnico;
- }
-
- public void setTecnico(String tecnico) {
- _tecnico = tecnico;
- }
-
- public String getMesePrecedente() {
- return _mesePrecedente;
- }
-
- public void setMesePrecedente(String mesePrecedente) {
- _mesePrecedente = mesePrecedente;
- }
-
- public boolean getEsterna() {
- return _esterna;
- }
-
- public boolean isEsterna() {
- return _esterna;
- }
-
- public void setEsterna(boolean esterna) {
- _esterna = esterna;
- }
-
- public long getPraticaEsternaId() {
- return _praticaEsternaId;
- }
-
- public void setPraticaEsternaId(long praticaEsternaId) {
- _praticaEsternaId = praticaEsternaId;
- }
-
- private String _uuid;
- private long _sorteggioId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private int _status;
- private long _statusByUserId;
- private String _statusByUserName;
- private Date _statusDate;
- private long _dettPraticaId;
- private String _note;
- private String _anno;
- private String _mese;
- private Date _dtSorteggio;
- private String _stato;
- private String _dettagli;
- private long _numeroEstrazione;
- private String _pratica;
- private String _committente;
- private String _comune;
- private String _provincia;
- private String _tecnico;
- private String _mesePrecedente;
- private boolean _esterna;
- private long _praticaEsternaId;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioWrapper.java
deleted file mode 100644
index d587cd55..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoSorteggioWrapper.java
+++ /dev/null
@@ -1,1126 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoSorteggio}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoSorteggio
- * @generated
- */
-public class BoSorteggioWrapper implements BoSorteggio,
- ModelWrapper {
- public BoSorteggioWrapper(BoSorteggio boSorteggio) {
- _boSorteggio = boSorteggio;
- }
-
- @Override
- public Class> getModelClass() {
- return BoSorteggio.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoSorteggio.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("sorteggioId", getSorteggioId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("status", getStatus());
- attributes.put("statusByUserId", getStatusByUserId());
- attributes.put("statusByUserName", getStatusByUserName());
- attributes.put("statusDate", getStatusDate());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("note", getNote());
- attributes.put("anno", getAnno());
- attributes.put("mese", getMese());
- attributes.put("dtSorteggio", getDtSorteggio());
- attributes.put("stato", getStato());
- attributes.put("dettagli", getDettagli());
- attributes.put("numeroEstrazione", getNumeroEstrazione());
- attributes.put("pratica", getPratica());
- attributes.put("committente", getCommittente());
- attributes.put("comune", getComune());
- attributes.put("provincia", getProvincia());
- attributes.put("tecnico", getTecnico());
- attributes.put("mesePrecedente", getMesePrecedente());
- attributes.put("esterna", getEsterna());
- attributes.put("praticaEsternaId", getPraticaEsternaId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long sorteggioId = (Long)attributes.get("sorteggioId");
-
- if (sorteggioId != null) {
- setSorteggioId(sorteggioId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Integer status = (Integer)attributes.get("status");
-
- if (status != null) {
- setStatus(status);
- }
-
- Long statusByUserId = (Long)attributes.get("statusByUserId");
-
- if (statusByUserId != null) {
- setStatusByUserId(statusByUserId);
- }
-
- String statusByUserName = (String)attributes.get("statusByUserName");
-
- if (statusByUserName != null) {
- setStatusByUserName(statusByUserName);
- }
-
- Date statusDate = (Date)attributes.get("statusDate");
-
- if (statusDate != null) {
- setStatusDate(statusDate);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String note = (String)attributes.get("note");
-
- if (note != null) {
- setNote(note);
- }
-
- String anno = (String)attributes.get("anno");
-
- if (anno != null) {
- setAnno(anno);
- }
-
- String mese = (String)attributes.get("mese");
-
- if (mese != null) {
- setMese(mese);
- }
-
- Date dtSorteggio = (Date)attributes.get("dtSorteggio");
-
- if (dtSorteggio != null) {
- setDtSorteggio(dtSorteggio);
- }
-
- String stato = (String)attributes.get("stato");
-
- if (stato != null) {
- setStato(stato);
- }
-
- String dettagli = (String)attributes.get("dettagli");
-
- if (dettagli != null) {
- setDettagli(dettagli);
- }
-
- Long numeroEstrazione = (Long)attributes.get("numeroEstrazione");
-
- if (numeroEstrazione != null) {
- setNumeroEstrazione(numeroEstrazione);
- }
-
- String pratica = (String)attributes.get("pratica");
-
- if (pratica != null) {
- setPratica(pratica);
- }
-
- String committente = (String)attributes.get("committente");
-
- if (committente != null) {
- setCommittente(committente);
- }
-
- String comune = (String)attributes.get("comune");
-
- if (comune != null) {
- setComune(comune);
- }
-
- String provincia = (String)attributes.get("provincia");
-
- if (provincia != null) {
- setProvincia(provincia);
- }
-
- String tecnico = (String)attributes.get("tecnico");
-
- if (tecnico != null) {
- setTecnico(tecnico);
- }
-
- String mesePrecedente = (String)attributes.get("mesePrecedente");
-
- if (mesePrecedente != null) {
- setMesePrecedente(mesePrecedente);
- }
-
- Boolean esterna = (Boolean)attributes.get("esterna");
-
- if (esterna != null) {
- setEsterna(esterna);
- }
-
- Long praticaEsternaId = (Long)attributes.get("praticaEsternaId");
-
- if (praticaEsternaId != null) {
- setPraticaEsternaId(praticaEsternaId);
- }
- }
-
- /**
- * Returns the primary key of this bo sorteggio.
- *
- * @return the primary key of this bo sorteggio
- */
- @Override
- public long getPrimaryKey() {
- return _boSorteggio.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo sorteggio.
- *
- * @param primaryKey the primary key of this bo sorteggio
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boSorteggio.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo sorteggio.
- *
- * @return the uuid of this bo sorteggio
- */
- @Override
- public java.lang.String getUuid() {
- return _boSorteggio.getUuid();
- }
-
- /**
- * Sets the uuid of this bo sorteggio.
- *
- * @param uuid the uuid of this bo sorteggio
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boSorteggio.setUuid(uuid);
- }
-
- /**
- * Returns the sorteggio ID of this bo sorteggio.
- *
- * @return the sorteggio ID of this bo sorteggio
- */
- @Override
- public long getSorteggioId() {
- return _boSorteggio.getSorteggioId();
- }
-
- /**
- * Sets the sorteggio ID of this bo sorteggio.
- *
- * @param sorteggioId the sorteggio ID of this bo sorteggio
- */
- @Override
- public void setSorteggioId(long sorteggioId) {
- _boSorteggio.setSorteggioId(sorteggioId);
- }
-
- /**
- * Returns the company ID of this bo sorteggio.
- *
- * @return the company ID of this bo sorteggio
- */
- @Override
- public long getCompanyId() {
- return _boSorteggio.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo sorteggio.
- *
- * @param companyId the company ID of this bo sorteggio
- */
- @Override
- public void setCompanyId(long companyId) {
- _boSorteggio.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo sorteggio.
- *
- * @return the user ID of this bo sorteggio
- */
- @Override
- public long getUserId() {
- return _boSorteggio.getUserId();
- }
-
- /**
- * Sets the user ID of this bo sorteggio.
- *
- * @param userId the user ID of this bo sorteggio
- */
- @Override
- public void setUserId(long userId) {
- _boSorteggio.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo sorteggio.
- *
- * @return the user uuid of this bo sorteggio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boSorteggio.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo sorteggio.
- *
- * @param userUuid the user uuid of this bo sorteggio
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boSorteggio.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo sorteggio.
- *
- * @return the user name of this bo sorteggio
- */
- @Override
- public java.lang.String getUserName() {
- return _boSorteggio.getUserName();
- }
-
- /**
- * Sets the user name of this bo sorteggio.
- *
- * @param userName the user name of this bo sorteggio
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boSorteggio.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo sorteggio.
- *
- * @return the create date of this bo sorteggio
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boSorteggio.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo sorteggio.
- *
- * @param createDate the create date of this bo sorteggio
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boSorteggio.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo sorteggio.
- *
- * @return the modified date of this bo sorteggio
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boSorteggio.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo sorteggio.
- *
- * @param modifiedDate the modified date of this bo sorteggio
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boSorteggio.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo sorteggio.
- *
- * @return the group ID of this bo sorteggio
- */
- @Override
- public long getGroupId() {
- return _boSorteggio.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo sorteggio.
- *
- * @param groupId the group ID of this bo sorteggio
- */
- @Override
- public void setGroupId(long groupId) {
- _boSorteggio.setGroupId(groupId);
- }
-
- /**
- * Returns the status of this bo sorteggio.
- *
- * @return the status of this bo sorteggio
- */
- @Override
- public int getStatus() {
- return _boSorteggio.getStatus();
- }
-
- /**
- * Sets the status of this bo sorteggio.
- *
- * @param status the status of this bo sorteggio
- */
- @Override
- public void setStatus(int status) {
- _boSorteggio.setStatus(status);
- }
-
- /**
- * Returns the status by user ID of this bo sorteggio.
- *
- * @return the status by user ID of this bo sorteggio
- */
- @Override
- public long getStatusByUserId() {
- return _boSorteggio.getStatusByUserId();
- }
-
- /**
- * Sets the status by user ID of this bo sorteggio.
- *
- * @param statusByUserId the status by user ID of this bo sorteggio
- */
- @Override
- public void setStatusByUserId(long statusByUserId) {
- _boSorteggio.setStatusByUserId(statusByUserId);
- }
-
- /**
- * Returns the status by user uuid of this bo sorteggio.
- *
- * @return the status by user uuid of this bo sorteggio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getStatusByUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boSorteggio.getStatusByUserUuid();
- }
-
- /**
- * Sets the status by user uuid of this bo sorteggio.
- *
- * @param statusByUserUuid the status by user uuid of this bo sorteggio
- */
- @Override
- public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
- _boSorteggio.setStatusByUserUuid(statusByUserUuid);
- }
-
- /**
- * Returns the status by user name of this bo sorteggio.
- *
- * @return the status by user name of this bo sorteggio
- */
- @Override
- public java.lang.String getStatusByUserName() {
- return _boSorteggio.getStatusByUserName();
- }
-
- /**
- * Sets the status by user name of this bo sorteggio.
- *
- * @param statusByUserName the status by user name of this bo sorteggio
- */
- @Override
- public void setStatusByUserName(java.lang.String statusByUserName) {
- _boSorteggio.setStatusByUserName(statusByUserName);
- }
-
- /**
- * Returns the status date of this bo sorteggio.
- *
- * @return the status date of this bo sorteggio
- */
- @Override
- public java.util.Date getStatusDate() {
- return _boSorteggio.getStatusDate();
- }
-
- /**
- * Sets the status date of this bo sorteggio.
- *
- * @param statusDate the status date of this bo sorteggio
- */
- @Override
- public void setStatusDate(java.util.Date statusDate) {
- _boSorteggio.setStatusDate(statusDate);
- }
-
- /**
- * Returns the dett pratica ID of this bo sorteggio.
- *
- * @return the dett pratica ID of this bo sorteggio
- */
- @Override
- public long getDettPraticaId() {
- return _boSorteggio.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo sorteggio.
- *
- * @param dettPraticaId the dett pratica ID of this bo sorteggio
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boSorteggio.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the note of this bo sorteggio.
- *
- * @return the note of this bo sorteggio
- */
- @Override
- public java.lang.String getNote() {
- return _boSorteggio.getNote();
- }
-
- /**
- * Sets the note of this bo sorteggio.
- *
- * @param note the note of this bo sorteggio
- */
- @Override
- public void setNote(java.lang.String note) {
- _boSorteggio.setNote(note);
- }
-
- /**
- * Returns the anno of this bo sorteggio.
- *
- * @return the anno of this bo sorteggio
- */
- @Override
- public java.lang.String getAnno() {
- return _boSorteggio.getAnno();
- }
-
- /**
- * Sets the anno of this bo sorteggio.
- *
- * @param anno the anno of this bo sorteggio
- */
- @Override
- public void setAnno(java.lang.String anno) {
- _boSorteggio.setAnno(anno);
- }
-
- /**
- * Returns the mese of this bo sorteggio.
- *
- * @return the mese of this bo sorteggio
- */
- @Override
- public java.lang.String getMese() {
- return _boSorteggio.getMese();
- }
-
- /**
- * Sets the mese of this bo sorteggio.
- *
- * @param mese the mese of this bo sorteggio
- */
- @Override
- public void setMese(java.lang.String mese) {
- _boSorteggio.setMese(mese);
- }
-
- /**
- * Returns the dt sorteggio of this bo sorteggio.
- *
- * @return the dt sorteggio of this bo sorteggio
- */
- @Override
- public java.util.Date getDtSorteggio() {
- return _boSorteggio.getDtSorteggio();
- }
-
- /**
- * Sets the dt sorteggio of this bo sorteggio.
- *
- * @param dtSorteggio the dt sorteggio of this bo sorteggio
- */
- @Override
- public void setDtSorteggio(java.util.Date dtSorteggio) {
- _boSorteggio.setDtSorteggio(dtSorteggio);
- }
-
- /**
- * Returns the stato of this bo sorteggio.
- *
- * @return the stato of this bo sorteggio
- */
- @Override
- public java.lang.String getStato() {
- return _boSorteggio.getStato();
- }
-
- /**
- * Sets the stato of this bo sorteggio.
- *
- * @param stato the stato of this bo sorteggio
- */
- @Override
- public void setStato(java.lang.String stato) {
- _boSorteggio.setStato(stato);
- }
-
- /**
- * Returns the dettagli of this bo sorteggio.
- *
- * @return the dettagli of this bo sorteggio
- */
- @Override
- public java.lang.String getDettagli() {
- return _boSorteggio.getDettagli();
- }
-
- /**
- * Sets the dettagli of this bo sorteggio.
- *
- * @param dettagli the dettagli of this bo sorteggio
- */
- @Override
- public void setDettagli(java.lang.String dettagli) {
- _boSorteggio.setDettagli(dettagli);
- }
-
- /**
- * Returns the numero estrazione of this bo sorteggio.
- *
- * @return the numero estrazione of this bo sorteggio
- */
- @Override
- public long getNumeroEstrazione() {
- return _boSorteggio.getNumeroEstrazione();
- }
-
- /**
- * Sets the numero estrazione of this bo sorteggio.
- *
- * @param numeroEstrazione the numero estrazione of this bo sorteggio
- */
- @Override
- public void setNumeroEstrazione(long numeroEstrazione) {
- _boSorteggio.setNumeroEstrazione(numeroEstrazione);
- }
-
- /**
- * Returns the pratica of this bo sorteggio.
- *
- * @return the pratica of this bo sorteggio
- */
- @Override
- public java.lang.String getPratica() {
- return _boSorteggio.getPratica();
- }
-
- /**
- * Sets the pratica of this bo sorteggio.
- *
- * @param pratica the pratica of this bo sorteggio
- */
- @Override
- public void setPratica(java.lang.String pratica) {
- _boSorteggio.setPratica(pratica);
- }
-
- /**
- * Returns the committente of this bo sorteggio.
- *
- * @return the committente of this bo sorteggio
- */
- @Override
- public java.lang.String getCommittente() {
- return _boSorteggio.getCommittente();
- }
-
- /**
- * Sets the committente of this bo sorteggio.
- *
- * @param committente the committente of this bo sorteggio
- */
- @Override
- public void setCommittente(java.lang.String committente) {
- _boSorteggio.setCommittente(committente);
- }
-
- /**
- * Returns the comune of this bo sorteggio.
- *
- * @return the comune of this bo sorteggio
- */
- @Override
- public java.lang.String getComune() {
- return _boSorteggio.getComune();
- }
-
- /**
- * Sets the comune of this bo sorteggio.
- *
- * @param comune the comune of this bo sorteggio
- */
- @Override
- public void setComune(java.lang.String comune) {
- _boSorteggio.setComune(comune);
- }
-
- /**
- * Returns the provincia of this bo sorteggio.
- *
- * @return the provincia of this bo sorteggio
- */
- @Override
- public java.lang.String getProvincia() {
- return _boSorteggio.getProvincia();
- }
-
- /**
- * Sets the provincia of this bo sorteggio.
- *
- * @param provincia the provincia of this bo sorteggio
- */
- @Override
- public void setProvincia(java.lang.String provincia) {
- _boSorteggio.setProvincia(provincia);
- }
-
- /**
- * Returns the tecnico of this bo sorteggio.
- *
- * @return the tecnico of this bo sorteggio
- */
- @Override
- public java.lang.String getTecnico() {
- return _boSorteggio.getTecnico();
- }
-
- /**
- * Sets the tecnico of this bo sorteggio.
- *
- * @param tecnico the tecnico of this bo sorteggio
- */
- @Override
- public void setTecnico(java.lang.String tecnico) {
- _boSorteggio.setTecnico(tecnico);
- }
-
- /**
- * Returns the mese precedente of this bo sorteggio.
- *
- * @return the mese precedente of this bo sorteggio
- */
- @Override
- public java.lang.String getMesePrecedente() {
- return _boSorteggio.getMesePrecedente();
- }
-
- /**
- * Sets the mese precedente of this bo sorteggio.
- *
- * @param mesePrecedente the mese precedente of this bo sorteggio
- */
- @Override
- public void setMesePrecedente(java.lang.String mesePrecedente) {
- _boSorteggio.setMesePrecedente(mesePrecedente);
- }
-
- /**
- * Returns the esterna of this bo sorteggio.
- *
- * @return the esterna of this bo sorteggio
- */
- @Override
- public boolean getEsterna() {
- return _boSorteggio.getEsterna();
- }
-
- /**
- * Returns true if this bo sorteggio is esterna.
- *
- * @return true if this bo sorteggio is esterna; false otherwise
- */
- @Override
- public boolean isEsterna() {
- return _boSorteggio.isEsterna();
- }
-
- /**
- * Sets whether this bo sorteggio is esterna.
- *
- * @param esterna the esterna of this bo sorteggio
- */
- @Override
- public void setEsterna(boolean esterna) {
- _boSorteggio.setEsterna(esterna);
- }
-
- /**
- * Returns the pratica esterna ID of this bo sorteggio.
- *
- * @return the pratica esterna ID of this bo sorteggio
- */
- @Override
- public long getPraticaEsternaId() {
- return _boSorteggio.getPraticaEsternaId();
- }
-
- /**
- * Sets the pratica esterna ID of this bo sorteggio.
- *
- * @param praticaEsternaId the pratica esterna ID of this bo sorteggio
- */
- @Override
- public void setPraticaEsternaId(long praticaEsternaId) {
- _boSorteggio.setPraticaEsternaId(praticaEsternaId);
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
- */
- @Override
- public boolean getApproved() {
- return _boSorteggio.getApproved();
- }
-
- /**
- * Returns true if this bo sorteggio is approved.
- *
- * @return true if this bo sorteggio is approved; false otherwise
- */
- @Override
- public boolean isApproved() {
- return _boSorteggio.isApproved();
- }
-
- /**
- * Returns true if this bo sorteggio is denied.
- *
- * @return true if this bo sorteggio is denied; false otherwise
- */
- @Override
- public boolean isDenied() {
- return _boSorteggio.isDenied();
- }
-
- /**
- * Returns true if this bo sorteggio is a draft.
- *
- * @return true if this bo sorteggio is a draft; false otherwise
- */
- @Override
- public boolean isDraft() {
- return _boSorteggio.isDraft();
- }
-
- /**
- * Returns true if this bo sorteggio is expired.
- *
- * @return true if this bo sorteggio is expired; false otherwise
- */
- @Override
- public boolean isExpired() {
- return _boSorteggio.isExpired();
- }
-
- /**
- * Returns true if this bo sorteggio is inactive.
- *
- * @return true if this bo sorteggio is inactive; false otherwise
- */
- @Override
- public boolean isInactive() {
- return _boSorteggio.isInactive();
- }
-
- /**
- * Returns true if this bo sorteggio is incomplete.
- *
- * @return true if this bo sorteggio is incomplete; false otherwise
- */
- @Override
- public boolean isIncomplete() {
- return _boSorteggio.isIncomplete();
- }
-
- /**
- * Returns true if this bo sorteggio is pending.
- *
- * @return true if this bo sorteggio is pending; false otherwise
- */
- @Override
- public boolean isPending() {
- return _boSorteggio.isPending();
- }
-
- /**
- * Returns true if this bo sorteggio is scheduled.
- *
- * @return true if this bo sorteggio is scheduled; false otherwise
- */
- @Override
- public boolean isScheduled() {
- return _boSorteggio.isScheduled();
- }
-
- @Override
- public boolean isNew() {
- return _boSorteggio.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boSorteggio.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boSorteggio.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boSorteggio.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boSorteggio.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boSorteggio.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boSorteggio.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boSorteggio.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boSorteggio.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boSorteggio.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boSorteggio.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoSorteggioWrapper((BoSorteggio)_boSorteggio.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoSorteggio boSorteggio) {
- return _boSorteggio.compareTo(boSorteggio);
- }
-
- @Override
- public int hashCode() {
- return _boSorteggio.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boSorteggio.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSorteggio toEscapedModel() {
- return new BoSorteggioWrapper(_boSorteggio.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoSorteggio toUnescapedModel() {
- return new BoSorteggioWrapper(_boSorteggio.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boSorteggio.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boSorteggio.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boSorteggio.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoSorteggioWrapper)) {
- return false;
- }
-
- BoSorteggioWrapper boSorteggioWrapper = (BoSorteggioWrapper)obj;
-
- if (Validator.equals(_boSorteggio, boSorteggioWrapper._boSorteggio)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boSorteggio.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoSorteggio getWrappedBoSorteggio() {
- return _boSorteggio;
- }
-
- @Override
- public BoSorteggio getWrappedModel() {
- return _boSorteggio;
- }
-
- @Override
- public void resetOriginalValues() {
- _boSorteggio.resetOriginalValues();
- }
-
- private BoSorteggio _boSorteggio;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPratica.java
deleted file mode 100644
index fe5f8e50..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPratica.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoStoricoSoggettoPratica service. Represents a row in the "gc_storicosoggettopratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoStoricoSoggettoPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaModelImpl
- * @generated
- */
-public interface BoStoricoSoggettoPratica extends BoStoricoSoggettoPraticaModel,
- PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaClp.java
deleted file mode 100644
index db8ddbda..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaClp.java
+++ /dev/null
@@ -1,665 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.DateUtil;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoStoricoSoggettoPraticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoStoricoSoggettoPraticaClp extends BaseModelImpl
- implements BoStoricoSoggettoPratica {
- public BoStoricoSoggettoPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoStoricoSoggettoPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoStoricoSoggettoPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _storicoSoggettoPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setStoricoSoggettoPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _storicoSoggettoPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("storicoSoggettoPraticaId", getStoricoSoggettoPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("nome", getNome());
- attributes.put("cognome", getCognome());
- attributes.put("codiceFiscale", getCodiceFiscale());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long storicoSoggettoPraticaId = (Long)attributes.get(
- "storicoSoggettoPraticaId");
-
- if (storicoSoggettoPraticaId != null) {
- setStoricoSoggettoPraticaId(storicoSoggettoPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- String nome = (String)attributes.get("nome");
-
- if (nome != null) {
- setNome(nome);
- }
-
- String cognome = (String)attributes.get("cognome");
-
- if (cognome != null) {
- setCognome(cognome);
- }
-
- String codiceFiscale = (String)attributes.get("codiceFiscale");
-
- if (codiceFiscale != null) {
- setCodiceFiscale(codiceFiscale);
- }
- }
-
- @Override
- public long getStoricoSoggettoPraticaId() {
- return _storicoSoggettoPraticaId;
- }
-
- @Override
- public void setStoricoSoggettoPraticaId(long storicoSoggettoPraticaId) {
- _storicoSoggettoPraticaId = storicoSoggettoPraticaId;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStoricoSoggettoPraticaId",
- long.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel,
- storicoSoggettoPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getNome() {
- return _nome;
- }
-
- @Override
- public void setNome(String nome) {
- _nome = nome;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setNome", String.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, nome);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCognome() {
- return _cognome;
- }
-
- @Override
- public void setCognome(String cognome) {
- _cognome = cognome;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCognome", String.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel, cognome);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodiceFiscale() {
- return _codiceFiscale;
- }
-
- @Override
- public void setCodiceFiscale(String codiceFiscale) {
- _codiceFiscale = codiceFiscale;
-
- if (_boStoricoSoggettoPraticaRemoteModel != null) {
- try {
- Class> clazz = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodiceFiscale", String.class);
-
- method.invoke(_boStoricoSoggettoPraticaRemoteModel,
- codiceFiscale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoStoricoSoggettoPraticaRemoteModel() {
- return _boStoricoSoggettoPraticaRemoteModel;
- }
-
- public void setBoStoricoSoggettoPraticaRemoteModel(
- BaseModel> boStoricoSoggettoPraticaRemoteModel) {
- _boStoricoSoggettoPraticaRemoteModel = boStoricoSoggettoPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boStoricoSoggettoPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boStoricoSoggettoPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoStoricoSoggettoPraticaLocalServiceUtil.addBoStoricoSoggettoPratica(this);
- }
- else {
- BoStoricoSoggettoPraticaLocalServiceUtil.updateBoStoricoSoggettoPratica(this);
- }
- }
-
- @Override
- public BoStoricoSoggettoPratica toEscapedModel() {
- return (BoStoricoSoggettoPratica)ProxyUtil.newProxyInstance(BoStoricoSoggettoPratica.class.getClassLoader(),
- new Class[] { BoStoricoSoggettoPratica.class },
- new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoStoricoSoggettoPraticaClp clone = new BoStoricoSoggettoPraticaClp();
-
- clone.setStoricoSoggettoPraticaId(getStoricoSoggettoPraticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setNome(getNome());
- clone.setCognome(getCognome());
- clone.setCodiceFiscale(getCodiceFiscale());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoStoricoSoggettoPratica boStoricoSoggettoPratica) {
- int value = 0;
-
- value = DateUtil.compareTo(getCreateDate(),
- boStoricoSoggettoPratica.getCreateDate());
-
- if (value != 0) {
- return value;
- }
-
- return 0;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoStoricoSoggettoPraticaClp)) {
- return false;
- }
-
- BoStoricoSoggettoPraticaClp boStoricoSoggettoPratica = (BoStoricoSoggettoPraticaClp)obj;
-
- long primaryKey = boStoricoSoggettoPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(23);
-
- sb.append("{storicoSoggettoPraticaId=");
- sb.append(getStoricoSoggettoPraticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", nome=");
- sb.append(getNome());
- sb.append(", cognome=");
- sb.append(getCognome());
- sb.append(", codiceFiscale=");
- sb.append(getCodiceFiscale());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(37);
-
- sb.append("");
- sb.append(
- "it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica");
- sb.append("");
-
- sb.append(
- "storicoSoggettoPraticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "intPraticaId");
- sb.append(
- "nome");
- sb.append(
- "cognome");
- sb.append(
- "codiceFiscale");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _storicoSoggettoPraticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private String _nome;
- private String _cognome;
- private String _codiceFiscale;
- private BaseModel> _boStoricoSoggettoPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaModel.java
deleted file mode 100644
index 5719cee3..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaModel.java
+++ /dev/null
@@ -1,309 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.GroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoStoricoSoggettoPratica service. Represents a row in the "gc_storicosoggettopratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoStoricoSoggettoPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoStoricoSoggettoPraticaModelImpl
- * @generated
- */
-public interface BoStoricoSoggettoPraticaModel extends BaseModel,
- GroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo storico soggetto pratica model instance should use the {@link BoStoricoSoggettoPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo storico soggetto pratica.
- *
- * @return the primary key of this bo storico soggetto pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo storico soggetto pratica.
- *
- * @param primaryKey the primary key of this bo storico soggetto pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the storico soggetto pratica ID of this bo storico soggetto pratica.
- *
- * @return the storico soggetto pratica ID of this bo storico soggetto pratica
- */
- public long getStoricoSoggettoPraticaId();
-
- /**
- * Sets the storico soggetto pratica ID of this bo storico soggetto pratica.
- *
- * @param storicoSoggettoPraticaId the storico soggetto pratica ID of this bo storico soggetto pratica
- */
- public void setStoricoSoggettoPraticaId(long storicoSoggettoPraticaId);
-
- /**
- * Returns the company ID of this bo storico soggetto pratica.
- *
- * @return the company ID of this bo storico soggetto pratica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo storico soggetto pratica.
- *
- * @param companyId the company ID of this bo storico soggetto pratica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo storico soggetto pratica.
- *
- * @return the user ID of this bo storico soggetto pratica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo storico soggetto pratica.
- *
- * @param userId the user ID of this bo storico soggetto pratica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo storico soggetto pratica.
- *
- * @return the user uuid of this bo storico soggetto pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo storico soggetto pratica.
- *
- * @param userUuid the user uuid of this bo storico soggetto pratica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo storico soggetto pratica.
- *
- * @return the user name of this bo storico soggetto pratica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo storico soggetto pratica.
- *
- * @param userName the user name of this bo storico soggetto pratica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo storico soggetto pratica.
- *
- * @return the create date of this bo storico soggetto pratica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo storico soggetto pratica.
- *
- * @param createDate the create date of this bo storico soggetto pratica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo storico soggetto pratica.
- *
- * @return the modified date of this bo storico soggetto pratica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo storico soggetto pratica.
- *
- * @param modifiedDate the modified date of this bo storico soggetto pratica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo storico soggetto pratica.
- *
- * @return the group ID of this bo storico soggetto pratica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo storico soggetto pratica.
- *
- * @param groupId the group ID of this bo storico soggetto pratica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the int pratica ID of this bo storico soggetto pratica.
- *
- * @return the int pratica ID of this bo storico soggetto pratica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo storico soggetto pratica.
- *
- * @param intPraticaId the int pratica ID of this bo storico soggetto pratica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the nome of this bo storico soggetto pratica.
- *
- * @return the nome of this bo storico soggetto pratica
- */
- @AutoEscape
- public String getNome();
-
- /**
- * Sets the nome of this bo storico soggetto pratica.
- *
- * @param nome the nome of this bo storico soggetto pratica
- */
- public void setNome(String nome);
-
- /**
- * Returns the cognome of this bo storico soggetto pratica.
- *
- * @return the cognome of this bo storico soggetto pratica
- */
- @AutoEscape
- public String getCognome();
-
- /**
- * Sets the cognome of this bo storico soggetto pratica.
- *
- * @param cognome the cognome of this bo storico soggetto pratica
- */
- public void setCognome(String cognome);
-
- /**
- * Returns the codice fiscale of this bo storico soggetto pratica.
- *
- * @return the codice fiscale of this bo storico soggetto pratica
- */
- @AutoEscape
- public String getCodiceFiscale();
-
- /**
- * Sets the codice fiscale of this bo storico soggetto pratica.
- *
- * @param codiceFiscale the codice fiscale of this bo storico soggetto pratica
- */
- public void setCodiceFiscale(String codiceFiscale);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica boStoricoSoggettoPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaSoap.java
deleted file mode 100644
index f68158f0..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaSoap.java
+++ /dev/null
@@ -1,199 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoStoricoSoggettoPraticaSoap implements Serializable {
- public static BoStoricoSoggettoPraticaSoap toSoapModel(
- BoStoricoSoggettoPratica model) {
- BoStoricoSoggettoPraticaSoap soapModel = new BoStoricoSoggettoPraticaSoap();
-
- soapModel.setStoricoSoggettoPraticaId(model.getStoricoSoggettoPraticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setNome(model.getNome());
- soapModel.setCognome(model.getCognome());
- soapModel.setCodiceFiscale(model.getCodiceFiscale());
-
- return soapModel;
- }
-
- public static BoStoricoSoggettoPraticaSoap[] toSoapModels(
- BoStoricoSoggettoPratica[] models) {
- BoStoricoSoggettoPraticaSoap[] soapModels = new BoStoricoSoggettoPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoStoricoSoggettoPraticaSoap[][] toSoapModels(
- BoStoricoSoggettoPratica[][] models) {
- BoStoricoSoggettoPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoStoricoSoggettoPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoStoricoSoggettoPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoStoricoSoggettoPraticaSoap[] toSoapModels(
- List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoStoricoSoggettoPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoStoricoSoggettoPraticaSoap[soapModels.size()]);
- }
-
- public BoStoricoSoggettoPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _storicoSoggettoPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setStoricoSoggettoPraticaId(pk);
- }
-
- public long getStoricoSoggettoPraticaId() {
- return _storicoSoggettoPraticaId;
- }
-
- public void setStoricoSoggettoPraticaId(long storicoSoggettoPraticaId) {
- _storicoSoggettoPraticaId = storicoSoggettoPraticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public String getNome() {
- return _nome;
- }
-
- public void setNome(String nome) {
- _nome = nome;
- }
-
- public String getCognome() {
- return _cognome;
- }
-
- public void setCognome(String cognome) {
- _cognome = cognome;
- }
-
- public String getCodiceFiscale() {
- return _codiceFiscale;
- }
-
- public void setCodiceFiscale(String codiceFiscale) {
- _codiceFiscale = codiceFiscale;
- }
-
- private long _storicoSoggettoPraticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private String _nome;
- private String _cognome;
- private String _codiceFiscale;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaWrapper.java
deleted file mode 100644
index bcd7773e..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoStoricoSoggettoPraticaWrapper.java
+++ /dev/null
@@ -1,544 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoStoricoSoggettoPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoStoricoSoggettoPratica
- * @generated
- */
-public class BoStoricoSoggettoPraticaWrapper implements BoStoricoSoggettoPratica,
- ModelWrapper {
- public BoStoricoSoggettoPraticaWrapper(
- BoStoricoSoggettoPratica boStoricoSoggettoPratica) {
- _boStoricoSoggettoPratica = boStoricoSoggettoPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoStoricoSoggettoPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoStoricoSoggettoPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("storicoSoggettoPraticaId", getStoricoSoggettoPraticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("nome", getNome());
- attributes.put("cognome", getCognome());
- attributes.put("codiceFiscale", getCodiceFiscale());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long storicoSoggettoPraticaId = (Long)attributes.get(
- "storicoSoggettoPraticaId");
-
- if (storicoSoggettoPraticaId != null) {
- setStoricoSoggettoPraticaId(storicoSoggettoPraticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- String nome = (String)attributes.get("nome");
-
- if (nome != null) {
- setNome(nome);
- }
-
- String cognome = (String)attributes.get("cognome");
-
- if (cognome != null) {
- setCognome(cognome);
- }
-
- String codiceFiscale = (String)attributes.get("codiceFiscale");
-
- if (codiceFiscale != null) {
- setCodiceFiscale(codiceFiscale);
- }
- }
-
- /**
- * Returns the primary key of this bo storico soggetto pratica.
- *
- * @return the primary key of this bo storico soggetto pratica
- */
- @Override
- public long getPrimaryKey() {
- return _boStoricoSoggettoPratica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo storico soggetto pratica.
- *
- * @param primaryKey the primary key of this bo storico soggetto pratica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boStoricoSoggettoPratica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the storico soggetto pratica ID of this bo storico soggetto pratica.
- *
- * @return the storico soggetto pratica ID of this bo storico soggetto pratica
- */
- @Override
- public long getStoricoSoggettoPraticaId() {
- return _boStoricoSoggettoPratica.getStoricoSoggettoPraticaId();
- }
-
- /**
- * Sets the storico soggetto pratica ID of this bo storico soggetto pratica.
- *
- * @param storicoSoggettoPraticaId the storico soggetto pratica ID of this bo storico soggetto pratica
- */
- @Override
- public void setStoricoSoggettoPraticaId(long storicoSoggettoPraticaId) {
- _boStoricoSoggettoPratica.setStoricoSoggettoPraticaId(storicoSoggettoPraticaId);
- }
-
- /**
- * Returns the company ID of this bo storico soggetto pratica.
- *
- * @return the company ID of this bo storico soggetto pratica
- */
- @Override
- public long getCompanyId() {
- return _boStoricoSoggettoPratica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo storico soggetto pratica.
- *
- * @param companyId the company ID of this bo storico soggetto pratica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boStoricoSoggettoPratica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo storico soggetto pratica.
- *
- * @return the user ID of this bo storico soggetto pratica
- */
- @Override
- public long getUserId() {
- return _boStoricoSoggettoPratica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo storico soggetto pratica.
- *
- * @param userId the user ID of this bo storico soggetto pratica
- */
- @Override
- public void setUserId(long userId) {
- _boStoricoSoggettoPratica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo storico soggetto pratica.
- *
- * @return the user uuid of this bo storico soggetto pratica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boStoricoSoggettoPratica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo storico soggetto pratica.
- *
- * @param userUuid the user uuid of this bo storico soggetto pratica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boStoricoSoggettoPratica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo storico soggetto pratica.
- *
- * @return the user name of this bo storico soggetto pratica
- */
- @Override
- public java.lang.String getUserName() {
- return _boStoricoSoggettoPratica.getUserName();
- }
-
- /**
- * Sets the user name of this bo storico soggetto pratica.
- *
- * @param userName the user name of this bo storico soggetto pratica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boStoricoSoggettoPratica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo storico soggetto pratica.
- *
- * @return the create date of this bo storico soggetto pratica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boStoricoSoggettoPratica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo storico soggetto pratica.
- *
- * @param createDate the create date of this bo storico soggetto pratica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boStoricoSoggettoPratica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo storico soggetto pratica.
- *
- * @return the modified date of this bo storico soggetto pratica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boStoricoSoggettoPratica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo storico soggetto pratica.
- *
- * @param modifiedDate the modified date of this bo storico soggetto pratica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boStoricoSoggettoPratica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo storico soggetto pratica.
- *
- * @return the group ID of this bo storico soggetto pratica
- */
- @Override
- public long getGroupId() {
- return _boStoricoSoggettoPratica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo storico soggetto pratica.
- *
- * @param groupId the group ID of this bo storico soggetto pratica
- */
- @Override
- public void setGroupId(long groupId) {
- _boStoricoSoggettoPratica.setGroupId(groupId);
- }
-
- /**
- * Returns the int pratica ID of this bo storico soggetto pratica.
- *
- * @return the int pratica ID of this bo storico soggetto pratica
- */
- @Override
- public long getIntPraticaId() {
- return _boStoricoSoggettoPratica.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo storico soggetto pratica.
- *
- * @param intPraticaId the int pratica ID of this bo storico soggetto pratica
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boStoricoSoggettoPratica.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the nome of this bo storico soggetto pratica.
- *
- * @return the nome of this bo storico soggetto pratica
- */
- @Override
- public java.lang.String getNome() {
- return _boStoricoSoggettoPratica.getNome();
- }
-
- /**
- * Sets the nome of this bo storico soggetto pratica.
- *
- * @param nome the nome of this bo storico soggetto pratica
- */
- @Override
- public void setNome(java.lang.String nome) {
- _boStoricoSoggettoPratica.setNome(nome);
- }
-
- /**
- * Returns the cognome of this bo storico soggetto pratica.
- *
- * @return the cognome of this bo storico soggetto pratica
- */
- @Override
- public java.lang.String getCognome() {
- return _boStoricoSoggettoPratica.getCognome();
- }
-
- /**
- * Sets the cognome of this bo storico soggetto pratica.
- *
- * @param cognome the cognome of this bo storico soggetto pratica
- */
- @Override
- public void setCognome(java.lang.String cognome) {
- _boStoricoSoggettoPratica.setCognome(cognome);
- }
-
- /**
- * Returns the codice fiscale of this bo storico soggetto pratica.
- *
- * @return the codice fiscale of this bo storico soggetto pratica
- */
- @Override
- public java.lang.String getCodiceFiscale() {
- return _boStoricoSoggettoPratica.getCodiceFiscale();
- }
-
- /**
- * Sets the codice fiscale of this bo storico soggetto pratica.
- *
- * @param codiceFiscale the codice fiscale of this bo storico soggetto pratica
- */
- @Override
- public void setCodiceFiscale(java.lang.String codiceFiscale) {
- _boStoricoSoggettoPratica.setCodiceFiscale(codiceFiscale);
- }
-
- @Override
- public boolean isNew() {
- return _boStoricoSoggettoPratica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boStoricoSoggettoPratica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boStoricoSoggettoPratica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boStoricoSoggettoPratica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boStoricoSoggettoPratica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boStoricoSoggettoPratica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boStoricoSoggettoPratica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boStoricoSoggettoPratica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boStoricoSoggettoPratica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boStoricoSoggettoPratica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boStoricoSoggettoPratica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoStoricoSoggettoPraticaWrapper((BoStoricoSoggettoPratica)_boStoricoSoggettoPratica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica boStoricoSoggettoPratica) {
- return _boStoricoSoggettoPratica.compareTo(boStoricoSoggettoPratica);
- }
-
- @Override
- public int hashCode() {
- return _boStoricoSoggettoPratica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boStoricoSoggettoPratica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica toEscapedModel() {
- return new BoStoricoSoggettoPraticaWrapper(_boStoricoSoggettoPratica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoStoricoSoggettoPratica toUnescapedModel() {
- return new BoStoricoSoggettoPraticaWrapper(_boStoricoSoggettoPratica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boStoricoSoggettoPratica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boStoricoSoggettoPratica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boStoricoSoggettoPratica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoStoricoSoggettoPraticaWrapper)) {
- return false;
- }
-
- BoStoricoSoggettoPraticaWrapper boStoricoSoggettoPraticaWrapper = (BoStoricoSoggettoPraticaWrapper)obj;
-
- if (Validator.equals(_boStoricoSoggettoPratica,
- boStoricoSoggettoPraticaWrapper._boStoricoSoggettoPratica)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoStoricoSoggettoPratica getWrappedBoStoricoSoggettoPratica() {
- return _boStoricoSoggettoPratica;
- }
-
- @Override
- public BoStoricoSoggettoPratica getWrappedModel() {
- return _boStoricoSoggettoPratica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boStoricoSoggettoPratica.resetOriginalValues();
- }
-
- private BoStoricoSoggettoPratica _boStoricoSoggettoPratica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempistica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempistica.java
deleted file mode 100644
index 11bf2671..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempistica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoTempistica service. Represents a row in the "gc_tempistica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTempisticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTempisticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTempisticaModelImpl
- * @generated
- */
-public interface BoTempistica extends BoTempisticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoTempisticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaClp.java
deleted file mode 100644
index a12f91fd..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaClp.java
+++ /dev/null
@@ -1,822 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoTempisticaLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoTempisticaClp extends BaseModelImpl
- implements BoTempistica {
- public BoTempisticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoTempistica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoTempistica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _tempisticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setTempisticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _tempisticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("tempisticaId", getTempisticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("tipo", getTipo());
- attributes.put("start", getStart());
- attributes.put("stop", getStop());
- attributes.put("wait", getWait());
- attributes.put("completo", getCompleto());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long tempisticaId = (Long)attributes.get("tempisticaId");
-
- if (tempisticaId != null) {
- setTempisticaId(tempisticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String tipo = (String)attributes.get("tipo");
-
- if (tipo != null) {
- setTipo(tipo);
- }
-
- Long start = (Long)attributes.get("start");
-
- if (start != null) {
- setStart(start);
- }
-
- Long stop = (Long)attributes.get("stop");
-
- if (stop != null) {
- setStop(stop);
- }
-
- Long wait = (Long)attributes.get("wait");
-
- if (wait != null) {
- setWait(wait);
- }
-
- Boolean completo = (Boolean)attributes.get("completo");
-
- if (completo != null) {
- setCompleto(completo);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_boTempisticaRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getTempisticaId() {
- return _tempisticaId;
- }
-
- @Override
- public void setTempisticaId(long tempisticaId) {
- _tempisticaId = tempisticaId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTempisticaId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, tempisticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boTempisticaRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boTempisticaRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boTempisticaRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_boTempisticaRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getTipo() {
- return _tipo;
- }
-
- @Override
- public void setTipo(String tipo) {
- _tipo = tipo;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTipo", String.class);
-
- method.invoke(_boTempisticaRemoteModel, tipo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getStart() {
- return _start;
- }
-
- @Override
- public void setStart(long start) {
- _start = start;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStart", long.class);
-
- method.invoke(_boTempisticaRemoteModel, start);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getStop() {
- return _stop;
- }
-
- @Override
- public void setStop(long stop) {
- _stop = stop;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setStop", long.class);
-
- method.invoke(_boTempisticaRemoteModel, stop);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getWait() {
- return _wait;
- }
-
- @Override
- public void setWait(long wait) {
- _wait = wait;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setWait", long.class);
-
- method.invoke(_boTempisticaRemoteModel, wait);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getCompleto() {
- return _completo;
- }
-
- @Override
- public boolean isCompleto() {
- return _completo;
- }
-
- @Override
- public void setCompleto(boolean completo) {
- _completo = completo;
-
- if (_boTempisticaRemoteModel != null) {
- try {
- Class> clazz = _boTempisticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompleto", boolean.class);
-
- method.invoke(_boTempisticaRemoteModel, completo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- BoTempistica.class.getName()));
- }
-
- public BaseModel> getBoTempisticaRemoteModel() {
- return _boTempisticaRemoteModel;
- }
-
- public void setBoTempisticaRemoteModel(BaseModel> boTempisticaRemoteModel) {
- _boTempisticaRemoteModel = boTempisticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boTempisticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boTempisticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoTempisticaLocalServiceUtil.addBoTempistica(this);
- }
- else {
- BoTempisticaLocalServiceUtil.updateBoTempistica(this);
- }
- }
-
- @Override
- public BoTempistica toEscapedModel() {
- return (BoTempistica)ProxyUtil.newProxyInstance(BoTempistica.class.getClassLoader(),
- new Class[] { BoTempistica.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoTempisticaClp clone = new BoTempisticaClp();
-
- clone.setUuid(getUuid());
- clone.setTempisticaId(getTempisticaId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setTipo(getTipo());
- clone.setStart(getStart());
- clone.setStop(getStop());
- clone.setWait(getWait());
- clone.setCompleto(getCompleto());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoTempistica boTempistica) {
- long primaryKey = boTempistica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoTempisticaClp)) {
- return false;
- }
-
- BoTempisticaClp boTempistica = (BoTempisticaClp)obj;
-
- long primaryKey = boTempistica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(31);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", tempisticaId=");
- sb.append(getTempisticaId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", tipo=");
- sb.append(getTipo());
- sb.append(", start=");
- sb.append(getStart());
- sb.append(", stop=");
- sb.append(getStop());
- sb.append(", wait=");
- sb.append(getWait());
- sb.append(", completo=");
- sb.append(getCompleto());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(49);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoTempistica");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "tempisticaId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "intPraticaId");
- sb.append(
- "dettPraticaId");
- sb.append(
- "tipo");
- sb.append(
- "start");
- sb.append(
- "stop");
- sb.append(
- "wait");
- sb.append(
- "completo");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _tempisticaId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private long _dettPraticaId;
- private String _tipo;
- private long _start;
- private long _stop;
- private long _wait;
- private boolean _completo;
- private BaseModel> _boTempisticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaModel.java
deleted file mode 100644
index 646d1472..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaModel.java
+++ /dev/null
@@ -1,373 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.StagedGroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoTempistica service. Represents a row in the "gc_tempistica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoTempisticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoTempisticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTempistica
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTempisticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTempisticaModelImpl
- * @generated
- */
-public interface BoTempisticaModel extends BaseModel,
- StagedGroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo tempistica model instance should use the {@link BoTempistica} interface instead.
- */
-
- /**
- * Returns the primary key of this bo tempistica.
- *
- * @return the primary key of this bo tempistica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo tempistica.
- *
- * @param primaryKey the primary key of this bo tempistica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this bo tempistica.
- *
- * @return the uuid of this bo tempistica
- */
- @AutoEscape
- @Override
- public String getUuid();
-
- /**
- * Sets the uuid of this bo tempistica.
- *
- * @param uuid the uuid of this bo tempistica
- */
- @Override
- public void setUuid(String uuid);
-
- /**
- * Returns the tempistica ID of this bo tempistica.
- *
- * @return the tempistica ID of this bo tempistica
- */
- public long getTempisticaId();
-
- /**
- * Sets the tempistica ID of this bo tempistica.
- *
- * @param tempisticaId the tempistica ID of this bo tempistica
- */
- public void setTempisticaId(long tempisticaId);
-
- /**
- * Returns the company ID of this bo tempistica.
- *
- * @return the company ID of this bo tempistica
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo tempistica.
- *
- * @param companyId the company ID of this bo tempistica
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo tempistica.
- *
- * @return the user ID of this bo tempistica
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo tempistica.
- *
- * @param userId the user ID of this bo tempistica
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo tempistica.
- *
- * @return the user uuid of this bo tempistica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo tempistica.
- *
- * @param userUuid the user uuid of this bo tempistica
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo tempistica.
- *
- * @return the user name of this bo tempistica
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo tempistica.
- *
- * @param userName the user name of this bo tempistica
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo tempistica.
- *
- * @return the create date of this bo tempistica
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo tempistica.
- *
- * @param createDate the create date of this bo tempistica
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo tempistica.
- *
- * @return the modified date of this bo tempistica
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo tempistica.
- *
- * @param modifiedDate the modified date of this bo tempistica
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo tempistica.
- *
- * @return the group ID of this bo tempistica
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo tempistica.
- *
- * @param groupId the group ID of this bo tempistica
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the int pratica ID of this bo tempistica.
- *
- * @return the int pratica ID of this bo tempistica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this bo tempistica.
- *
- * @param intPraticaId the int pratica ID of this bo tempistica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the dett pratica ID of this bo tempistica.
- *
- * @return the dett pratica ID of this bo tempistica
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this bo tempistica.
- *
- * @param dettPraticaId the dett pratica ID of this bo tempistica
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the tipo of this bo tempistica.
- *
- * @return the tipo of this bo tempistica
- */
- @AutoEscape
- public String getTipo();
-
- /**
- * Sets the tipo of this bo tempistica.
- *
- * @param tipo the tipo of this bo tempistica
- */
- public void setTipo(String tipo);
-
- /**
- * Returns the start of this bo tempistica.
- *
- * @return the start of this bo tempistica
- */
- public long getStart();
-
- /**
- * Sets the start of this bo tempistica.
- *
- * @param start the start of this bo tempistica
- */
- public void setStart(long start);
-
- /**
- * Returns the stop of this bo tempistica.
- *
- * @return the stop of this bo tempistica
- */
- public long getStop();
-
- /**
- * Sets the stop of this bo tempistica.
- *
- * @param stop the stop of this bo tempistica
- */
- public void setStop(long stop);
-
- /**
- * Returns the wait of this bo tempistica.
- *
- * @return the wait of this bo tempistica
- */
- public long getWait();
-
- /**
- * Sets the wait of this bo tempistica.
- *
- * @param wait the wait of this bo tempistica
- */
- public void setWait(long wait);
-
- /**
- * Returns the completo of this bo tempistica.
- *
- * @return the completo of this bo tempistica
- */
- public boolean getCompleto();
-
- /**
- * Returns true if this bo tempistica is completo.
- *
- * @return true if this bo tempistica is completo; false otherwise
- */
- public boolean isCompleto();
-
- /**
- * Sets whether this bo tempistica is completo.
- *
- * @param completo the completo of this bo tempistica
- */
- public void setCompleto(boolean completo);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoTempistica boTempistica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTempistica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTempistica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaSoap.java
deleted file mode 100644
index c82f4bba..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaSoap.java
+++ /dev/null
@@ -1,239 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoTempisticaSoap implements Serializable {
- public static BoTempisticaSoap toSoapModel(BoTempistica model) {
- BoTempisticaSoap soapModel = new BoTempisticaSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setTempisticaId(model.getTempisticaId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setTipo(model.getTipo());
- soapModel.setStart(model.getStart());
- soapModel.setStop(model.getStop());
- soapModel.setWait(model.getWait());
- soapModel.setCompleto(model.getCompleto());
-
- return soapModel;
- }
-
- public static BoTempisticaSoap[] toSoapModels(BoTempistica[] models) {
- BoTempisticaSoap[] soapModels = new BoTempisticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoTempisticaSoap[][] toSoapModels(BoTempistica[][] models) {
- BoTempisticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoTempisticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoTempisticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoTempisticaSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoTempistica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoTempisticaSoap[soapModels.size()]);
- }
-
- public BoTempisticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _tempisticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setTempisticaId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getTempisticaId() {
- return _tempisticaId;
- }
-
- public void setTempisticaId(long tempisticaId) {
- _tempisticaId = tempisticaId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public String getTipo() {
- return _tipo;
- }
-
- public void setTipo(String tipo) {
- _tipo = tipo;
- }
-
- public long getStart() {
- return _start;
- }
-
- public void setStart(long start) {
- _start = start;
- }
-
- public long getStop() {
- return _stop;
- }
-
- public void setStop(long stop) {
- _stop = stop;
- }
-
- public long getWait() {
- return _wait;
- }
-
- public void setWait(long wait) {
- _wait = wait;
- }
-
- public boolean getCompleto() {
- return _completo;
- }
-
- public boolean isCompleto() {
- return _completo;
- }
-
- public void setCompleto(boolean completo) {
- _completo = completo;
- }
-
- private String _uuid;
- private long _tempisticaId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _intPraticaId;
- private long _dettPraticaId;
- private String _tipo;
- private long _start;
- private long _stop;
- private long _wait;
- private boolean _completo;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaWrapper.java
deleted file mode 100644
index 3b24605c..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTempisticaWrapper.java
+++ /dev/null
@@ -1,665 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoTempistica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTempistica
- * @generated
- */
-public class BoTempisticaWrapper implements BoTempistica,
- ModelWrapper {
- public BoTempisticaWrapper(BoTempistica boTempistica) {
- _boTempistica = boTempistica;
- }
-
- @Override
- public Class> getModelClass() {
- return BoTempistica.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoTempistica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("tempisticaId", getTempisticaId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("tipo", getTipo());
- attributes.put("start", getStart());
- attributes.put("stop", getStop());
- attributes.put("wait", getWait());
- attributes.put("completo", getCompleto());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long tempisticaId = (Long)attributes.get("tempisticaId");
-
- if (tempisticaId != null) {
- setTempisticaId(tempisticaId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- String tipo = (String)attributes.get("tipo");
-
- if (tipo != null) {
- setTipo(tipo);
- }
-
- Long start = (Long)attributes.get("start");
-
- if (start != null) {
- setStart(start);
- }
-
- Long stop = (Long)attributes.get("stop");
-
- if (stop != null) {
- setStop(stop);
- }
-
- Long wait = (Long)attributes.get("wait");
-
- if (wait != null) {
- setWait(wait);
- }
-
- Boolean completo = (Boolean)attributes.get("completo");
-
- if (completo != null) {
- setCompleto(completo);
- }
- }
-
- /**
- * Returns the primary key of this bo tempistica.
- *
- * @return the primary key of this bo tempistica
- */
- @Override
- public long getPrimaryKey() {
- return _boTempistica.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo tempistica.
- *
- * @param primaryKey the primary key of this bo tempistica
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boTempistica.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the uuid of this bo tempistica.
- *
- * @return the uuid of this bo tempistica
- */
- @Override
- public java.lang.String getUuid() {
- return _boTempistica.getUuid();
- }
-
- /**
- * Sets the uuid of this bo tempistica.
- *
- * @param uuid the uuid of this bo tempistica
- */
- @Override
- public void setUuid(java.lang.String uuid) {
- _boTempistica.setUuid(uuid);
- }
-
- /**
- * Returns the tempistica ID of this bo tempistica.
- *
- * @return the tempistica ID of this bo tempistica
- */
- @Override
- public long getTempisticaId() {
- return _boTempistica.getTempisticaId();
- }
-
- /**
- * Sets the tempistica ID of this bo tempistica.
- *
- * @param tempisticaId the tempistica ID of this bo tempistica
- */
- @Override
- public void setTempisticaId(long tempisticaId) {
- _boTempistica.setTempisticaId(tempisticaId);
- }
-
- /**
- * Returns the company ID of this bo tempistica.
- *
- * @return the company ID of this bo tempistica
- */
- @Override
- public long getCompanyId() {
- return _boTempistica.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo tempistica.
- *
- * @param companyId the company ID of this bo tempistica
- */
- @Override
- public void setCompanyId(long companyId) {
- _boTempistica.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo tempistica.
- *
- * @return the user ID of this bo tempistica
- */
- @Override
- public long getUserId() {
- return _boTempistica.getUserId();
- }
-
- /**
- * Sets the user ID of this bo tempistica.
- *
- * @param userId the user ID of this bo tempistica
- */
- @Override
- public void setUserId(long userId) {
- _boTempistica.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo tempistica.
- *
- * @return the user uuid of this bo tempistica
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boTempistica.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo tempistica.
- *
- * @param userUuid the user uuid of this bo tempistica
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boTempistica.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo tempistica.
- *
- * @return the user name of this bo tempistica
- */
- @Override
- public java.lang.String getUserName() {
- return _boTempistica.getUserName();
- }
-
- /**
- * Sets the user name of this bo tempistica.
- *
- * @param userName the user name of this bo tempistica
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boTempistica.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo tempistica.
- *
- * @return the create date of this bo tempistica
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boTempistica.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo tempistica.
- *
- * @param createDate the create date of this bo tempistica
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boTempistica.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo tempistica.
- *
- * @return the modified date of this bo tempistica
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boTempistica.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo tempistica.
- *
- * @param modifiedDate the modified date of this bo tempistica
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boTempistica.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo tempistica.
- *
- * @return the group ID of this bo tempistica
- */
- @Override
- public long getGroupId() {
- return _boTempistica.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo tempistica.
- *
- * @param groupId the group ID of this bo tempistica
- */
- @Override
- public void setGroupId(long groupId) {
- _boTempistica.setGroupId(groupId);
- }
-
- /**
- * Returns the int pratica ID of this bo tempistica.
- *
- * @return the int pratica ID of this bo tempistica
- */
- @Override
- public long getIntPraticaId() {
- return _boTempistica.getIntPraticaId();
- }
-
- /**
- * Sets the int pratica ID of this bo tempistica.
- *
- * @param intPraticaId the int pratica ID of this bo tempistica
- */
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _boTempistica.setIntPraticaId(intPraticaId);
- }
-
- /**
- * Returns the dett pratica ID of this bo tempistica.
- *
- * @return the dett pratica ID of this bo tempistica
- */
- @Override
- public long getDettPraticaId() {
- return _boTempistica.getDettPraticaId();
- }
-
- /**
- * Sets the dett pratica ID of this bo tempistica.
- *
- * @param dettPraticaId the dett pratica ID of this bo tempistica
- */
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _boTempistica.setDettPraticaId(dettPraticaId);
- }
-
- /**
- * Returns the tipo of this bo tempistica.
- *
- * @return the tipo of this bo tempistica
- */
- @Override
- public java.lang.String getTipo() {
- return _boTempistica.getTipo();
- }
-
- /**
- * Sets the tipo of this bo tempistica.
- *
- * @param tipo the tipo of this bo tempistica
- */
- @Override
- public void setTipo(java.lang.String tipo) {
- _boTempistica.setTipo(tipo);
- }
-
- /**
- * Returns the start of this bo tempistica.
- *
- * @return the start of this bo tempistica
- */
- @Override
- public long getStart() {
- return _boTempistica.getStart();
- }
-
- /**
- * Sets the start of this bo tempistica.
- *
- * @param start the start of this bo tempistica
- */
- @Override
- public void setStart(long start) {
- _boTempistica.setStart(start);
- }
-
- /**
- * Returns the stop of this bo tempistica.
- *
- * @return the stop of this bo tempistica
- */
- @Override
- public long getStop() {
- return _boTempistica.getStop();
- }
-
- /**
- * Sets the stop of this bo tempistica.
- *
- * @param stop the stop of this bo tempistica
- */
- @Override
- public void setStop(long stop) {
- _boTempistica.setStop(stop);
- }
-
- /**
- * Returns the wait of this bo tempistica.
- *
- * @return the wait of this bo tempistica
- */
- @Override
- public long getWait() {
- return _boTempistica.getWait();
- }
-
- /**
- * Sets the wait of this bo tempistica.
- *
- * @param wait the wait of this bo tempistica
- */
- @Override
- public void setWait(long wait) {
- _boTempistica.setWait(wait);
- }
-
- /**
- * Returns the completo of this bo tempistica.
- *
- * @return the completo of this bo tempistica
- */
- @Override
- public boolean getCompleto() {
- return _boTempistica.getCompleto();
- }
-
- /**
- * Returns true if this bo tempistica is completo.
- *
- * @return true if this bo tempistica is completo; false otherwise
- */
- @Override
- public boolean isCompleto() {
- return _boTempistica.isCompleto();
- }
-
- /**
- * Sets whether this bo tempistica is completo.
- *
- * @param completo the completo of this bo tempistica
- */
- @Override
- public void setCompleto(boolean completo) {
- _boTempistica.setCompleto(completo);
- }
-
- @Override
- public boolean isNew() {
- return _boTempistica.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boTempistica.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boTempistica.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boTempistica.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boTempistica.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boTempistica.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boTempistica.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boTempistica.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boTempistica.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boTempistica.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boTempistica.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoTempisticaWrapper((BoTempistica)_boTempistica.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoTempistica boTempistica) {
- return _boTempistica.compareTo(boTempistica);
- }
-
- @Override
- public int hashCode() {
- return _boTempistica.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boTempistica.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTempistica toEscapedModel() {
- return new BoTempisticaWrapper(_boTempistica.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTempistica toUnescapedModel() {
- return new BoTempisticaWrapper(_boTempistica.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boTempistica.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boTempistica.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boTempistica.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoTempisticaWrapper)) {
- return false;
- }
-
- BoTempisticaWrapper boTempisticaWrapper = (BoTempisticaWrapper)obj;
-
- if (Validator.equals(_boTempistica, boTempisticaWrapper._boTempistica)) {
- return true;
- }
-
- return false;
- }
-
- @Override
- public StagedModelType getStagedModelType() {
- return _boTempistica.getStagedModelType();
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoTempistica getWrappedBoTempistica() {
- return _boTempistica;
- }
-
- @Override
- public BoTempistica getWrappedModel() {
- return _boTempistica;
- }
-
- @Override
- public void resetOriginalValues() {
- _boTempistica.resetOriginalValues();
- }
-
- private BoTempistica _boTempistica;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorio.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorio.java
deleted file mode 100644
index 9767925e..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorio.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the BoTerritorio service. Represents a row in the "gc_territorio" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTerritorioModel
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTerritorioImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTerritorioModelImpl
- * @generated
- */
-public interface BoTerritorio extends BoTerritorioModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.BoTerritorioImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioClp.java
deleted file mode 100644
index f0358f9d..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioClp.java
+++ /dev/null
@@ -1,696 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.portosimport.service.BoTerritorioLocalServiceUtil;
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class BoTerritorioClp extends BaseModelImpl
- implements BoTerritorio {
- public BoTerritorioClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return BoTerritorio.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoTerritorio.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _territorioId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setTerritorioId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _territorioId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("territorioId", getTerritorioId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("zonaId", getZonaId());
- attributes.put("fasciaId", getFasciaId());
- attributes.put("comuneId", getComuneId());
- attributes.put("dtIni", getDtIni());
- attributes.put("dtFin", getDtFin());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long territorioId = (Long)attributes.get("territorioId");
-
- if (territorioId != null) {
- setTerritorioId(territorioId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long zonaId = (Long)attributes.get("zonaId");
-
- if (zonaId != null) {
- setZonaId(zonaId);
- }
-
- Long fasciaId = (Long)attributes.get("fasciaId");
-
- if (fasciaId != null) {
- setFasciaId(fasciaId);
- }
-
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- Date dtIni = (Date)attributes.get("dtIni");
-
- if (dtIni != null) {
- setDtIni(dtIni);
- }
-
- Date dtFin = (Date)attributes.get("dtFin");
-
- if (dtFin != null) {
- setDtFin(dtFin);
- }
- }
-
- @Override
- public long getTerritorioId() {
- return _territorioId;
- }
-
- @Override
- public void setTerritorioId(long territorioId) {
- _territorioId = territorioId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setTerritorioId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, territorioId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getCompanyId() {
- return _companyId;
- }
-
- @Override
- public void setCompanyId(long companyId) {
- _companyId = companyId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCompanyId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, companyId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getUserId() {
- return _userId;
- }
-
- @Override
- public void setUserId(long userId) {
- _userId = userId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, userId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getUserUuid() throws SystemException {
- return PortalUtil.getUserValue(getUserId(), "uuid", _userUuid);
- }
-
- @Override
- public void setUserUuid(String userUuid) {
- _userUuid = userUuid;
- }
-
- @Override
- public String getUserName() {
- return _userName;
- }
-
- @Override
- public void setUserName(String userName) {
- _userName = userName;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUserName", String.class);
-
- method.invoke(_boTerritorioRemoteModel, userName);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getCreateDate() {
- return _createDate;
- }
-
- @Override
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCreateDate", Date.class);
-
- method.invoke(_boTerritorioRemoteModel, createDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- @Override
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setModifiedDate", Date.class);
-
- method.invoke(_boTerritorioRemoteModel, modifiedDate);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getZonaId() {
- return _zonaId;
- }
-
- @Override
- public void setZonaId(long zonaId) {
- _zonaId = zonaId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setZonaId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, zonaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getFasciaId() {
- return _fasciaId;
- }
-
- @Override
- public void setFasciaId(long fasciaId) {
- _fasciaId = fasciaId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFasciaId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, fasciaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getComuneId() {
- return _comuneId;
- }
-
- @Override
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneId", long.class);
-
- method.invoke(_boTerritorioRemoteModel, comuneId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtIni() {
- return _dtIni;
- }
-
- @Override
- public void setDtIni(Date dtIni) {
- _dtIni = dtIni;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtIni", Date.class);
-
- method.invoke(_boTerritorioRemoteModel, dtIni);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public Date getDtFin() {
- return _dtFin;
- }
-
- @Override
- public void setDtFin(Date dtFin) {
- _dtFin = dtFin;
-
- if (_boTerritorioRemoteModel != null) {
- try {
- Class> clazz = _boTerritorioRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDtFin", Date.class);
-
- method.invoke(_boTerritorioRemoteModel, dtFin);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getBoTerritorioRemoteModel() {
- return _boTerritorioRemoteModel;
- }
-
- public void setBoTerritorioRemoteModel(BaseModel> boTerritorioRemoteModel) {
- _boTerritorioRemoteModel = boTerritorioRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _boTerritorioRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_boTerritorioRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- BoTerritorioLocalServiceUtil.addBoTerritorio(this);
- }
- else {
- BoTerritorioLocalServiceUtil.updateBoTerritorio(this);
- }
- }
-
- @Override
- public BoTerritorio toEscapedModel() {
- return (BoTerritorio)ProxyUtil.newProxyInstance(BoTerritorio.class.getClassLoader(),
- new Class[] { BoTerritorio.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- BoTerritorioClp clone = new BoTerritorioClp();
-
- clone.setTerritorioId(getTerritorioId());
- clone.setCompanyId(getCompanyId());
- clone.setUserId(getUserId());
- clone.setUserName(getUserName());
- clone.setCreateDate(getCreateDate());
- clone.setModifiedDate(getModifiedDate());
- clone.setGroupId(getGroupId());
- clone.setZonaId(getZonaId());
- clone.setFasciaId(getFasciaId());
- clone.setComuneId(getComuneId());
- clone.setDtIni(getDtIni());
- clone.setDtFin(getDtFin());
-
- return clone;
- }
-
- @Override
- public int compareTo(BoTerritorio boTerritorio) {
- long primaryKey = boTerritorio.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoTerritorioClp)) {
- return false;
- }
-
- BoTerritorioClp boTerritorio = (BoTerritorioClp)obj;
-
- long primaryKey = boTerritorio.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(25);
-
- sb.append("{territorioId=");
- sb.append(getTerritorioId());
- sb.append(", companyId=");
- sb.append(getCompanyId());
- sb.append(", userId=");
- sb.append(getUserId());
- sb.append(", userName=");
- sb.append(getUserName());
- sb.append(", createDate=");
- sb.append(getCreateDate());
- sb.append(", modifiedDate=");
- sb.append(getModifiedDate());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", zonaId=");
- sb.append(getZonaId());
- sb.append(", fasciaId=");
- sb.append(getFasciaId());
- sb.append(", comuneId=");
- sb.append(getComuneId());
- sb.append(", dtIni=");
- sb.append(getDtIni());
- sb.append(", dtFin=");
- sb.append(getDtFin());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(40);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.BoTerritorio");
- sb.append("");
-
- sb.append(
- "territorioId");
- sb.append(
- "companyId");
- sb.append(
- "userId");
- sb.append(
- "userName");
- sb.append(
- "createDate");
- sb.append(
- "modifiedDate");
- sb.append(
- "groupId");
- sb.append(
- "zonaId");
- sb.append(
- "fasciaId");
- sb.append(
- "comuneId");
- sb.append(
- "dtIni");
- sb.append(
- "dtFin");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _territorioId;
- private long _companyId;
- private long _userId;
- private String _userUuid;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _zonaId;
- private long _fasciaId;
- private long _comuneId;
- private Date _dtIni;
- private Date _dtFin;
- private BaseModel> _boTerritorioRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioModel.java
deleted file mode 100644
index 247e65f0..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioModel.java
+++ /dev/null
@@ -1,319 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.model.GroupedModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-import java.util.Date;
-
-/**
- * The base model interface for the BoTerritorio service. Represents a row in the "gc_territorio" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.BoTerritorioModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.BoTerritorioImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTerritorio
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTerritorioImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.BoTerritorioModelImpl
- * @generated
- */
-public interface BoTerritorioModel extends BaseModel, GroupedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a bo territorio model instance should use the {@link BoTerritorio} interface instead.
- */
-
- /**
- * Returns the primary key of this bo territorio.
- *
- * @return the primary key of this bo territorio
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this bo territorio.
- *
- * @param primaryKey the primary key of this bo territorio
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the territorio ID of this bo territorio.
- *
- * @return the territorio ID of this bo territorio
- */
- public long getTerritorioId();
-
- /**
- * Sets the territorio ID of this bo territorio.
- *
- * @param territorioId the territorio ID of this bo territorio
- */
- public void setTerritorioId(long territorioId);
-
- /**
- * Returns the company ID of this bo territorio.
- *
- * @return the company ID of this bo territorio
- */
- @Override
- public long getCompanyId();
-
- /**
- * Sets the company ID of this bo territorio.
- *
- * @param companyId the company ID of this bo territorio
- */
- @Override
- public void setCompanyId(long companyId);
-
- /**
- * Returns the user ID of this bo territorio.
- *
- * @return the user ID of this bo territorio
- */
- @Override
- public long getUserId();
-
- /**
- * Sets the user ID of this bo territorio.
- *
- * @param userId the user ID of this bo territorio
- */
- @Override
- public void setUserId(long userId);
-
- /**
- * Returns the user uuid of this bo territorio.
- *
- * @return the user uuid of this bo territorio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public String getUserUuid() throws SystemException;
-
- /**
- * Sets the user uuid of this bo territorio.
- *
- * @param userUuid the user uuid of this bo territorio
- */
- @Override
- public void setUserUuid(String userUuid);
-
- /**
- * Returns the user name of this bo territorio.
- *
- * @return the user name of this bo territorio
- */
- @AutoEscape
- @Override
- public String getUserName();
-
- /**
- * Sets the user name of this bo territorio.
- *
- * @param userName the user name of this bo territorio
- */
- @Override
- public void setUserName(String userName);
-
- /**
- * Returns the create date of this bo territorio.
- *
- * @return the create date of this bo territorio
- */
- @Override
- public Date getCreateDate();
-
- /**
- * Sets the create date of this bo territorio.
- *
- * @param createDate the create date of this bo territorio
- */
- @Override
- public void setCreateDate(Date createDate);
-
- /**
- * Returns the modified date of this bo territorio.
- *
- * @return the modified date of this bo territorio
- */
- @Override
- public Date getModifiedDate();
-
- /**
- * Sets the modified date of this bo territorio.
- *
- * @param modifiedDate the modified date of this bo territorio
- */
- @Override
- public void setModifiedDate(Date modifiedDate);
-
- /**
- * Returns the group ID of this bo territorio.
- *
- * @return the group ID of this bo territorio
- */
- @Override
- public long getGroupId();
-
- /**
- * Sets the group ID of this bo territorio.
- *
- * @param groupId the group ID of this bo territorio
- */
- @Override
- public void setGroupId(long groupId);
-
- /**
- * Returns the zona ID of this bo territorio.
- *
- * @return the zona ID of this bo territorio
- */
- public long getZonaId();
-
- /**
- * Sets the zona ID of this bo territorio.
- *
- * @param zonaId the zona ID of this bo territorio
- */
- public void setZonaId(long zonaId);
-
- /**
- * Returns the fascia ID of this bo territorio.
- *
- * @return the fascia ID of this bo territorio
- */
- public long getFasciaId();
-
- /**
- * Sets the fascia ID of this bo territorio.
- *
- * @param fasciaId the fascia ID of this bo territorio
- */
- public void setFasciaId(long fasciaId);
-
- /**
- * Returns the comune ID of this bo territorio.
- *
- * @return the comune ID of this bo territorio
- */
- public long getComuneId();
-
- /**
- * Sets the comune ID of this bo territorio.
- *
- * @param comuneId the comune ID of this bo territorio
- */
- public void setComuneId(long comuneId);
-
- /**
- * Returns the dt ini of this bo territorio.
- *
- * @return the dt ini of this bo territorio
- */
- public Date getDtIni();
-
- /**
- * Sets the dt ini of this bo territorio.
- *
- * @param dtIni the dt ini of this bo territorio
- */
- public void setDtIni(Date dtIni);
-
- /**
- * Returns the dt fin of this bo territorio.
- *
- * @return the dt fin of this bo territorio
- */
- public Date getDtFin();
-
- /**
- * Sets the dt fin of this bo territorio.
- *
- * @param dtFin the dt fin of this bo territorio
- */
- public void setDtFin(Date dtFin);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoTerritorio boTerritorio);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTerritorio toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTerritorio toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioSoap.java
deleted file mode 100644
index 1c88d0c8..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioSoap.java
+++ /dev/null
@@ -1,205 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class BoTerritorioSoap implements Serializable {
- public static BoTerritorioSoap toSoapModel(BoTerritorio model) {
- BoTerritorioSoap soapModel = new BoTerritorioSoap();
-
- soapModel.setTerritorioId(model.getTerritorioId());
- soapModel.setCompanyId(model.getCompanyId());
- soapModel.setUserId(model.getUserId());
- soapModel.setUserName(model.getUserName());
- soapModel.setCreateDate(model.getCreateDate());
- soapModel.setModifiedDate(model.getModifiedDate());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setZonaId(model.getZonaId());
- soapModel.setFasciaId(model.getFasciaId());
- soapModel.setComuneId(model.getComuneId());
- soapModel.setDtIni(model.getDtIni());
- soapModel.setDtFin(model.getDtFin());
-
- return soapModel;
- }
-
- public static BoTerritorioSoap[] toSoapModels(BoTerritorio[] models) {
- BoTerritorioSoap[] soapModels = new BoTerritorioSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoTerritorioSoap[][] toSoapModels(BoTerritorio[][] models) {
- BoTerritorioSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new BoTerritorioSoap[models.length][models[0].length];
- }
- else {
- soapModels = new BoTerritorioSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static BoTerritorioSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (BoTerritorio model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new BoTerritorioSoap[soapModels.size()]);
- }
-
- public BoTerritorioSoap() {
- }
-
- public long getPrimaryKey() {
- return _territorioId;
- }
-
- public void setPrimaryKey(long pk) {
- setTerritorioId(pk);
- }
-
- public long getTerritorioId() {
- return _territorioId;
- }
-
- public void setTerritorioId(long territorioId) {
- _territorioId = territorioId;
- }
-
- public long getCompanyId() {
- return _companyId;
- }
-
- public void setCompanyId(long companyId) {
- _companyId = companyId;
- }
-
- public long getUserId() {
- return _userId;
- }
-
- public void setUserId(long userId) {
- _userId = userId;
- }
-
- public String getUserName() {
- return _userName;
- }
-
- public void setUserName(String userName) {
- _userName = userName;
- }
-
- public Date getCreateDate() {
- return _createDate;
- }
-
- public void setCreateDate(Date createDate) {
- _createDate = createDate;
- }
-
- public Date getModifiedDate() {
- return _modifiedDate;
- }
-
- public void setModifiedDate(Date modifiedDate) {
- _modifiedDate = modifiedDate;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getZonaId() {
- return _zonaId;
- }
-
- public void setZonaId(long zonaId) {
- _zonaId = zonaId;
- }
-
- public long getFasciaId() {
- return _fasciaId;
- }
-
- public void setFasciaId(long fasciaId) {
- _fasciaId = fasciaId;
- }
-
- public long getComuneId() {
- return _comuneId;
- }
-
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
- }
-
- public Date getDtIni() {
- return _dtIni;
- }
-
- public void setDtIni(Date dtIni) {
- _dtIni = dtIni;
- }
-
- public Date getDtFin() {
- return _dtFin;
- }
-
- public void setDtFin(Date dtFin) {
- _dtFin = dtFin;
- }
-
- private long _territorioId;
- private long _companyId;
- private long _userId;
- private String _userName;
- private Date _createDate;
- private Date _modifiedDate;
- private long _groupId;
- private long _zonaId;
- private long _fasciaId;
- private long _comuneId;
- private Date _dtIni;
- private Date _dtFin;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioWrapper.java
deleted file mode 100644
index a71a57fc..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/BoTerritorioWrapper.java
+++ /dev/null
@@ -1,568 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link BoTerritorio}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see BoTerritorio
- * @generated
- */
-public class BoTerritorioWrapper implements BoTerritorio,
- ModelWrapper {
- public BoTerritorioWrapper(BoTerritorio boTerritorio) {
- _boTerritorio = boTerritorio;
- }
-
- @Override
- public Class> getModelClass() {
- return BoTerritorio.class;
- }
-
- @Override
- public String getModelClassName() {
- return BoTerritorio.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("territorioId", getTerritorioId());
- attributes.put("companyId", getCompanyId());
- attributes.put("userId", getUserId());
- attributes.put("userName", getUserName());
- attributes.put("createDate", getCreateDate());
- attributes.put("modifiedDate", getModifiedDate());
- attributes.put("groupId", getGroupId());
- attributes.put("zonaId", getZonaId());
- attributes.put("fasciaId", getFasciaId());
- attributes.put("comuneId", getComuneId());
- attributes.put("dtIni", getDtIni());
- attributes.put("dtFin", getDtFin());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long territorioId = (Long)attributes.get("territorioId");
-
- if (territorioId != null) {
- setTerritorioId(territorioId);
- }
-
- Long companyId = (Long)attributes.get("companyId");
-
- if (companyId != null) {
- setCompanyId(companyId);
- }
-
- Long userId = (Long)attributes.get("userId");
-
- if (userId != null) {
- setUserId(userId);
- }
-
- String userName = (String)attributes.get("userName");
-
- if (userName != null) {
- setUserName(userName);
- }
-
- Date createDate = (Date)attributes.get("createDate");
-
- if (createDate != null) {
- setCreateDate(createDate);
- }
-
- Date modifiedDate = (Date)attributes.get("modifiedDate");
-
- if (modifiedDate != null) {
- setModifiedDate(modifiedDate);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long zonaId = (Long)attributes.get("zonaId");
-
- if (zonaId != null) {
- setZonaId(zonaId);
- }
-
- Long fasciaId = (Long)attributes.get("fasciaId");
-
- if (fasciaId != null) {
- setFasciaId(fasciaId);
- }
-
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- Date dtIni = (Date)attributes.get("dtIni");
-
- if (dtIni != null) {
- setDtIni(dtIni);
- }
-
- Date dtFin = (Date)attributes.get("dtFin");
-
- if (dtFin != null) {
- setDtFin(dtFin);
- }
- }
-
- /**
- * Returns the primary key of this bo territorio.
- *
- * @return the primary key of this bo territorio
- */
- @Override
- public long getPrimaryKey() {
- return _boTerritorio.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this bo territorio.
- *
- * @param primaryKey the primary key of this bo territorio
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _boTerritorio.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the territorio ID of this bo territorio.
- *
- * @return the territorio ID of this bo territorio
- */
- @Override
- public long getTerritorioId() {
- return _boTerritorio.getTerritorioId();
- }
-
- /**
- * Sets the territorio ID of this bo territorio.
- *
- * @param territorioId the territorio ID of this bo territorio
- */
- @Override
- public void setTerritorioId(long territorioId) {
- _boTerritorio.setTerritorioId(territorioId);
- }
-
- /**
- * Returns the company ID of this bo territorio.
- *
- * @return the company ID of this bo territorio
- */
- @Override
- public long getCompanyId() {
- return _boTerritorio.getCompanyId();
- }
-
- /**
- * Sets the company ID of this bo territorio.
- *
- * @param companyId the company ID of this bo territorio
- */
- @Override
- public void setCompanyId(long companyId) {
- _boTerritorio.setCompanyId(companyId);
- }
-
- /**
- * Returns the user ID of this bo territorio.
- *
- * @return the user ID of this bo territorio
- */
- @Override
- public long getUserId() {
- return _boTerritorio.getUserId();
- }
-
- /**
- * Sets the user ID of this bo territorio.
- *
- * @param userId the user ID of this bo territorio
- */
- @Override
- public void setUserId(long userId) {
- _boTerritorio.setUserId(userId);
- }
-
- /**
- * Returns the user uuid of this bo territorio.
- *
- * @return the user uuid of this bo territorio
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.lang.String getUserUuid()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _boTerritorio.getUserUuid();
- }
-
- /**
- * Sets the user uuid of this bo territorio.
- *
- * @param userUuid the user uuid of this bo territorio
- */
- @Override
- public void setUserUuid(java.lang.String userUuid) {
- _boTerritorio.setUserUuid(userUuid);
- }
-
- /**
- * Returns the user name of this bo territorio.
- *
- * @return the user name of this bo territorio
- */
- @Override
- public java.lang.String getUserName() {
- return _boTerritorio.getUserName();
- }
-
- /**
- * Sets the user name of this bo territorio.
- *
- * @param userName the user name of this bo territorio
- */
- @Override
- public void setUserName(java.lang.String userName) {
- _boTerritorio.setUserName(userName);
- }
-
- /**
- * Returns the create date of this bo territorio.
- *
- * @return the create date of this bo territorio
- */
- @Override
- public java.util.Date getCreateDate() {
- return _boTerritorio.getCreateDate();
- }
-
- /**
- * Sets the create date of this bo territorio.
- *
- * @param createDate the create date of this bo territorio
- */
- @Override
- public void setCreateDate(java.util.Date createDate) {
- _boTerritorio.setCreateDate(createDate);
- }
-
- /**
- * Returns the modified date of this bo territorio.
- *
- * @return the modified date of this bo territorio
- */
- @Override
- public java.util.Date getModifiedDate() {
- return _boTerritorio.getModifiedDate();
- }
-
- /**
- * Sets the modified date of this bo territorio.
- *
- * @param modifiedDate the modified date of this bo territorio
- */
- @Override
- public void setModifiedDate(java.util.Date modifiedDate) {
- _boTerritorio.setModifiedDate(modifiedDate);
- }
-
- /**
- * Returns the group ID of this bo territorio.
- *
- * @return the group ID of this bo territorio
- */
- @Override
- public long getGroupId() {
- return _boTerritorio.getGroupId();
- }
-
- /**
- * Sets the group ID of this bo territorio.
- *
- * @param groupId the group ID of this bo territorio
- */
- @Override
- public void setGroupId(long groupId) {
- _boTerritorio.setGroupId(groupId);
- }
-
- /**
- * Returns the zona ID of this bo territorio.
- *
- * @return the zona ID of this bo territorio
- */
- @Override
- public long getZonaId() {
- return _boTerritorio.getZonaId();
- }
-
- /**
- * Sets the zona ID of this bo territorio.
- *
- * @param zonaId the zona ID of this bo territorio
- */
- @Override
- public void setZonaId(long zonaId) {
- _boTerritorio.setZonaId(zonaId);
- }
-
- /**
- * Returns the fascia ID of this bo territorio.
- *
- * @return the fascia ID of this bo territorio
- */
- @Override
- public long getFasciaId() {
- return _boTerritorio.getFasciaId();
- }
-
- /**
- * Sets the fascia ID of this bo territorio.
- *
- * @param fasciaId the fascia ID of this bo territorio
- */
- @Override
- public void setFasciaId(long fasciaId) {
- _boTerritorio.setFasciaId(fasciaId);
- }
-
- /**
- * Returns the comune ID of this bo territorio.
- *
- * @return the comune ID of this bo territorio
- */
- @Override
- public long getComuneId() {
- return _boTerritorio.getComuneId();
- }
-
- /**
- * Sets the comune ID of this bo territorio.
- *
- * @param comuneId the comune ID of this bo territorio
- */
- @Override
- public void setComuneId(long comuneId) {
- _boTerritorio.setComuneId(comuneId);
- }
-
- /**
- * Returns the dt ini of this bo territorio.
- *
- * @return the dt ini of this bo territorio
- */
- @Override
- public java.util.Date getDtIni() {
- return _boTerritorio.getDtIni();
- }
-
- /**
- * Sets the dt ini of this bo territorio.
- *
- * @param dtIni the dt ini of this bo territorio
- */
- @Override
- public void setDtIni(java.util.Date dtIni) {
- _boTerritorio.setDtIni(dtIni);
- }
-
- /**
- * Returns the dt fin of this bo territorio.
- *
- * @return the dt fin of this bo territorio
- */
- @Override
- public java.util.Date getDtFin() {
- return _boTerritorio.getDtFin();
- }
-
- /**
- * Sets the dt fin of this bo territorio.
- *
- * @param dtFin the dt fin of this bo territorio
- */
- @Override
- public void setDtFin(java.util.Date dtFin) {
- _boTerritorio.setDtFin(dtFin);
- }
-
- @Override
- public boolean isNew() {
- return _boTerritorio.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _boTerritorio.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _boTerritorio.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _boTerritorio.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _boTerritorio.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _boTerritorio.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _boTerritorio.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _boTerritorio.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _boTerritorio.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _boTerritorio.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _boTerritorio.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new BoTerritorioWrapper((BoTerritorio)_boTerritorio.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.BoTerritorio boTerritorio) {
- return _boTerritorio.compareTo(boTerritorio);
- }
-
- @Override
- public int hashCode() {
- return _boTerritorio.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _boTerritorio.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTerritorio toEscapedModel() {
- return new BoTerritorioWrapper(_boTerritorio.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.BoTerritorio toUnescapedModel() {
- return new BoTerritorioWrapper(_boTerritorio.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _boTerritorio.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _boTerritorio.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _boTerritorio.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof BoTerritorioWrapper)) {
- return false;
- }
-
- BoTerritorioWrapper boTerritorioWrapper = (BoTerritorioWrapper)obj;
-
- if (Validator.equals(_boTerritorio, boTerritorioWrapper._boTerritorio)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public BoTerritorio getWrappedBoTerritorio() {
- return _boTerritorio;
- }
-
- @Override
- public BoTerritorio getWrappedModel() {
- return _boTerritorio;
- }
-
- @Override
- public void resetOriginalValues() {
- _boTerritorio.resetOriginalValues();
- }
-
- private BoTerritorio _boTerritorio;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComune.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComune.java
deleted file mode 100644
index c9599113..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComune.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the FeComune service. Represents a row in the "gcfe_comune" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeComuneModel
- * @see it.tref.liferay.portos.portosimport.model.impl.FeComuneImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.FeComuneModelImpl
- * @generated
- */
-public interface FeComune extends FeComuneModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.FeComuneImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneClp.java
deleted file mode 100644
index 0198c2c0..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneClp.java
+++ /dev/null
@@ -1,378 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-import it.tref.liferay.portos.portosimport.service.FeComuneLocalServiceUtil;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class FeComuneClp extends BaseModelImpl implements FeComune {
- public FeComuneClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return FeComune.class;
- }
-
- @Override
- public String getModelClassName() {
- return FeComune.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _comuneId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setComuneId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _comuneId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("comuneId", getComuneId());
- attributes.put("codIstat", getCodIstat());
- attributes.put("codCatastale", getCodCatastale());
- attributes.put("descLong", getDescLong());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- String codIstat = (String)attributes.get("codIstat");
-
- if (codIstat != null) {
- setCodIstat(codIstat);
- }
-
- String codCatastale = (String)attributes.get("codCatastale");
-
- if (codCatastale != null) {
- setCodCatastale(codCatastale);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- @Override
- public long getComuneId() {
- return _comuneId;
- }
-
- @Override
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
-
- if (_feComuneRemoteModel != null) {
- try {
- Class> clazz = _feComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setComuneId", long.class);
-
- method.invoke(_feComuneRemoteModel, comuneId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodIstat() {
- return _codIstat;
- }
-
- @Override
- public void setCodIstat(String codIstat) {
- _codIstat = codIstat;
-
- if (_feComuneRemoteModel != null) {
- try {
- Class> clazz = _feComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodIstat", String.class);
-
- method.invoke(_feComuneRemoteModel, codIstat);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodCatastale() {
- return _codCatastale;
- }
-
- @Override
- public void setCodCatastale(String codCatastale) {
- _codCatastale = codCatastale;
-
- if (_feComuneRemoteModel != null) {
- try {
- Class> clazz = _feComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodCatastale", String.class);
-
- method.invoke(_feComuneRemoteModel, codCatastale);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getDescLong() {
- return _descLong;
- }
-
- @Override
- public void setDescLong(String descLong) {
- _descLong = descLong;
-
- if (_feComuneRemoteModel != null) {
- try {
- Class> clazz = _feComuneRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDescLong", String.class);
-
- method.invoke(_feComuneRemoteModel, descLong);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getFeComuneRemoteModel() {
- return _feComuneRemoteModel;
- }
-
- public void setFeComuneRemoteModel(BaseModel> feComuneRemoteModel) {
- _feComuneRemoteModel = feComuneRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _feComuneRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_feComuneRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- FeComuneLocalServiceUtil.addFeComune(this);
- }
- else {
- FeComuneLocalServiceUtil.updateFeComune(this);
- }
- }
-
- @Override
- public FeComune toEscapedModel() {
- return (FeComune)ProxyUtil.newProxyInstance(FeComune.class.getClassLoader(),
- new Class[] { FeComune.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- FeComuneClp clone = new FeComuneClp();
-
- clone.setComuneId(getComuneId());
- clone.setCodIstat(getCodIstat());
- clone.setCodCatastale(getCodCatastale());
- clone.setDescLong(getDescLong());
-
- return clone;
- }
-
- @Override
- public int compareTo(FeComune feComune) {
- long primaryKey = feComune.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof FeComuneClp)) {
- return false;
- }
-
- FeComuneClp feComune = (FeComuneClp)obj;
-
- long primaryKey = feComune.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(9);
-
- sb.append("{comuneId=");
- sb.append(getComuneId());
- sb.append(", codIstat=");
- sb.append(getCodIstat());
- sb.append(", codCatastale=");
- sb.append(getCodCatastale());
- sb.append(", descLong=");
- sb.append(getDescLong());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(16);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.FeComune");
- sb.append("");
-
- sb.append(
- "comuneId");
- sb.append(
- "codIstat");
- sb.append(
- "codCatastale");
- sb.append(
- "descLong");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private long _comuneId;
- private String _codIstat;
- private String _codCatastale;
- private String _descLong;
- private BaseModel> _feComuneRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneModel.java
deleted file mode 100644
index 7e2c1f91..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneModel.java
+++ /dev/null
@@ -1,176 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-/**
- * The base model interface for the FeComune service. Represents a row in the "gcfe_comune" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.FeComuneModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.FeComuneImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeComune
- * @see it.tref.liferay.portos.portosimport.model.impl.FeComuneImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.FeComuneModelImpl
- * @generated
- */
-public interface FeComuneModel extends BaseModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a fe comune model instance should use the {@link FeComune} interface instead.
- */
-
- /**
- * Returns the primary key of this fe comune.
- *
- * @return the primary key of this fe comune
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this fe comune.
- *
- * @param primaryKey the primary key of this fe comune
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the comune ID of this fe comune.
- *
- * @return the comune ID of this fe comune
- */
- public long getComuneId();
-
- /**
- * Sets the comune ID of this fe comune.
- *
- * @param comuneId the comune ID of this fe comune
- */
- public void setComuneId(long comuneId);
-
- /**
- * Returns the cod istat of this fe comune.
- *
- * @return the cod istat of this fe comune
- */
- @AutoEscape
- public String getCodIstat();
-
- /**
- * Sets the cod istat of this fe comune.
- *
- * @param codIstat the cod istat of this fe comune
- */
- public void setCodIstat(String codIstat);
-
- /**
- * Returns the cod catastale of this fe comune.
- *
- * @return the cod catastale of this fe comune
- */
- @AutoEscape
- public String getCodCatastale();
-
- /**
- * Sets the cod catastale of this fe comune.
- *
- * @param codCatastale the cod catastale of this fe comune
- */
- public void setCodCatastale(String codCatastale);
-
- /**
- * Returns the desc long of this fe comune.
- *
- * @return the desc long of this fe comune
- */
- @AutoEscape
- public String getDescLong();
-
- /**
- * Sets the desc long of this fe comune.
- *
- * @param descLong the desc long of this fe comune
- */
- public void setDescLong(String descLong);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.FeComune feComune);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeComune toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeComune toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneSoap.java
deleted file mode 100644
index f5feb9e0..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneSoap.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class FeComuneSoap implements Serializable {
- public static FeComuneSoap toSoapModel(FeComune model) {
- FeComuneSoap soapModel = new FeComuneSoap();
-
- soapModel.setComuneId(model.getComuneId());
- soapModel.setCodIstat(model.getCodIstat());
- soapModel.setCodCatastale(model.getCodCatastale());
- soapModel.setDescLong(model.getDescLong());
-
- return soapModel;
- }
-
- public static FeComuneSoap[] toSoapModels(FeComune[] models) {
- FeComuneSoap[] soapModels = new FeComuneSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static FeComuneSoap[][] toSoapModels(FeComune[][] models) {
- FeComuneSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new FeComuneSoap[models.length][models[0].length];
- }
- else {
- soapModels = new FeComuneSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static FeComuneSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (FeComune model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new FeComuneSoap[soapModels.size()]);
- }
-
- public FeComuneSoap() {
- }
-
- public long getPrimaryKey() {
- return _comuneId;
- }
-
- public void setPrimaryKey(long pk) {
- setComuneId(pk);
- }
-
- public long getComuneId() {
- return _comuneId;
- }
-
- public void setComuneId(long comuneId) {
- _comuneId = comuneId;
- }
-
- public String getCodIstat() {
- return _codIstat;
- }
-
- public void setCodIstat(String codIstat) {
- _codIstat = codIstat;
- }
-
- public String getCodCatastale() {
- return _codCatastale;
- }
-
- public void setCodCatastale(String codCatastale) {
- _codCatastale = codCatastale;
- }
-
- public String getDescLong() {
- return _descLong;
- }
-
- public void setDescLong(String descLong) {
- _descLong = descLong;
- }
-
- private long _comuneId;
- private String _codIstat;
- private String _codCatastale;
- private String _descLong;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneWrapper.java
deleted file mode 100644
index 54d5b0e6..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeComuneWrapper.java
+++ /dev/null
@@ -1,328 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link FeComune}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeComune
- * @generated
- */
-public class FeComuneWrapper implements FeComune, ModelWrapper {
- public FeComuneWrapper(FeComune feComune) {
- _feComune = feComune;
- }
-
- @Override
- public Class> getModelClass() {
- return FeComune.class;
- }
-
- @Override
- public String getModelClassName() {
- return FeComune.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("comuneId", getComuneId());
- attributes.put("codIstat", getCodIstat());
- attributes.put("codCatastale", getCodCatastale());
- attributes.put("descLong", getDescLong());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- Long comuneId = (Long)attributes.get("comuneId");
-
- if (comuneId != null) {
- setComuneId(comuneId);
- }
-
- String codIstat = (String)attributes.get("codIstat");
-
- if (codIstat != null) {
- setCodIstat(codIstat);
- }
-
- String codCatastale = (String)attributes.get("codCatastale");
-
- if (codCatastale != null) {
- setCodCatastale(codCatastale);
- }
-
- String descLong = (String)attributes.get("descLong");
-
- if (descLong != null) {
- setDescLong(descLong);
- }
- }
-
- /**
- * Returns the primary key of this fe comune.
- *
- * @return the primary key of this fe comune
- */
- @Override
- public long getPrimaryKey() {
- return _feComune.getPrimaryKey();
- }
-
- /**
- * Sets the primary key of this fe comune.
- *
- * @param primaryKey the primary key of this fe comune
- */
- @Override
- public void setPrimaryKey(long primaryKey) {
- _feComune.setPrimaryKey(primaryKey);
- }
-
- /**
- * Returns the comune ID of this fe comune.
- *
- * @return the comune ID of this fe comune
- */
- @Override
- public long getComuneId() {
- return _feComune.getComuneId();
- }
-
- /**
- * Sets the comune ID of this fe comune.
- *
- * @param comuneId the comune ID of this fe comune
- */
- @Override
- public void setComuneId(long comuneId) {
- _feComune.setComuneId(comuneId);
- }
-
- /**
- * Returns the cod istat of this fe comune.
- *
- * @return the cod istat of this fe comune
- */
- @Override
- public java.lang.String getCodIstat() {
- return _feComune.getCodIstat();
- }
-
- /**
- * Sets the cod istat of this fe comune.
- *
- * @param codIstat the cod istat of this fe comune
- */
- @Override
- public void setCodIstat(java.lang.String codIstat) {
- _feComune.setCodIstat(codIstat);
- }
-
- /**
- * Returns the cod catastale of this fe comune.
- *
- * @return the cod catastale of this fe comune
- */
- @Override
- public java.lang.String getCodCatastale() {
- return _feComune.getCodCatastale();
- }
-
- /**
- * Sets the cod catastale of this fe comune.
- *
- * @param codCatastale the cod catastale of this fe comune
- */
- @Override
- public void setCodCatastale(java.lang.String codCatastale) {
- _feComune.setCodCatastale(codCatastale);
- }
-
- /**
- * Returns the desc long of this fe comune.
- *
- * @return the desc long of this fe comune
- */
- @Override
- public java.lang.String getDescLong() {
- return _feComune.getDescLong();
- }
-
- /**
- * Sets the desc long of this fe comune.
- *
- * @param descLong the desc long of this fe comune
- */
- @Override
- public void setDescLong(java.lang.String descLong) {
- _feComune.setDescLong(descLong);
- }
-
- @Override
- public boolean isNew() {
- return _feComune.isNew();
- }
-
- @Override
- public void setNew(boolean n) {
- _feComune.setNew(n);
- }
-
- @Override
- public boolean isCachedModel() {
- return _feComune.isCachedModel();
- }
-
- @Override
- public void setCachedModel(boolean cachedModel) {
- _feComune.setCachedModel(cachedModel);
- }
-
- @Override
- public boolean isEscapedModel() {
- return _feComune.isEscapedModel();
- }
-
- @Override
- public java.io.Serializable getPrimaryKeyObj() {
- return _feComune.getPrimaryKeyObj();
- }
-
- @Override
- public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
- _feComune.setPrimaryKeyObj(primaryKeyObj);
- }
-
- @Override
- public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
- return _feComune.getExpandoBridge();
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.model.BaseModel> baseModel) {
- _feComune.setExpandoBridgeAttributes(baseModel);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
- _feComune.setExpandoBridgeAttributes(expandoBridge);
- }
-
- @Override
- public void setExpandoBridgeAttributes(
- com.liferay.portal.service.ServiceContext serviceContext) {
- _feComune.setExpandoBridgeAttributes(serviceContext);
- }
-
- @Override
- public java.lang.Object clone() {
- return new FeComuneWrapper((FeComune)_feComune.clone());
- }
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.FeComune feComune) {
- return _feComune.compareTo(feComune);
- }
-
- @Override
- public int hashCode() {
- return _feComune.hashCode();
- }
-
- @Override
- public com.liferay.portal.model.CacheModel toCacheModel() {
- return _feComune.toCacheModel();
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeComune toEscapedModel() {
- return new FeComuneWrapper(_feComune.toEscapedModel());
- }
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeComune toUnescapedModel() {
- return new FeComuneWrapper(_feComune.toUnescapedModel());
- }
-
- @Override
- public java.lang.String toString() {
- return _feComune.toString();
- }
-
- @Override
- public java.lang.String toXmlString() {
- return _feComune.toXmlString();
- }
-
- @Override
- public void persist()
- throws com.liferay.portal.kernel.exception.SystemException {
- _feComune.persist();
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof FeComuneWrapper)) {
- return false;
- }
-
- FeComuneWrapper feComuneWrapper = (FeComuneWrapper)obj;
-
- if (Validator.equals(_feComune, feComuneWrapper._feComune)) {
- return true;
- }
-
- return false;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
- */
- public FeComune getWrappedFeComune() {
- return _feComune;
- }
-
- @Override
- public FeComune getWrappedModel() {
- return _feComune;
- }
-
- @Override
- public void resetOriginalValues() {
- _feComune.resetOriginalValues();
- }
-
- private FeComune _feComune;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPratica.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPratica.java
deleted file mode 100644
index 9a72f00d..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPratica.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.model.PersistedModel;
-
-/**
- * The extended model interface for the FeDettPratica service. Represents a row in the "gcfe_dettpratica" database table, with each column mapped to a property of this class.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeDettPraticaModel
- * @see it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaModelImpl
- * @generated
- */
-public interface FeDettPratica extends FeDettPraticaModel, PersistedModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this interface directly. Add methods to {@link it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaClp.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaClp.java
deleted file mode 100644
index d9fe9c71..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaClp.java
+++ /dev/null
@@ -1,728 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.ProxyUtil;
-import com.liferay.portal.kernel.util.StringBundler;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.impl.BaseModelImpl;
-
-import it.tref.liferay.portos.portosimport.service.ClpSerializer;
-import it.tref.liferay.portos.portosimport.service.FeDettPraticaLocalServiceUtil;
-
-import java.io.Serializable;
-
-import java.lang.reflect.Method;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @author Davide Barbagallo, 3F Consulting
- */
-public class FeDettPraticaClp extends BaseModelImpl
- implements FeDettPratica {
- public FeDettPraticaClp() {
- }
-
- @Override
- public Class> getModelClass() {
- return FeDettPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return FeDettPratica.class.getName();
- }
-
- @Override
- public long getPrimaryKey() {
- return _dettPraticaId;
- }
-
- @Override
- public void setPrimaryKey(long primaryKey) {
- setDettPraticaId(primaryKey);
- }
-
- @Override
- public Serializable getPrimaryKeyObj() {
- return _dettPraticaId;
- }
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj) {
- setPrimaryKey(((Long)primaryKeyObj).longValue());
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("codPraticaSuap", getCodPraticaSuap());
- attributes.put("fineLavoriSceltaPrelievo", getFineLavoriSceltaPrelievo());
- attributes.put("fPrelievoCalcestruzzo", getFPrelievoCalcestruzzo());
- attributes.put("fPrelievoAcciaio", getFPrelievoAcciaio());
- attributes.put("fPrelievoAltro", getFPrelievoAltro());
- attributes.put("fineLavoriAlletiUlteriori",
- getFineLavoriAlletiUlteriori());
- attributes.put("fNoCollaudoStatico", getFNoCollaudoStatico());
- attributes.put("pagamentoId", getPagamentoId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map attributes) {
- String uuid = (String)attributes.get("uuid");
-
- if (uuid != null) {
- setUuid(uuid);
- }
-
- Long dettPraticaId = (Long)attributes.get("dettPraticaId");
-
- if (dettPraticaId != null) {
- setDettPraticaId(dettPraticaId);
- }
-
- Long groupId = (Long)attributes.get("groupId");
-
- if (groupId != null) {
- setGroupId(groupId);
- }
-
- Long intPraticaId = (Long)attributes.get("intPraticaId");
-
- if (intPraticaId != null) {
- setIntPraticaId(intPraticaId);
- }
-
- String codPraticaSuap = (String)attributes.get("codPraticaSuap");
-
- if (codPraticaSuap != null) {
- setCodPraticaSuap(codPraticaSuap);
- }
-
- Boolean fineLavoriSceltaPrelievo = (Boolean)attributes.get(
- "fineLavoriSceltaPrelievo");
-
- if (fineLavoriSceltaPrelievo != null) {
- setFineLavoriSceltaPrelievo(fineLavoriSceltaPrelievo);
- }
-
- Boolean fPrelievoCalcestruzzo = (Boolean)attributes.get(
- "fPrelievoCalcestruzzo");
-
- if (fPrelievoCalcestruzzo != null) {
- setFPrelievoCalcestruzzo(fPrelievoCalcestruzzo);
- }
-
- Boolean fPrelievoAcciaio = (Boolean)attributes.get("fPrelievoAcciaio");
-
- if (fPrelievoAcciaio != null) {
- setFPrelievoAcciaio(fPrelievoAcciaio);
- }
-
- Boolean fPrelievoAltro = (Boolean)attributes.get("fPrelievoAltro");
-
- if (fPrelievoAltro != null) {
- setFPrelievoAltro(fPrelievoAltro);
- }
-
- Boolean fineLavoriAlletiUlteriori = (Boolean)attributes.get(
- "fineLavoriAlletiUlteriori");
-
- if (fineLavoriAlletiUlteriori != null) {
- setFineLavoriAlletiUlteriori(fineLavoriAlletiUlteriori);
- }
-
- Boolean fNoCollaudoStatico = (Boolean)attributes.get(
- "fNoCollaudoStatico");
-
- if (fNoCollaudoStatico != null) {
- setFNoCollaudoStatico(fNoCollaudoStatico);
- }
-
- Long pagamentoId = (Long)attributes.get("pagamentoId");
-
- if (pagamentoId != null) {
- setPagamentoId(pagamentoId);
- }
- }
-
- @Override
- public String getUuid() {
- return _uuid;
- }
-
- @Override
- public void setUuid(String uuid) {
- _uuid = uuid;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setUuid", String.class);
-
- method.invoke(_feDettPraticaRemoteModel, uuid);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- @Override
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setDettPraticaId", long.class);
-
- method.invoke(_feDettPraticaRemoteModel, dettPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getGroupId() {
- return _groupId;
- }
-
- @Override
- public void setGroupId(long groupId) {
- _groupId = groupId;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setGroupId", long.class);
-
- method.invoke(_feDettPraticaRemoteModel, groupId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- @Override
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setIntPraticaId", long.class);
-
- method.invoke(_feDettPraticaRemoteModel, intPraticaId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public String getCodPraticaSuap() {
- return _codPraticaSuap;
- }
-
- @Override
- public void setCodPraticaSuap(String codPraticaSuap) {
- _codPraticaSuap = codPraticaSuap;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setCodPraticaSuap",
- String.class);
-
- method.invoke(_feDettPraticaRemoteModel, codPraticaSuap);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFineLavoriSceltaPrelievo() {
- return _fineLavoriSceltaPrelievo;
- }
-
- @Override
- public boolean isFineLavoriSceltaPrelievo() {
- return _fineLavoriSceltaPrelievo;
- }
-
- @Override
- public void setFineLavoriSceltaPrelievo(boolean fineLavoriSceltaPrelievo) {
- _fineLavoriSceltaPrelievo = fineLavoriSceltaPrelievo;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFineLavoriSceltaPrelievo",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel,
- fineLavoriSceltaPrelievo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFPrelievoCalcestruzzo() {
- return _fPrelievoCalcestruzzo;
- }
-
- @Override
- public boolean isFPrelievoCalcestruzzo() {
- return _fPrelievoCalcestruzzo;
- }
-
- @Override
- public void setFPrelievoCalcestruzzo(boolean fPrelievoCalcestruzzo) {
- _fPrelievoCalcestruzzo = fPrelievoCalcestruzzo;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFPrelievoCalcestruzzo",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel, fPrelievoCalcestruzzo);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFPrelievoAcciaio() {
- return _fPrelievoAcciaio;
- }
-
- @Override
- public boolean isFPrelievoAcciaio() {
- return _fPrelievoAcciaio;
- }
-
- @Override
- public void setFPrelievoAcciaio(boolean fPrelievoAcciaio) {
- _fPrelievoAcciaio = fPrelievoAcciaio;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFPrelievoAcciaio",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel, fPrelievoAcciaio);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFPrelievoAltro() {
- return _fPrelievoAltro;
- }
-
- @Override
- public boolean isFPrelievoAltro() {
- return _fPrelievoAltro;
- }
-
- @Override
- public void setFPrelievoAltro(boolean fPrelievoAltro) {
- _fPrelievoAltro = fPrelievoAltro;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFPrelievoAltro",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel, fPrelievoAltro);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFineLavoriAlletiUlteriori() {
- return _fineLavoriAlletiUlteriori;
- }
-
- @Override
- public boolean isFineLavoriAlletiUlteriori() {
- return _fineLavoriAlletiUlteriori;
- }
-
- @Override
- public void setFineLavoriAlletiUlteriori(boolean fineLavoriAlletiUlteriori) {
- _fineLavoriAlletiUlteriori = fineLavoriAlletiUlteriori;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFineLavoriAlletiUlteriori",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel,
- fineLavoriAlletiUlteriori);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public boolean getFNoCollaudoStatico() {
- return _fNoCollaudoStatico;
- }
-
- @Override
- public boolean isFNoCollaudoStatico() {
- return _fNoCollaudoStatico;
- }
-
- @Override
- public void setFNoCollaudoStatico(boolean fNoCollaudoStatico) {
- _fNoCollaudoStatico = fNoCollaudoStatico;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setFNoCollaudoStatico",
- boolean.class);
-
- method.invoke(_feDettPraticaRemoteModel, fNoCollaudoStatico);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- @Override
- public long getPagamentoId() {
- return _pagamentoId;
- }
-
- @Override
- public void setPagamentoId(long pagamentoId) {
- _pagamentoId = pagamentoId;
-
- if (_feDettPraticaRemoteModel != null) {
- try {
- Class> clazz = _feDettPraticaRemoteModel.getClass();
-
- Method method = clazz.getMethod("setPagamentoId", long.class);
-
- method.invoke(_feDettPraticaRemoteModel, pagamentoId);
- }
- catch (Exception e) {
- throw new UnsupportedOperationException(e);
- }
- }
- }
-
- public BaseModel> getFeDettPraticaRemoteModel() {
- return _feDettPraticaRemoteModel;
- }
-
- public void setFeDettPraticaRemoteModel(
- BaseModel> feDettPraticaRemoteModel) {
- _feDettPraticaRemoteModel = feDettPraticaRemoteModel;
- }
-
- public Object invokeOnRemoteModel(String methodName,
- Class>[] parameterTypes, Object[] parameterValues)
- throws Exception {
- Object[] remoteParameterValues = new Object[parameterValues.length];
-
- for (int i = 0; i < parameterValues.length; i++) {
- if (parameterValues[i] != null) {
- remoteParameterValues[i] = ClpSerializer.translateInput(parameterValues[i]);
- }
- }
-
- Class> remoteModelClass = _feDettPraticaRemoteModel.getClass();
-
- ClassLoader remoteModelClassLoader = remoteModelClass.getClassLoader();
-
- Class>[] remoteParameterTypes = new Class[parameterTypes.length];
-
- for (int i = 0; i < parameterTypes.length; i++) {
- if (parameterTypes[i].isPrimitive()) {
- remoteParameterTypes[i] = parameterTypes[i];
- }
- else {
- String parameterTypeName = parameterTypes[i].getName();
-
- remoteParameterTypes[i] = remoteModelClassLoader.loadClass(parameterTypeName);
- }
- }
-
- Method method = remoteModelClass.getMethod(methodName,
- remoteParameterTypes);
-
- Object returnValue = method.invoke(_feDettPraticaRemoteModel,
- remoteParameterValues);
-
- if (returnValue != null) {
- returnValue = ClpSerializer.translateOutput(returnValue);
- }
-
- return returnValue;
- }
-
- @Override
- public void persist() throws SystemException {
- if (this.isNew()) {
- FeDettPraticaLocalServiceUtil.addFeDettPratica(this);
- }
- else {
- FeDettPraticaLocalServiceUtil.updateFeDettPratica(this);
- }
- }
-
- @Override
- public FeDettPratica toEscapedModel() {
- return (FeDettPratica)ProxyUtil.newProxyInstance(FeDettPratica.class.getClassLoader(),
- new Class[] { FeDettPratica.class }, new AutoEscapeBeanHandler(this));
- }
-
- @Override
- public Object clone() {
- FeDettPraticaClp clone = new FeDettPraticaClp();
-
- clone.setUuid(getUuid());
- clone.setDettPraticaId(getDettPraticaId());
- clone.setGroupId(getGroupId());
- clone.setIntPraticaId(getIntPraticaId());
- clone.setCodPraticaSuap(getCodPraticaSuap());
- clone.setFineLavoriSceltaPrelievo(getFineLavoriSceltaPrelievo());
- clone.setFPrelievoCalcestruzzo(getFPrelievoCalcestruzzo());
- clone.setFPrelievoAcciaio(getFPrelievoAcciaio());
- clone.setFPrelievoAltro(getFPrelievoAltro());
- clone.setFineLavoriAlletiUlteriori(getFineLavoriAlletiUlteriori());
- clone.setFNoCollaudoStatico(getFNoCollaudoStatico());
- clone.setPagamentoId(getPagamentoId());
-
- return clone;
- }
-
- @Override
- public int compareTo(FeDettPratica feDettPratica) {
- long primaryKey = feDettPratica.getPrimaryKey();
-
- if (getPrimaryKey() < primaryKey) {
- return -1;
- }
- else if (getPrimaryKey() > primaryKey) {
- return 1;
- }
- else {
- return 0;
- }
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj) {
- return true;
- }
-
- if (!(obj instanceof FeDettPraticaClp)) {
- return false;
- }
-
- FeDettPraticaClp feDettPratica = (FeDettPraticaClp)obj;
-
- long primaryKey = feDettPratica.getPrimaryKey();
-
- if (getPrimaryKey() == primaryKey) {
- return true;
- }
- else {
- return false;
- }
- }
-
- public Class> getClpSerializerClass() {
- return _clpSerializerClass;
- }
-
- @Override
- public int hashCode() {
- return (int)getPrimaryKey();
- }
-
- @Override
- public String toString() {
- StringBundler sb = new StringBundler(25);
-
- sb.append("{uuid=");
- sb.append(getUuid());
- sb.append(", dettPraticaId=");
- sb.append(getDettPraticaId());
- sb.append(", groupId=");
- sb.append(getGroupId());
- sb.append(", intPraticaId=");
- sb.append(getIntPraticaId());
- sb.append(", codPraticaSuap=");
- sb.append(getCodPraticaSuap());
- sb.append(", fineLavoriSceltaPrelievo=");
- sb.append(getFineLavoriSceltaPrelievo());
- sb.append(", fPrelievoCalcestruzzo=");
- sb.append(getFPrelievoCalcestruzzo());
- sb.append(", fPrelievoAcciaio=");
- sb.append(getFPrelievoAcciaio());
- sb.append(", fPrelievoAltro=");
- sb.append(getFPrelievoAltro());
- sb.append(", fineLavoriAlletiUlteriori=");
- sb.append(getFineLavoriAlletiUlteriori());
- sb.append(", fNoCollaudoStatico=");
- sb.append(getFNoCollaudoStatico());
- sb.append(", pagamentoId=");
- sb.append(getPagamentoId());
- sb.append("}");
-
- return sb.toString();
- }
-
- @Override
- public String toXmlString() {
- StringBundler sb = new StringBundler(40);
-
- sb.append("");
- sb.append("it.tref.liferay.portos.portosimport.model.FeDettPratica");
- sb.append("");
-
- sb.append(
- "uuid");
- sb.append(
- "dettPraticaId");
- sb.append(
- "groupId");
- sb.append(
- "intPraticaId");
- sb.append(
- "codPraticaSuap");
- sb.append(
- "fineLavoriSceltaPrelievo");
- sb.append(
- "fPrelievoCalcestruzzo");
- sb.append(
- "fPrelievoAcciaio");
- sb.append(
- "fPrelievoAltro");
- sb.append(
- "fineLavoriAlletiUlteriori");
- sb.append(
- "fNoCollaudoStatico");
- sb.append(
- "pagamentoId");
-
- sb.append("");
-
- return sb.toString();
- }
-
- private String _uuid;
- private long _dettPraticaId;
- private long _groupId;
- private long _intPraticaId;
- private String _codPraticaSuap;
- private boolean _fineLavoriSceltaPrelievo;
- private boolean _fPrelievoCalcestruzzo;
- private boolean _fPrelievoAcciaio;
- private boolean _fPrelievoAltro;
- private boolean _fineLavoriAlletiUlteriori;
- private boolean _fNoCollaudoStatico;
- private long _pagamentoId;
- private BaseModel> _feDettPraticaRemoteModel;
- private Class> _clpSerializerClass = it.tref.liferay.portos.portosimport.service.ClpSerializer.class;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaModel.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaModel.java
deleted file mode 100644
index c66512fb..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaModel.java
+++ /dev/null
@@ -1,329 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.bean.AutoEscape;
-import com.liferay.portal.model.BaseModel;
-import com.liferay.portal.model.CacheModel;
-import com.liferay.portal.service.ServiceContext;
-
-import com.liferay.portlet.expando.model.ExpandoBridge;
-
-import java.io.Serializable;
-
-/**
- * The base model interface for the FeDettPratica service. Represents a row in the "gcfe_dettpratica" database table, with each column mapped to a property of this class.
- *
- *
- * This interface and its corresponding implementation {@link it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaImpl}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeDettPratica
- * @see it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaImpl
- * @see it.tref.liferay.portos.portosimport.model.impl.FeDettPraticaModelImpl
- * @generated
- */
-public interface FeDettPraticaModel extends BaseModel {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. All methods that expect a fe dett pratica model instance should use the {@link FeDettPratica} interface instead.
- */
-
- /**
- * Returns the primary key of this fe dett pratica.
- *
- * @return the primary key of this fe dett pratica
- */
- public long getPrimaryKey();
-
- /**
- * Sets the primary key of this fe dett pratica.
- *
- * @param primaryKey the primary key of this fe dett pratica
- */
- public void setPrimaryKey(long primaryKey);
-
- /**
- * Returns the uuid of this fe dett pratica.
- *
- * @return the uuid of this fe dett pratica
- */
- @AutoEscape
- public String getUuid();
-
- /**
- * Sets the uuid of this fe dett pratica.
- *
- * @param uuid the uuid of this fe dett pratica
- */
- public void setUuid(String uuid);
-
- /**
- * Returns the dett pratica ID of this fe dett pratica.
- *
- * @return the dett pratica ID of this fe dett pratica
- */
- public long getDettPraticaId();
-
- /**
- * Sets the dett pratica ID of this fe dett pratica.
- *
- * @param dettPraticaId the dett pratica ID of this fe dett pratica
- */
- public void setDettPraticaId(long dettPraticaId);
-
- /**
- * Returns the group ID of this fe dett pratica.
- *
- * @return the group ID of this fe dett pratica
- */
- public long getGroupId();
-
- /**
- * Sets the group ID of this fe dett pratica.
- *
- * @param groupId the group ID of this fe dett pratica
- */
- public void setGroupId(long groupId);
-
- /**
- * Returns the int pratica ID of this fe dett pratica.
- *
- * @return the int pratica ID of this fe dett pratica
- */
- public long getIntPraticaId();
-
- /**
- * Sets the int pratica ID of this fe dett pratica.
- *
- * @param intPraticaId the int pratica ID of this fe dett pratica
- */
- public void setIntPraticaId(long intPraticaId);
-
- /**
- * Returns the cod pratica suap of this fe dett pratica.
- *
- * @return the cod pratica suap of this fe dett pratica
- */
- @AutoEscape
- public String getCodPraticaSuap();
-
- /**
- * Sets the cod pratica suap of this fe dett pratica.
- *
- * @param codPraticaSuap the cod pratica suap of this fe dett pratica
- */
- public void setCodPraticaSuap(String codPraticaSuap);
-
- /**
- * Returns the fine lavori scelta prelievo of this fe dett pratica.
- *
- * @return the fine lavori scelta prelievo of this fe dett pratica
- */
- public boolean getFineLavoriSceltaPrelievo();
-
- /**
- * Returns true if this fe dett pratica is fine lavori scelta prelievo.
- *
- * @return true if this fe dett pratica is fine lavori scelta prelievo; false otherwise
- */
- public boolean isFineLavoriSceltaPrelievo();
-
- /**
- * Sets whether this fe dett pratica is fine lavori scelta prelievo.
- *
- * @param fineLavoriSceltaPrelievo the fine lavori scelta prelievo of this fe dett pratica
- */
- public void setFineLavoriSceltaPrelievo(boolean fineLavoriSceltaPrelievo);
-
- /**
- * Returns the f prelievo calcestruzzo of this fe dett pratica.
- *
- * @return the f prelievo calcestruzzo of this fe dett pratica
- */
- public boolean getFPrelievoCalcestruzzo();
-
- /**
- * Returns true if this fe dett pratica is f prelievo calcestruzzo.
- *
- * @return true if this fe dett pratica is f prelievo calcestruzzo; false otherwise
- */
- public boolean isFPrelievoCalcestruzzo();
-
- /**
- * Sets whether this fe dett pratica is f prelievo calcestruzzo.
- *
- * @param fPrelievoCalcestruzzo the f prelievo calcestruzzo of this fe dett pratica
- */
- public void setFPrelievoCalcestruzzo(boolean fPrelievoCalcestruzzo);
-
- /**
- * Returns the f prelievo acciaio of this fe dett pratica.
- *
- * @return the f prelievo acciaio of this fe dett pratica
- */
- public boolean getFPrelievoAcciaio();
-
- /**
- * Returns true if this fe dett pratica is f prelievo acciaio.
- *
- * @return true if this fe dett pratica is f prelievo acciaio; false otherwise
- */
- public boolean isFPrelievoAcciaio();
-
- /**
- * Sets whether this fe dett pratica is f prelievo acciaio.
- *
- * @param fPrelievoAcciaio the f prelievo acciaio of this fe dett pratica
- */
- public void setFPrelievoAcciaio(boolean fPrelievoAcciaio);
-
- /**
- * Returns the f prelievo altro of this fe dett pratica.
- *
- * @return the f prelievo altro of this fe dett pratica
- */
- public boolean getFPrelievoAltro();
-
- /**
- * Returns true if this fe dett pratica is f prelievo altro.
- *
- * @return true if this fe dett pratica is f prelievo altro; false otherwise
- */
- public boolean isFPrelievoAltro();
-
- /**
- * Sets whether this fe dett pratica is f prelievo altro.
- *
- * @param fPrelievoAltro the f prelievo altro of this fe dett pratica
- */
- public void setFPrelievoAltro(boolean fPrelievoAltro);
-
- /**
- * Returns the fine lavori alleti ulteriori of this fe dett pratica.
- *
- * @return the fine lavori alleti ulteriori of this fe dett pratica
- */
- public boolean getFineLavoriAlletiUlteriori();
-
- /**
- * Returns true if this fe dett pratica is fine lavori alleti ulteriori.
- *
- * @return true if this fe dett pratica is fine lavori alleti ulteriori; false otherwise
- */
- public boolean isFineLavoriAlletiUlteriori();
-
- /**
- * Sets whether this fe dett pratica is fine lavori alleti ulteriori.
- *
- * @param fineLavoriAlletiUlteriori the fine lavori alleti ulteriori of this fe dett pratica
- */
- public void setFineLavoriAlletiUlteriori(boolean fineLavoriAlletiUlteriori);
-
- /**
- * Returns the f no collaudo statico of this fe dett pratica.
- *
- * @return the f no collaudo statico of this fe dett pratica
- */
- public boolean getFNoCollaudoStatico();
-
- /**
- * Returns true if this fe dett pratica is f no collaudo statico.
- *
- * @return true if this fe dett pratica is f no collaudo statico; false otherwise
- */
- public boolean isFNoCollaudoStatico();
-
- /**
- * Sets whether this fe dett pratica is f no collaudo statico.
- *
- * @param fNoCollaudoStatico the f no collaudo statico of this fe dett pratica
- */
- public void setFNoCollaudoStatico(boolean fNoCollaudoStatico);
-
- /**
- * Returns the pagamento ID of this fe dett pratica.
- *
- * @return the pagamento ID of this fe dett pratica
- */
- public long getPagamentoId();
-
- /**
- * Sets the pagamento ID of this fe dett pratica.
- *
- * @param pagamentoId the pagamento ID of this fe dett pratica
- */
- public void setPagamentoId(long pagamentoId);
-
- @Override
- public boolean isNew();
-
- @Override
- public void setNew(boolean n);
-
- @Override
- public boolean isCachedModel();
-
- @Override
- public void setCachedModel(boolean cachedModel);
-
- @Override
- public boolean isEscapedModel();
-
- @Override
- public Serializable getPrimaryKeyObj();
-
- @Override
- public void setPrimaryKeyObj(Serializable primaryKeyObj);
-
- @Override
- public ExpandoBridge getExpandoBridge();
-
- @Override
- public void setExpandoBridgeAttributes(BaseModel> baseModel);
-
- @Override
- public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
-
- @Override
- public void setExpandoBridgeAttributes(ServiceContext serviceContext);
-
- @Override
- public Object clone();
-
- @Override
- public int compareTo(
- it.tref.liferay.portos.portosimport.model.FeDettPratica feDettPratica);
-
- @Override
- public int hashCode();
-
- @Override
- public CacheModel toCacheModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeDettPratica toEscapedModel();
-
- @Override
- public it.tref.liferay.portos.portosimport.model.FeDettPratica toUnescapedModel();
-
- @Override
- public String toString();
-
- @Override
- public String toXmlString();
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaSoap.java
deleted file mode 100644
index c9920bc7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaSoap.java
+++ /dev/null
@@ -1,228 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * This class is used by SOAP remote services.
- *
- * @author Davide Barbagallo, 3F Consulting
- * @generated
- */
-public class FeDettPraticaSoap implements Serializable {
- public static FeDettPraticaSoap toSoapModel(FeDettPratica model) {
- FeDettPraticaSoap soapModel = new FeDettPraticaSoap();
-
- soapModel.setUuid(model.getUuid());
- soapModel.setDettPraticaId(model.getDettPraticaId());
- soapModel.setGroupId(model.getGroupId());
- soapModel.setIntPraticaId(model.getIntPraticaId());
- soapModel.setCodPraticaSuap(model.getCodPraticaSuap());
- soapModel.setFineLavoriSceltaPrelievo(model.getFineLavoriSceltaPrelievo());
- soapModel.setFPrelievoCalcestruzzo(model.getFPrelievoCalcestruzzo());
- soapModel.setFPrelievoAcciaio(model.getFPrelievoAcciaio());
- soapModel.setFPrelievoAltro(model.getFPrelievoAltro());
- soapModel.setFineLavoriAlletiUlteriori(model.getFineLavoriAlletiUlteriori());
- soapModel.setFNoCollaudoStatico(model.getFNoCollaudoStatico());
- soapModel.setPagamentoId(model.getPagamentoId());
-
- return soapModel;
- }
-
- public static FeDettPraticaSoap[] toSoapModels(FeDettPratica[] models) {
- FeDettPraticaSoap[] soapModels = new FeDettPraticaSoap[models.length];
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModel(models[i]);
- }
-
- return soapModels;
- }
-
- public static FeDettPraticaSoap[][] toSoapModels(FeDettPratica[][] models) {
- FeDettPraticaSoap[][] soapModels = null;
-
- if (models.length > 0) {
- soapModels = new FeDettPraticaSoap[models.length][models[0].length];
- }
- else {
- soapModels = new FeDettPraticaSoap[0][0];
- }
-
- for (int i = 0; i < models.length; i++) {
- soapModels[i] = toSoapModels(models[i]);
- }
-
- return soapModels;
- }
-
- public static FeDettPraticaSoap[] toSoapModels(List models) {
- List soapModels = new ArrayList(models.size());
-
- for (FeDettPratica model : models) {
- soapModels.add(toSoapModel(model));
- }
-
- return soapModels.toArray(new FeDettPraticaSoap[soapModels.size()]);
- }
-
- public FeDettPraticaSoap() {
- }
-
- public long getPrimaryKey() {
- return _dettPraticaId;
- }
-
- public void setPrimaryKey(long pk) {
- setDettPraticaId(pk);
- }
-
- public String getUuid() {
- return _uuid;
- }
-
- public void setUuid(String uuid) {
- _uuid = uuid;
- }
-
- public long getDettPraticaId() {
- return _dettPraticaId;
- }
-
- public void setDettPraticaId(long dettPraticaId) {
- _dettPraticaId = dettPraticaId;
- }
-
- public long getGroupId() {
- return _groupId;
- }
-
- public void setGroupId(long groupId) {
- _groupId = groupId;
- }
-
- public long getIntPraticaId() {
- return _intPraticaId;
- }
-
- public void setIntPraticaId(long intPraticaId) {
- _intPraticaId = intPraticaId;
- }
-
- public String getCodPraticaSuap() {
- return _codPraticaSuap;
- }
-
- public void setCodPraticaSuap(String codPraticaSuap) {
- _codPraticaSuap = codPraticaSuap;
- }
-
- public boolean getFineLavoriSceltaPrelievo() {
- return _fineLavoriSceltaPrelievo;
- }
-
- public boolean isFineLavoriSceltaPrelievo() {
- return _fineLavoriSceltaPrelievo;
- }
-
- public void setFineLavoriSceltaPrelievo(boolean fineLavoriSceltaPrelievo) {
- _fineLavoriSceltaPrelievo = fineLavoriSceltaPrelievo;
- }
-
- public boolean getFPrelievoCalcestruzzo() {
- return _fPrelievoCalcestruzzo;
- }
-
- public boolean isFPrelievoCalcestruzzo() {
- return _fPrelievoCalcestruzzo;
- }
-
- public void setFPrelievoCalcestruzzo(boolean fPrelievoCalcestruzzo) {
- _fPrelievoCalcestruzzo = fPrelievoCalcestruzzo;
- }
-
- public boolean getFPrelievoAcciaio() {
- return _fPrelievoAcciaio;
- }
-
- public boolean isFPrelievoAcciaio() {
- return _fPrelievoAcciaio;
- }
-
- public void setFPrelievoAcciaio(boolean fPrelievoAcciaio) {
- _fPrelievoAcciaio = fPrelievoAcciaio;
- }
-
- public boolean getFPrelievoAltro() {
- return _fPrelievoAltro;
- }
-
- public boolean isFPrelievoAltro() {
- return _fPrelievoAltro;
- }
-
- public void setFPrelievoAltro(boolean fPrelievoAltro) {
- _fPrelievoAltro = fPrelievoAltro;
- }
-
- public boolean getFineLavoriAlletiUlteriori() {
- return _fineLavoriAlletiUlteriori;
- }
-
- public boolean isFineLavoriAlletiUlteriori() {
- return _fineLavoriAlletiUlteriori;
- }
-
- public void setFineLavoriAlletiUlteriori(boolean fineLavoriAlletiUlteriori) {
- _fineLavoriAlletiUlteriori = fineLavoriAlletiUlteriori;
- }
-
- public boolean getFNoCollaudoStatico() {
- return _fNoCollaudoStatico;
- }
-
- public boolean isFNoCollaudoStatico() {
- return _fNoCollaudoStatico;
- }
-
- public void setFNoCollaudoStatico(boolean fNoCollaudoStatico) {
- _fNoCollaudoStatico = fNoCollaudoStatico;
- }
-
- public long getPagamentoId() {
- return _pagamentoId;
- }
-
- public void setPagamentoId(long pagamentoId) {
- _pagamentoId = pagamentoId;
- }
-
- private String _uuid;
- private long _dettPraticaId;
- private long _groupId;
- private long _intPraticaId;
- private String _codPraticaSuap;
- private boolean _fineLavoriSceltaPrelievo;
- private boolean _fPrelievoCalcestruzzo;
- private boolean _fPrelievoAcciaio;
- private boolean _fPrelievoAltro;
- private boolean _fineLavoriAlletiUlteriori;
- private boolean _fNoCollaudoStatico;
- private long _pagamentoId;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaWrapper.java
deleted file mode 100644
index 35e6bbb2..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-plugin-importazione-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/portosimport/model/FeDettPraticaWrapper.java
+++ /dev/null
@@ -1,610 +0,0 @@
-/**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
-
-package it.tref.liferay.portos.portosimport.model;
-
-import com.liferay.portal.kernel.util.Validator;
-import com.liferay.portal.model.ModelWrapper;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- *
- * This class is a wrapper for {@link FeDettPratica}.
- *
- *
- * @author Davide Barbagallo, 3F Consulting
- * @see FeDettPratica
- * @generated
- */
-public class FeDettPraticaWrapper implements FeDettPratica,
- ModelWrapper {
- public FeDettPraticaWrapper(FeDettPratica feDettPratica) {
- _feDettPratica = feDettPratica;
- }
-
- @Override
- public Class> getModelClass() {
- return FeDettPratica.class;
- }
-
- @Override
- public String getModelClassName() {
- return FeDettPratica.class.getName();
- }
-
- @Override
- public Map getModelAttributes() {
- Map attributes = new HashMap();
-
- attributes.put("uuid", getUuid());
- attributes.put("dettPraticaId", getDettPraticaId());
- attributes.put("groupId", getGroupId());
- attributes.put("intPraticaId", getIntPraticaId());
- attributes.put("codPraticaSuap", getCodPraticaSuap());
- attributes.put("fineLavoriSceltaPrelievo", getFineLavoriSceltaPrelievo());
- attributes.put("fPrelievoCalcestruzzo", getFPrelievoCalcestruzzo());
- attributes.put("fPrelievoAcciaio", getFPrelievoAcciaio());
- attributes.put("fPrelievoAltro", getFPrelievoAltro());
- attributes.put("fineLavoriAlletiUlteriori",
- getFineLavoriAlletiUlteriori());
- attributes.put("fNoCollaudoStatico", getFNoCollaudoStatico());
- attributes.put("pagamentoId", getPagamentoId());
-
- return attributes;
- }
-
- @Override
- public void setModelAttributes(Map