~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/src/egroupware/infolog/server/jaxws/GetInfologsResponse.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
package egroupware.infolog.server.jaxws;
3
 
 
4
 
import java.util.List;
5
 
import javax.xml.bind.annotation.XmlAccessType;
6
 
import javax.xml.bind.annotation.XmlAccessorType;
7
 
import javax.xml.bind.annotation.XmlElement;
8
 
import javax.xml.bind.annotation.XmlRootElement;
9
 
import javax.xml.bind.annotation.XmlType;
10
 
 
11
 
@XmlRootElement(name = "getInfologsResponse", namespace = "http://server.infolog.egroupware/")
12
 
@XmlAccessorType(XmlAccessType.FIELD)
13
 
@XmlType(name = "getInfologsResponse", namespace = "http://server.infolog.egroupware/")
14
 
public class GetInfologsResponse {
15
 
 
16
 
    @XmlElement(name = "return", namespace = "")
17
 
    private List<egroupware.infolog.server.dba.Infolog> _return;
18
 
 
19
 
    /**
20
 
     * 
21
 
     * @return
22
 
     *     returns List<Infolog>
23
 
     */
24
 
    public List<egroupware.infolog.server.dba.Infolog> getReturn() {
25
 
        return this._return;
26
 
    }
27
 
 
28
 
    /**
29
 
     * 
30
 
     * @param _return
31
 
     *     the value for the _return property
32
 
     */
33
 
    public void setReturn(List<egroupware.infolog.server.dba.Infolog> _return) {
34
 
        this._return = _return;
35
 
    }
36
 
 
37
 
}