[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / ONAP-PDP / src / test / java / org / onap / policy / pdp / test / custom / DataTypePublicKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdp.test.custom;
22
23 import java.security.PublicKey;
24
25 import com.att.research.xacml.api.DataTypeException;
26 import com.att.research.xacml.api.Identifier;
27 import com.att.research.xacml.std.IdentifierImpl;
28 import com.att.research.xacml.std.datatypes.DataTypeBase;
29
30 public class DataTypePublicKey extends DataTypeBase<PublicKey> {
31         public static final Identifier DT_PUBLICKEY = new IdentifierImpl("urn:com:att:research:xacml:custom:3.0:rsa:public");
32         private static final DataTypePublicKey singleInstance = new DataTypePublicKey();
33         
34         public DataTypePublicKey() {
35                 super(DT_PUBLICKEY, PublicKey.class);
36         }
37         
38         public static DataTypePublicKey newInstance() {
39                 return singleInstance;
40         }
41
42         @Override
43         public PublicKey convert(Object source) throws DataTypeException {
44                 if (source == null || (source instanceof PublicKey) ) {
45                         return (PublicKey) source;
46                 } else if (source instanceof byte[]) {
47                         return (PublicKey) source;
48                 } else if (source instanceof String) {
49                         return (PublicKey) (Object) ((String) source).getBytes();
50                 }
51                 throw new DataTypeException(this, "Failed to convert \"" + source.getClass().getCanonicalName());                               
52         }
53
54 }