d995270e22e2be9233604c31baf2fe0a046d69a3
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / impl / AuthRespSupplementImpl.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.authz.impl;\r
26 \r
27 import java.util.HashMap;\r
28 import java.util.Map;\r
29 \r
30 import org.onap.dmaap.datarouter.authz.AuthorizationResponseSupplement;\r
31 \r
32 /** Carries supplementary information--an advice or an obligation--from the authorization response returned\r
33  *  by a XACML Policy Decision Point.   Not used in Data Router R1.\r
34  * @author J. F. Lucas\r
35  *\r
36  */\r
37 public class AuthRespSupplementImpl implements AuthorizationResponseSupplement {\r
38 \r
39     private String id = null;\r
40     private Map<String, String> attributes = null;\r
41 \r
42     /** Constructor, available within the package.\r
43      *\r
44      * @param id  The identifier for the advice or obligation element\r
45      * @param attributes The attributes (name-value pairs) for the advice or obligation element.\r
46      */\r
47     AuthRespSupplementImpl (String id, Map<String, String> attributes) {\r
48         this.id = id;\r
49         this.attributes = new HashMap<String,String>(attributes);\r
50     }\r
51 \r
52     /** Return the identifier for the supplementary information element.\r
53      *\r
54      * @return a <code>String</code> containing the identifier.\r
55      */\r
56     @Override\r
57     public String getId() {\r
58         return id;\r
59     }\r
60 \r
61     /** Return the attributes for the supplementary information element, as a <code>Map</code> in which\r
62      * keys represent attribute identifiers and values represent attribute values.\r
63      *\r
64      * @return attributes for the supplementary information element.\r
65      */\r
66     @Override\r
67     public Map<String, String> getAttributes() {\r
68         return attributes;\r
69     }\r
70 \r
71 }\r