Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / asdc / beans / SecureServices.java
1 package org.onap.vid.asdc.beans;
2
3 import java.util.Collection;
4
5 /**
6  * Created by Oren on 6/27/17.
7  */
8 public class SecureServices {
9
10     private Collection<Service> services;
11     private boolean isReadOnly = true;
12
13     public void setServices(Collection<Service> services) {
14         this.services = services;
15     }
16
17     public Collection<Service> getServices() {
18
19         return services;
20     }
21     public boolean isReadOnly() {
22         return isReadOnly;
23     }
24
25     public void setReadOnly(boolean readOnly) {
26         isReadOnly = readOnly;
27     }
28
29 }