First Commit - Source Code from Reply
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
eclipse.preferences.version=1
|
||||
encoding//src/main/java=UTF-8
|
||||
encoding/<project>=UTF-8
|
||||
@@ -0,0 +1,9 @@
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
||||
org.eclipse.jdt.core.compiler.release=disabled
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
@@ -0,0 +1,4 @@
|
||||
activeProfiles=
|
||||
eclipse.preferences.version=1
|
||||
resolveWorkspaceProjects=true
|
||||
version=1
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
|
||||
<wb-module deploy-name="dbcm-serviceinterface">
|
||||
<wb-resource deploy-path="/" source-path="/src/main/java"/>
|
||||
</wb-module>
|
||||
</project-modules>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<faceted-project>
|
||||
<installed facet="java" version="1.6"/>
|
||||
<installed facet="jst.utility" version="1.0"/>
|
||||
</faceted-project>
|
||||
@@ -0,0 +1,2 @@
|
||||
disabled=06target
|
||||
eclipse.preferences.version=1
|
||||
37
dbcm/dbcm-serviceinterface/pom.xml
Normal file
37
dbcm/dbcm-serviceinterface/pom.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>dbcm-serviceinterface</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<parent>
|
||||
<groupId>dbcm</groupId>
|
||||
<artifactId>dbcm</artifactId>
|
||||
<version>1.0</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.6</maven.compiler.source>
|
||||
<maven.compiler.target>1.6</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.7</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dbcm</groupId>
|
||||
<artifactId>dbcm-core</artifactId>
|
||||
<type>jar</type>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dbcm</groupId>
|
||||
<artifactId>dbcm-model</artifactId>
|
||||
<type>jar</type>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1,8 @@
|
||||
package dbcm.service.business;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public interface Cessazioni13MService {
|
||||
public void getEsitiCessazioniFromGFP(Date dateForGetFiles) throws Exception;
|
||||
public void getEsitiCessazioniFromGFP(String fileName, String pathName) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package dbcm.service.business;
|
||||
|
||||
import dbcm.model.bean.EsitoAttCessModel;
|
||||
|
||||
public interface EsitoService {
|
||||
public String sendEsitoHandler(EsitoAttCessModel esitoAttCess);
|
||||
public void createFileEsitiHandler() throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package dbcm.service.db;
|
||||
|
||||
import dbcm.model.bean.EsitoAttCessModel;
|
||||
|
||||
public interface EsitoAttCessScartiService {
|
||||
public Long insert(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package dbcm.service.db;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import dbcm.model.bean.EsitoAttCessModel;
|
||||
|
||||
public interface EsitoAttCessService {
|
||||
public Long insert(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
public void update(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
public void updateIdRichiesta(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
public EsitoAttCessModel findExisting(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
public List<EsitoAttCessModel> findDaProcessare() throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package dbcm.service.db;
|
||||
|
||||
import dbcm.model.bean.EsitoAttCessModel;
|
||||
import dbcm.model.bean.GestioneRichiestaRecModel;
|
||||
|
||||
public interface GestioneRichiestaRecService {
|
||||
public GestioneRichiestaRecModel findExisting(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package dbcm.service.db;
|
||||
|
||||
import dbcm.model.bean.EsitoAttCessModel;
|
||||
import dbcm.model.bean.GestioneRichiestaModel;
|
||||
|
||||
public interface GestioneRichiestaService {
|
||||
public GestioneRichiestaModel findExisting(EsitoAttCessModel esitoAttCessModel) throws Exception;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
dbcm/dbcm-serviceinterface/target/dbcm-serviceinterface-1.0.jar
Normal file
BIN
dbcm/dbcm-serviceinterface/target/dbcm-serviceinterface-1.0.jar
Normal file
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
#Generated by Maven
|
||||
#Fri Jun 10 14:06:51 CEST 2022
|
||||
version=1.0
|
||||
groupId=dbcm
|
||||
artifactId=dbcm-serviceinterface
|
||||
@@ -0,0 +1,6 @@
|
||||
dbcm\service\business\EsitoService.class
|
||||
dbcm\service\db\GestioneRichiestaRecService.class
|
||||
dbcm\service\db\EsitoAttCessService.class
|
||||
dbcm\service\db\GestioneRichiestaService.class
|
||||
dbcm\service\business\Cessazioni13MService.class
|
||||
dbcm\service\db\EsitoAttCessScartiService.class
|
||||
@@ -0,0 +1,6 @@
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\business\EsitoService.java
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\db\GestioneRichiestaService.java
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\db\EsitoAttCessService.java
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\db\GestioneRichiestaRecService.java
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\db\EsitoAttCessScartiService.java
|
||||
C:\dev\TIM\DBCMNP\dbcmnp_workspace\dbcm\dbcm-serviceinterface\src\main\java\dbcm\service\business\Cessazioni13MService.java
|
||||
Reference in New Issue
Block a user