f4ff4cd9324749af3d72007168fd278c7a499549
[policy/apex-pdp.git] / client / client-editor / src / main / java / org / onap / policy / apex / client / editor / rest / handling / KeyInfoHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.client.editor.rest.handling;
22
23 import org.onap.policy.apex.model.modelapi.ApexApiResult;
24
25 /**
26  * This class handles commands on key information in Apex models.
27  */
28 public class KeyInfoHandler implements RestCommandHandler {
29     /**
30      * {@inheritDoc}.
31      */
32     @Override
33     public ApexApiResult executeRestCommand(final RestSession session, final RestCommandType commandType,
34                     final RestCommand command) {
35         return getUnsupportedCommandResultMessage(session, commandType, command);
36     }
37
38     /**
39      * {@inheritDoc}.
40      */
41     @Override
42     public ApexApiResult executeRestCommand(final RestSession session, final RestCommandType commandType,
43                     final RestCommand command, final String jsonString) {
44         return getUnsupportedCommandResultMessage(session, commandType, command);
45     }
46
47     /**
48      * {@inheritDoc}.
49      */
50     @Override
51     public ApexApiResult executeRestCommand(final RestSession session, final RestCommandType commandType,
52                     final RestCommand command, final String name, final String version) {
53
54         if (RestCommandType.KEY_INFO.equals(commandType) && RestCommand.LIST.equals(command)) {
55             return listKeyInformation(session, name, version);
56         }
57         else {
58             return getUnsupportedCommandResultMessage(session, commandType, command);
59         }
60     }
61
62     /**
63      * Get the key information for a concept with the given name and version.
64      * @param session the editor session containing the Apex model
65      * @param name the name for the search
66      * @param version the version for the search
67      * @return the key information
68      */
69     private ApexApiResult listKeyInformation(final RestSession session, final String name, final String version) {
70         return session.getApexModel().listKeyInformation(blank2Null(name), blank2Null(version));
71     }
72 }