aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/asdc/beans/SecureServices.java
blob: a6aa3de6fae527c3925312ff167fce940e66633a (plain)
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
27
28
29
30
package org.onap.vid.asdc.beans;

import java.util.Collection;
import java.util.List;

/**
 * Created by Oren on 6/27/17.
 */
public class SecureServices {

    private Collection<Service> services;
    private boolean isReadOnly = true;

    public void setServices(Collection<Service> services) {
        this.services = services;
    }

    public Collection<Service> getServices() {

        return services;
    }
    public boolean isReadOnly() {
        return isReadOnly;
    }

    public void setReadOnly(boolean readOnly) {
        isReadOnly = readOnly;
    }

}