• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

alibaba / jetcache / #405

16 Apr 2024 05:58AM UTC coverage: 0.0% (-88.9%) from 88.866%
#405

push

areyouok
add encoding to fix coverage report

0 of 5353 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/jetcache-core/src/main/java/com/alicp/jetcache/support/CacheMessage.java
1
/**
2
 * Created on 2019/6/22.
3
 */
4

5
package com.alicp.jetcache.support;
6

7
import java.io.Serializable;
8

9
/**
10
 * The CacheMessage is used for distributed message while CacheEvent used in single JVM.
11
 * @author huangli
12
 */
13
public class CacheMessage implements Serializable {
×
14
    private static final long serialVersionUID = -462475561129953207L;
15

16
    public static final int TYPE_PUT = 1;
17
    public static final int TYPE_PUT_ALL = 2;
18
    public static final int TYPE_REMOVE = 3;
19
    public static final int TYPE_REMOVE_ALL = 4;
20

21
    private String sourceId;
22

23
    private String area;
24

25
    private String cacheName;
26

27
    private int type;
28

29
    private Object[] keys;
30

31
    /**
32
     * this field is reserved.
33
     */
34
    private Object[] values;
35

36
    public int getType() {
37
        return type;
×
38
    }
39

40
    public void setType(int type) {
41
        this.type = type;
×
42
    }
×
43

44
    public Object[] getKeys() {
45
        return keys;
×
46
    }
47

48
    public void setKeys(Object[] keys) {
49
        this.keys = keys;
×
50
    }
×
51

52
    public Object[] getValues() {
53
        return values;
×
54
    }
55

56
    public void setValues(Object[] values) {
57
        this.values = values;
×
58
    }
×
59

60
    public String getArea() {
61
        return area;
×
62
    }
63

64
    public void setArea(String area) {
65
        this.area = area;
×
66
    }
×
67

68
    public String getCacheName() {
69
        return cacheName;
×
70
    }
71

72
    public void setCacheName(String cacheName) {
73
        this.cacheName = cacheName;
×
74
    }
×
75

76
    public String getSourceId() {
77
        return sourceId;
×
78
    }
79

80
    public void setSourceId(String sourceId) {
81
        this.sourceId = sourceId;
×
82
    }
×
83
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc