@ -127,6 +127,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
attributes . put ( "varianteSostanziale" , getVarianteSostanziale ( ) ) ;
attributes . put ( "varianteSostanziale" , getVarianteSostanziale ( ) ) ;
attributes . put ( "operaConforme" , getOperaConforme ( ) ) ;
attributes . put ( "operaConforme" , getOperaConforme ( ) ) ;
attributes . put ( "collaudoStatico" , getCollaudoStatico ( ) ) ;
attributes . put ( "collaudoStatico" , getCollaudoStatico ( ) ) ;
attributes . put ( "noCollaudo" , getNoCollaudo ( ) ) ;
attributes . put ( "codiceFiscaleDelegato" , getCodiceFiscaleDelegato ( ) ) ;
attributes . put ( "codiceFiscaleDelegato" , getCodiceFiscaleDelegato ( ) ) ;
attributes . put ( "codiceRuoloDelegato" , getCodiceRuoloDelegato ( ) ) ;
attributes . put ( "codiceRuoloDelegato" , getCodiceRuoloDelegato ( ) ) ;
attributes . put ( "codiceFiscaleDelegatoCommittente" ,
attributes . put ( "codiceFiscaleDelegatoCommittente" ,
@ -331,6 +332,12 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
getTcRiparazioneInterventoLocale ( ) ) ;
getTcRiparazioneInterventoLocale ( ) ) ;
attributes . put ( "tcCostruzioniEsistenti" , getTcCostruzioniEsistenti ( ) ) ;
attributes . put ( "tcCostruzioniEsistenti" , getTcCostruzioniEsistenti ( ) ) ;
attributes . put ( "tcManutOrdStraord" , getTcManutOrdStraord ( ) ) ;
attributes . put ( "tcManutOrdStraord" , getTcManutOrdStraord ( ) ) ;
attributes . put ( "tcNuovaCostruzionePertinenza" ,
getTcNuovaCostruzionePertinenza ( ) ) ;
attributes . put ( "tcInterventoOpereEscavazione" ,
getTcInterventoOpereEscavazione ( ) ) ;
attributes . put ( "tcViarch" , getTcViarch ( ) ) ;
attributes . put ( "tcOperaA25" , getTcOperaA25 ( ) ) ;
attributes . put ( "tcAltriInterventi" , getTcAltriInterventi ( ) ) ;
attributes . put ( "tcAltriInterventi" , getTcAltriInterventi ( ) ) ;
attributes . put ( "tcAltriInterventiDesc" , getTcAltriInterventiDesc ( ) ) ;
attributes . put ( "tcAltriInterventiDesc" , getTcAltriInterventiDesc ( ) ) ;
attributes . put ( "tcInCA" , getTcInCA ( ) ) ;
attributes . put ( "tcInCA" , getTcInCA ( ) ) ;
@ -691,6 +698,12 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
setCollaudoStatico ( collaudoStatico ) ;
setCollaudoStatico ( collaudoStatico ) ;
}
}
Boolean noCollaudo = ( Boolean ) attributes . get ( "noCollaudo" ) ;
if ( noCollaudo ! = null ) {
setNoCollaudo ( noCollaudo ) ;
}
String codiceFiscaleDelegato = ( String ) attributes . get (
String codiceFiscaleDelegato = ( String ) attributes . get (
"codiceFiscaleDelegato" ) ;
"codiceFiscaleDelegato" ) ;
@ -1690,6 +1703,32 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
setTcManutOrdStraord ( tcManutOrdStraord ) ;
setTcManutOrdStraord ( tcManutOrdStraord ) ;
}
}
Boolean tcNuovaCostruzionePertinenza = ( Boolean ) attributes . get (
"tcNuovaCostruzionePertinenza" ) ;
if ( tcNuovaCostruzionePertinenza ! = null ) {
setTcNuovaCostruzionePertinenza ( tcNuovaCostruzionePertinenza ) ;
}
Boolean tcInterventoOpereEscavazione = ( Boolean ) attributes . get (
"tcInterventoOpereEscavazione" ) ;
if ( tcInterventoOpereEscavazione ! = null ) {
setTcInterventoOpereEscavazione ( tcInterventoOpereEscavazione ) ;
}
Boolean tcViarch = ( Boolean ) attributes . get ( "tcViarch" ) ;
if ( tcViarch ! = null ) {
setTcViarch ( tcViarch ) ;
}
Boolean tcOperaA25 = ( Boolean ) attributes . get ( "tcOperaA25" ) ;
if ( tcOperaA25 ! = null ) {
setTcOperaA25 ( tcOperaA25 ) ;
}
Boolean tcAltriInterventi = ( Boolean ) attributes . get ( "tcAltriInterventi" ) ;
Boolean tcAltriInterventi = ( Boolean ) attributes . get ( "tcAltriInterventi" ) ;
if ( tcAltriInterventi ! = null ) {
if ( tcAltriInterventi ! = null ) {
@ -3198,6 +3237,34 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
}
}
}
}
@Override
public boolean getNoCollaudo ( ) {
return _noCollaudo ;
}
@Override
public boolean isNoCollaudo ( ) {
return _noCollaudo ;
}
@Override
public void setNoCollaudo ( boolean noCollaudo ) {
_noCollaudo = noCollaudo ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setNoCollaudo" , boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel , noCollaudo ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
@Override
public String getCodiceFiscaleDelegato ( ) {
public String getCodiceFiscaleDelegato ( ) {
return _codiceFiscaleDelegato ;
return _codiceFiscaleDelegato ;
@ -7150,6 +7217,124 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
}
}
}
}
@Override
public boolean getTcNuovaCostruzionePertinenza ( ) {
return _tcNuovaCostruzionePertinenza ;
}
@Override
public boolean isTcNuovaCostruzionePertinenza ( ) {
return _tcNuovaCostruzionePertinenza ;
}
@Override
public void setTcNuovaCostruzionePertinenza (
boolean tcNuovaCostruzionePertinenza ) {
_tcNuovaCostruzionePertinenza = tcNuovaCostruzionePertinenza ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setTcNuovaCostruzionePertinenza" ,
boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel ,
tcNuovaCostruzionePertinenza ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
public boolean getTcInterventoOpereEscavazione ( ) {
return _tcInterventoOpereEscavazione ;
}
@Override
public boolean isTcInterventoOpereEscavazione ( ) {
return _tcInterventoOpereEscavazione ;
}
@Override
public void setTcInterventoOpereEscavazione (
boolean tcInterventoOpereEscavazione ) {
_tcInterventoOpereEscavazione = tcInterventoOpereEscavazione ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setTcInterventoOpereEscavazione" ,
boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel ,
tcInterventoOpereEscavazione ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
public boolean getTcViarch ( ) {
return _tcViarch ;
}
@Override
public boolean isTcViarch ( ) {
return _tcViarch ;
}
@Override
public void setTcViarch ( boolean tcViarch ) {
_tcViarch = tcViarch ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setTcViarch" , boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel , tcViarch ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
public boolean getTcOperaA25 ( ) {
return _tcOperaA25 ;
}
@Override
public boolean isTcOperaA25 ( ) {
return _tcOperaA25 ;
}
@Override
public void setTcOperaA25 ( boolean tcOperaA25 ) {
_tcOperaA25 = tcOperaA25 ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setTcOperaA25" , boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel , tcOperaA25 ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
@Override
public boolean getTcAltriInterventi ( ) {
public boolean getTcAltriInterventi ( ) {
return _tcAltriInterventi ;
return _tcAltriInterventi ;
@ -8755,6 +8940,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
clone . setVarianteSostanziale ( getVarianteSostanziale ( ) ) ;
clone . setVarianteSostanziale ( getVarianteSostanziale ( ) ) ;
clone . setOperaConforme ( getOperaConforme ( ) ) ;
clone . setOperaConforme ( getOperaConforme ( ) ) ;
clone . setCollaudoStatico ( getCollaudoStatico ( ) ) ;
clone . setCollaudoStatico ( getCollaudoStatico ( ) ) ;
clone . setNoCollaudo ( getNoCollaudo ( ) ) ;
clone . setCodiceFiscaleDelegato ( getCodiceFiscaleDelegato ( ) ) ;
clone . setCodiceFiscaleDelegato ( getCodiceFiscaleDelegato ( ) ) ;
clone . setCodiceRuoloDelegato ( getCodiceRuoloDelegato ( ) ) ;
clone . setCodiceRuoloDelegato ( getCodiceRuoloDelegato ( ) ) ;
clone . setCodiceFiscaleDelegatoCommittente ( getCodiceFiscaleDelegatoCommittente ( ) ) ;
clone . setCodiceFiscaleDelegatoCommittente ( getCodiceFiscaleDelegatoCommittente ( ) ) ;
@ -8903,6 +9089,10 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
clone . setTcRiparazioneInterventoLocale ( getTcRiparazioneInterventoLocale ( ) ) ;
clone . setTcRiparazioneInterventoLocale ( getTcRiparazioneInterventoLocale ( ) ) ;
clone . setTcCostruzioniEsistenti ( getTcCostruzioniEsistenti ( ) ) ;
clone . setTcCostruzioniEsistenti ( getTcCostruzioniEsistenti ( ) ) ;
clone . setTcManutOrdStraord ( getTcManutOrdStraord ( ) ) ;
clone . setTcManutOrdStraord ( getTcManutOrdStraord ( ) ) ;
clone . setTcNuovaCostruzionePertinenza ( getTcNuovaCostruzionePertinenza ( ) ) ;
clone . setTcInterventoOpereEscavazione ( getTcInterventoOpereEscavazione ( ) ) ;
clone . setTcViarch ( getTcViarch ( ) ) ;
clone . setTcOperaA25 ( getTcOperaA25 ( ) ) ;
clone . setTcAltriInterventi ( getTcAltriInterventi ( ) ) ;
clone . setTcAltriInterventi ( getTcAltriInterventi ( ) ) ;
clone . setTcAltriInterventiDesc ( getTcAltriInterventiDesc ( ) ) ;
clone . setTcAltriInterventiDesc ( getTcAltriInterventiDesc ( ) ) ;
clone . setTcInCA ( getTcInCA ( ) ) ;
clone . setTcInCA ( getTcInCA ( ) ) ;
@ -9001,7 +9191,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
@Override
@Override
public String toString ( ) {
public String toString ( ) {
StringBundler sb = new StringBundler ( 48 9 ) ;
StringBundler sb = new StringBundler ( 49 9 ) ;
sb . append ( "{uuid=" ) ;
sb . append ( "{uuid=" ) ;
sb . append ( getUuid ( ) ) ;
sb . append ( getUuid ( ) ) ;
@ -9103,6 +9293,8 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
sb . append ( getOperaConforme ( ) ) ;
sb . append ( getOperaConforme ( ) ) ;
sb . append ( ", collaudoStatico=" ) ;
sb . append ( ", collaudoStatico=" ) ;
sb . append ( getCollaudoStatico ( ) ) ;
sb . append ( getCollaudoStatico ( ) ) ;
sb . append ( ", noCollaudo=" ) ;
sb . append ( getNoCollaudo ( ) ) ;
sb . append ( ", codiceFiscaleDelegato=" ) ;
sb . append ( ", codiceFiscaleDelegato=" ) ;
sb . append ( getCodiceFiscaleDelegato ( ) ) ;
sb . append ( getCodiceFiscaleDelegato ( ) ) ;
sb . append ( ", codiceRuoloDelegato=" ) ;
sb . append ( ", codiceRuoloDelegato=" ) ;
@ -9399,6 +9591,14 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
sb . append ( getTcCostruzioniEsistenti ( ) ) ;
sb . append ( getTcCostruzioniEsistenti ( ) ) ;
sb . append ( ", tcManutOrdStraord=" ) ;
sb . append ( ", tcManutOrdStraord=" ) ;
sb . append ( getTcManutOrdStraord ( ) ) ;
sb . append ( getTcManutOrdStraord ( ) ) ;
sb . append ( ", tcNuovaCostruzionePertinenza=" ) ;
sb . append ( getTcNuovaCostruzionePertinenza ( ) ) ;
sb . append ( ", tcInterventoOpereEscavazione=" ) ;
sb . append ( getTcInterventoOpereEscavazione ( ) ) ;
sb . append ( ", tcViarch=" ) ;
sb . append ( getTcViarch ( ) ) ;
sb . append ( ", tcOperaA25=" ) ;
sb . append ( getTcOperaA25 ( ) ) ;
sb . append ( ", tcAltriInterventi=" ) ;
sb . append ( ", tcAltriInterventi=" ) ;
sb . append ( getTcAltriInterventi ( ) ) ;
sb . append ( getTcAltriInterventi ( ) ) ;
sb . append ( ", tcAltriInterventiDesc=" ) ;
sb . append ( ", tcAltriInterventiDesc=" ) ;
@ -9498,7 +9698,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
@Override
@Override
public String toXmlString ( ) {
public String toXmlString ( ) {
StringBundler sb = new StringBundler ( 736 ) ;
StringBundler sb = new StringBundler ( 751 ) ;
sb . append ( "<model><model-name>" ) ;
sb . append ( "<model><model-name>" ) ;
sb . append ( "it.tref.liferay.portos.bo.model.DettPratica" ) ;
sb . append ( "it.tref.liferay.portos.bo.model.DettPratica" ) ;
@ -9704,6 +9904,10 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
"<column><column-name>collaudoStatico</column-name><column-value><![CDATA[" ) ;
"<column><column-name>collaudoStatico</column-name><column-value><![CDATA[" ) ;
sb . append ( getCollaudoStatico ( ) ) ;
sb . append ( getCollaudoStatico ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>noCollaudo</column-name><column-value><![CDATA[" ) ;
sb . append ( getNoCollaudo ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
sb . append (
"<column><column-name>codiceFiscaleDelegato</column-name><column-value><![CDATA[" ) ;
"<column><column-name>codiceFiscaleDelegato</column-name><column-value><![CDATA[" ) ;
sb . append ( getCodiceFiscaleDelegato ( ) ) ;
sb . append ( getCodiceFiscaleDelegato ( ) ) ;
@ -10296,6 +10500,22 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
"<column><column-name>tcManutOrdStraord</column-name><column-value><![CDATA[" ) ;
"<column><column-name>tcManutOrdStraord</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcManutOrdStraord ( ) ) ;
sb . append ( getTcManutOrdStraord ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcNuovaCostruzionePertinenza</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcNuovaCostruzionePertinenza ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcInterventoOpereEscavazione</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcInterventoOpereEscavazione ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcViarch</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcViarch ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcOperaA25</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcOperaA25 ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
sb . append (
"<column><column-name>tcAltriInterventi</column-name><column-value><![CDATA[" ) ;
"<column><column-name>tcAltriInterventi</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcAltriInterventi ( ) ) ;
sb . append ( getTcAltriInterventi ( ) ) ;
@ -10538,6 +10758,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
private boolean _varianteSostanziale ;
private boolean _varianteSostanziale ;
private boolean _operaConforme ;
private boolean _operaConforme ;
private boolean _collaudoStatico ;
private boolean _collaudoStatico ;
private boolean _noCollaudo ;
private String _codiceFiscaleDelegato ;
private String _codiceFiscaleDelegato ;
private String _codiceRuoloDelegato ;
private String _codiceRuoloDelegato ;
private String _codiceFiscaleDelegatoCommittente ;
private String _codiceFiscaleDelegatoCommittente ;
@ -10686,6 +10907,10 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
private boolean _tcRiparazioneInterventoLocale ;
private boolean _tcRiparazioneInterventoLocale ;
private boolean _tcCostruzioniEsistenti ;
private boolean _tcCostruzioniEsistenti ;
private boolean _tcManutOrdStraord ;
private boolean _tcManutOrdStraord ;
private boolean _tcNuovaCostruzionePertinenza ;
private boolean _tcInterventoOpereEscavazione ;
private boolean _tcViarch ;
private boolean _tcOperaA25 ;
private boolean _tcAltriInterventi ;
private boolean _tcAltriInterventi ;
private String _tcAltriInterventiDesc ;
private String _tcAltriInterventiDesc ;
private boolean _tcInCA ;
private boolean _tcInCA ;