Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / FeedAuthorization.java
1 /*******************************************************************************\r
2  * ============LICENSE_START==================================================\r
3  * * org.onap.dmaap\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 \r
24 \r
25 package org.onap.dmaap.datarouter.provisioning.beans;\r
26 \r
27 import java.util.HashSet;\r
28 import java.util.Set;\r
29 \r
30 import org.json.JSONArray;\r
31 import org.json.JSONObject;\r
32 \r
33 /**\r
34  * The representation of a Feed authorization.  This encapsulates the authorization information about a feed.\r
35  * @author Robert Eby\r
36  * @version $Id: FeedAuthorization.java,v 1.2 2013/06/20 14:11:05 eby Exp $\r
37  */\r
38 public class FeedAuthorization implements JSONable {\r
39         private String classification;\r
40         private Set<FeedEndpointID> endpoint_ids;\r
41         private Set<String> endpoint_addrs;\r
42 \r
43         public FeedAuthorization() {\r
44                 this.classification = "";\r
45                 this.endpoint_ids = new HashSet<FeedEndpointID>();\r
46                 this.endpoint_addrs = new HashSet<String>();\r
47         }\r
48         public String getClassification() {\r
49                 return classification;\r
50         }\r
51         public void setClassification(String classification) {\r
52                 this.classification = classification;\r
53         }\r
54         public Set<FeedEndpointID> getEndpoint_ids() {\r
55                 return endpoint_ids;\r
56         }\r
57         public void setEndpoint_ids(Set<FeedEndpointID> endpoint_ids) {\r
58                 this.endpoint_ids = endpoint_ids;\r
59         }\r
60         public Set<String> getEndpoint_addrs() {\r
61                 return endpoint_addrs;\r
62         }\r
63         public void setEndpoint_addrs(Set<String> endpoint_addrs) {\r
64                 this.endpoint_addrs = endpoint_addrs;\r
65         }\r
66 \r
67         @Override\r
68         public JSONObject asJSONObject() {\r
69                 JSONObject jo = new JSONObject();\r
70                 jo.put("classification", classification);\r
71                 JSONArray ja = new JSONArray();\r
72                 for (FeedEndpointID eid : endpoint_ids) {\r
73                         ja.put(eid.asJSONObject());\r
74                 }\r
75                 jo.put("endpoint_ids", ja);\r
76                 ja = new JSONArray();\r
77                 for (String t : endpoint_addrs) {\r
78                         ja.put(t);\r
79                 }\r
80                 jo.put("endpoint_addrs", ja);\r
81                 return jo;\r
82         }\r
83         @Override\r
84         public boolean equals(Object obj) {\r
85                 if (!(obj instanceof FeedAuthorization))\r
86                         return false;\r
87                 FeedAuthorization of = (FeedAuthorization) obj;\r
88                 if (!classification.equals(of.classification))\r
89                         return false;\r
90                 if (!endpoint_ids.equals(of.endpoint_ids))\r
91                         return false;\r
92                 if (!endpoint_addrs.equals(of.endpoint_addrs))\r
93                         return false;\r
94                 return true;\r
95         }\r
96 }\r