Revision 45174
Added by Claudio Atzori almost 8 years ago
modules/dnet-msro-service-api/trunk/deploy.info | ||
---|---|---|
1 |
{"type_source": "SVN", "goal": "package -U -T 4C source:jar", "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-msro-service-api/trunk/", "deploy_repository": "dnet4-snapshots", "version": "4", "mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it", "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", "name": "dnet-msro-service-api"} |
modules/dnet-msro-service-api/trunk/src/main/java/eu/dnetlib/msro/rmi/MSROException.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.rmi; |
|
2 |
|
|
3 |
import eu.dnetlib.common.rmi.RMIException; |
|
4 |
|
|
5 |
public class MSROException extends RMIException { |
|
6 |
|
|
7 |
/** |
|
8 |
* |
|
9 |
*/ |
|
10 |
private static final long serialVersionUID = 767303634254723704L; |
|
11 |
|
|
12 |
public MSROException(String string) { |
|
13 |
super(string); |
|
14 |
} |
|
15 |
|
|
16 |
public MSROException(String string, Throwable exception) { |
|
17 |
super(string, exception); |
|
18 |
} |
|
19 |
|
|
20 |
public MSROException(Throwable exception) { |
|
21 |
super(exception); |
|
22 |
} |
|
23 |
|
|
24 |
} |
modules/dnet-msro-service-api/trunk/src/main/java/eu/dnetlib/msro/rmi/MSROService.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.rmi; |
|
2 |
|
|
3 |
import javax.jws.WebService; |
|
4 |
|
|
5 |
import eu.dnetlib.common.rmi.BaseService; |
|
6 |
|
|
7 |
@WebService(targetNamespace = "http://services.dnetlib.eu/") |
|
8 |
public interface MSROService extends BaseService { |
|
9 |
|
|
10 |
} |
modules/dnet-msro-service-api/trunk/src/main/java/eu/dnetlib/msro/rmi/MSRORuntimeException.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.rmi; |
|
2 |
|
|
3 |
/** |
|
4 |
* Created by alessia on 26/01/16. |
|
5 |
*/ |
|
6 |
public class MSRORuntimeException extends RuntimeException { |
|
7 |
|
|
8 |
public MSRORuntimeException(String string) { |
|
9 |
super(string); |
|
10 |
} |
|
11 |
|
|
12 |
public MSRORuntimeException(String string, Throwable exception) { |
|
13 |
super(string, exception); |
|
14 |
} |
|
15 |
|
|
16 |
public MSRORuntimeException(Throwable exception) { |
|
17 |
super(exception); |
|
18 |
} |
|
19 |
|
|
20 |
} |
modules/dnet-msro-service-api/trunk/pom.xml | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
<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/maven-v4_0_0.xsd"> |
|
3 |
<parent> |
|
4 |
<groupId>eu.dnetlib</groupId> |
|
5 |
<artifactId>dnet-parent</artifactId> |
|
6 |
<version>1.0.0</version> |
|
7 |
<relativePath /> |
|
8 |
</parent> |
|
9 |
|
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<groupId>eu.dnetlib</groupId> |
|
12 |
<artifactId>dnet-msro-service-api</artifactId> |
|
13 |
<packaging>jar</packaging> |
|
14 |
<version>2.0.1-SNAPSHOT</version> |
|
15 |
<scm> |
|
16 |
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-msro-service-api/trunk</developerConnection> |
|
17 |
</scm> |
|
18 |
<dependencies> |
|
19 |
<dependency> |
|
20 |
<groupId>eu.dnetlib</groupId> |
|
21 |
<artifactId>cnr-rmi-api</artifactId> |
|
22 |
<version>[2.0.0,3.0.0)</version> |
|
23 |
</dependency> |
|
24 |
</dependencies> |
|
25 |
</project> |
modules/dnet-msro-service-api/tags/dnet-msro-service-api-2.0.0/deploy.info | ||
---|---|---|
1 |
{"type_source": "SVN", "goal": "package -U -T 4C source:jar", "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-msro-service-api/trunk/", "deploy_repository": "dnet4-snapshots", "version": "4", "mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it", "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", "name": "dnet-msro-service-api"} |
modules/dnet-msro-service-api/tags/dnet-msro-service-api-2.0.0/src/main/java/eu/dnetlib/msro/rmi/MSROException.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.rmi; |
|
2 |
|
|
3 |
import eu.dnetlib.common.rmi.RMIException; |
|
4 |
|
|
5 |
public class MSROException extends RMIException { |
|
6 |
|
|
7 |
/** |
|
8 |
* |
|
9 |
*/ |
|
10 |
private static final long serialVersionUID = 767303634254723704L; |
|
11 |
|
|
12 |
public MSROException(String string) { |
|
13 |
super(string); |
|
14 |
} |
|
15 |
|
|
16 |
public MSROException(String string, Throwable exception) { |
|
17 |
super(string, exception); |
|
18 |
} |
|
19 |
|
|
20 |
public MSROException(Throwable exception) { |
|
21 |
super(exception); |
|
22 |
} |
|
23 |
|
|
24 |
} |
modules/dnet-msro-service-api/tags/dnet-msro-service-api-2.0.0/src/main/java/eu/dnetlib/msro/rmi/MSROService.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.rmi; |
|
2 |
|
|
3 |
import javax.jws.WebService; |
|
4 |
|
|
5 |
import eu.dnetlib.common.rmi.BaseService; |
|
6 |
|
|
7 |
@WebService(targetNamespace = "http://services.dnetlib.eu/") |
|
8 |
public interface MSROService extends BaseService { |
|
9 |
|
|
10 |
} |
modules/dnet-msro-service-api/tags/dnet-msro-service-api-2.0.0/pom.xml | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
<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/maven-v4_0_0.xsd"> |
|
3 |
<parent> |
|
4 |
<groupId>eu.dnetlib</groupId> |
|
5 |
<artifactId>dnet-parent</artifactId> |
|
6 |
<version>1.0.0</version> |
|
7 |
<relativePath /> |
|
8 |
</parent> |
|
9 |
|
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<groupId>eu.dnetlib</groupId> |
|
12 |
<artifactId>dnet-msro-service-api</artifactId> |
|
13 |
<packaging>jar</packaging> |
|
14 |
<version>2.0.0</version> |
|
15 |
<scm> |
|
16 |
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-msro-service-api/tags/dnet-msro-service-api-2.0.0</developerConnection> |
|
17 |
</scm> |
|
18 |
<dependencies> |
|
19 |
<dependency> |
|
20 |
<groupId>eu.dnetlib</groupId> |
|
21 |
<artifactId>cnr-rmi-api</artifactId> |
|
22 |
<version>[2.0.0,3.0.0)</version> |
|
23 |
</dependency> |
|
24 |
</dependencies> |
|
25 |
</project> |
Also available in: Unified diff
codebase used to migrate to java8 the production system