forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObj.java
More file actions
26 lines (21 loc) · 636 Bytes
/
Obj.java
File metadata and controls
26 lines (21 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* Copyright (C) 2007-2014, GoodData(R) Corporation. All rights reserved.
*/
package com.gooddata.md;
import org.codehaus.jackson.annotate.JsonProperty;
import org.springframework.web.util.UriTemplate;
/**
* Metadata object
*/
public abstract class Obj {
public static final String URI = "/gdc/md/{projectId}/obj";
public static final String OBJ_URI = URI + "/{objId}";
public static final UriTemplate OBJ_TEMPLATE = new UriTemplate(OBJ_URI);
protected final Meta meta;
public Obj(@JsonProperty("meta") Meta meta) {
this.meta = meta;
}
public Meta getMeta() {
return meta;
}
}