Project

General

Profile

« Previous | Next » 

Revision 55027

[Trunk|AdminTools]: 1. Add Layout Collection 2. Create getLayout, updateLayout, resetLayout in CommunityController 3. Add at admintooles.properties default color=color of connect

View differences:

CommunityResponse.java
5 5
import org.springframework.data.annotation.Id;
6 6

  
7 7
import java.util.List;
8
import java.util.Map;
9 8

  
10 9
public class CommunityResponse {
11 10

  
......
17 16
    private String name;
18 17
    private List<CommunityPage> pages;
19 18
    private List<CommunityEntity> entities;
19
    private Layout layout;
20 20

  
21 21
    public CommunityResponse() {}
22 22

  
......
59 59
    public void setEntities(List<CommunityEntity> entities) {
60 60
        this.entities = entities;
61 61
    }
62

  
63
    public Layout getLayout() {
64
        return layout;
65
    }
66

  
67
    public void setLayout(Layout layout) {
68
        this.layout = layout;
69
    }
62 70
}

Also available in: Unified diff