KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > portlets > indexation > model > Indexation


1 package com.dotmarketing.portlets.indexation.model;
2
3 import java.util.Date JavaDoc;
4
5 public class Indexation
6 {
7     private long indexationId;
8     private long objectToIndex;
9     private Date JavaDoc timestamp;
10     private String JavaDoc serverId;
11     public Indexation(){
12     }
13     
14     public long getIndexationId() {
15         return indexationId;
16     }
17
18     public void setIndexationId(long indexationId) {
19         this.indexationId = indexationId;
20     }
21
22     public long getObjectToIndex() {
23         return objectToIndex;
24     }
25     public void setObjectToIndex(long objectToIndex) {
26         this.objectToIndex = objectToIndex;
27     }
28     public Date JavaDoc getTimestamp() {
29         return timestamp;
30     }
31     public void setTimestamp(Date JavaDoc timestamp) {
32         this.timestamp = timestamp;
33     }
34     public String JavaDoc getServerId() {
35         return serverId;
36     }
37     public void setServerId(String JavaDoc serverId) {
38         this.serverId = serverId;
39     }
40
41 }
Popular Tags