Project

General

Profile

« Previous | Next » 

Revision 59334

using the new broker model

View differences:

modules/uoa-repository-manager-service/trunk/src/main/java/eu/dnetlib/repo/manager/domain/broker/EventsPage.java
1 1
package eu.dnetlib.repo.manager.domain.broker;
2 2

  
3
import eu.dnetlib.broker.objects.OpenAireEventPayload;
3
import eu.dnetlib.broker.objects.OaBrokerEventPayload;
4 4

  
5 5
import java.util.List;
6 6

  
......
14 14
    private long currPage;
15 15
    private long totalPages;
16 16
    private long total;
17
    private List<OpenAireEventPayload> values;
17
    private List<OaBrokerEventPayload> values;
18 18

  
19 19
    public EventsPage() {
20 20

  
21 21
    }
22 22
    public EventsPage(final String datasource, final String topic, final long currPage, final long totalPages, final long total,
23
                      final List<OpenAireEventPayload> values) {
23
                      final List<OaBrokerEventPayload> values) {
24 24
        this.datasource = datasource;
25 25
        this.topic = topic;
26 26
        this.currPage = currPage;
......
69 69
        this.total = total;
70 70
    }
71 71

  
72
    public List<OpenAireEventPayload> getValues() {
72
    public List<OaBrokerEventPayload> getValues() {
73 73
        return values;
74 74
    }
75 75

  
76
    public void setValues(List<OpenAireEventPayload> values) {
76
    public void setValues(List<OaBrokerEventPayload> values) {
77 77
        this.values = values;
78 78
    }
79 79
}
modules/uoa-repository-manager-service/trunk/pom.xml
9 9
        <version>1.0.0-SNAPSHOT</version>
10 10
    </parent>
11 11
    <modelVersion>4.0.0</modelVersion>
12
    <groupId>eu.dnetlib</groupId>
13 12
    <artifactId>uoa-repository-manager-service</artifactId>
14 13
    <version>1.0.0-SNAPSHOT</version>
15 14
    <packaging>war</packaging>
16 15

  
17 16

  
18 17
    <dependencies>
19

  
20 18
        <dependency>
21 19
            <groupId>org.springframework</groupId>
22 20
            <artifactId>spring-webmvc</artifactId>
23 21
            <version>${spring.version}</version>
24 22
        </dependency>
25

  
26 23
        <dependency>
27 24
            <groupId>org.hibernate</groupId>
28 25
            <artifactId>hibernate-validator-annotation-processor</artifactId>
29 26
            <version>4.1.0.Final</version>
30 27
        </dependency>
31

  
32 28
        <dependency>
33 29
            <groupId>log4j</groupId>
34 30
            <artifactId>log4j</artifactId>
35 31
            <version>${log4j.version}</version>
36 32
        </dependency>
37

  
38 33
        <dependency>
39 34
            <groupId>eu.dnetlib</groupId>
40 35
            <artifactId>dnet-runtime</artifactId>
......
46 41
                </exclusion>
47 42
            </exclusions>
48 43
        </dependency>
49

  
50 44
        <dependency>
51 45
            <groupId>eu.dnetlib</groupId>
52 46
            <artifactId>uoa-utils</artifactId>
53 47
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
54 48
        </dependency>
55

  
56 49
        <dependency>
57 50
            <groupId>eu.dnetlib</groupId>
58 51
            <artifactId>uoa-domain</artifactId>
......
64 57
                </exclusion>
65 58
            </exclusions>
66 59
        </dependency>
67

  
68 60
        <dependency>
69 61
            <groupId>eu.dnetlib</groupId>
70 62
            <artifactId>dnet-openaire-usage-stats-sushilite</artifactId>
71 63
            <version>1.0.0-SNAPSHOT</version>
72 64
        </dependency>
73 65
        <dependency>
74
            <groupId>eu.dnetlib</groupId>
66
            <groupId>eu.dnetlib.dhp</groupId>
75 67
            <artifactId>dnet-openaire-broker-common</artifactId>
76
            <version>1.0.2-SNAPSHOT</version>
68
            <version>3.1.1-SNAPSHOT</version>
77 69
        </dependency>
78 70
        <dependency>
79 71
            <groupId>cglib</groupId>

Also available in: Unified diff