Upgrade sonar plugin
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / asdc / beans / SecureServices.java
1 package org.openecomp.vid.asdc.beans;
2
3 import java.util.Collection;
4 import java.util.List;
5
6 /**
7  * Created by Oren on 6/27/17.
8  */
9 public class SecureServices {
10
11     private Collection<Service> services;
12     //Disable roles until AAF integration finishes
13     private boolean isReadOnly = false;
14
15     public void setServices(Collection<Service> services) {
16         this.services = services;
17     }
18
19     public Collection<Service> getServices() {
20
21         return services;
22     }
23     public boolean isReadOnly() {
24         return isReadOnly;
25     }
26
27     public void setReadOnly(boolean readOnly) {
28         isReadOnly = readOnly;
29     }
30
31 }