blob: 6bdee4fffa00067d5884d7a68f6c74a815cf0a54 [file] [log] [blame]
Simon Huntf844f632015-05-20 19:06:35 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18package org.onosproject.cord.gui.model;
19
20import com.fasterxml.jackson.databind.JsonNode;
21import com.fasterxml.jackson.databind.ObjectMapper;
22import com.fasterxml.jackson.databind.node.ObjectNode;
23
24/**
25 * Default implementation of an XOS function.
26 */
27public class DefaultXosFunction implements XosFunction {
28
29 private static final ObjectMapper MAPPER = new ObjectMapper();
30
31 private final XosFunctionDescriptor descriptor;
32
33 public DefaultXosFunction(XosFunctionDescriptor xfd) {
34 descriptor = xfd;
35 }
36
37 public XosFunctionDescriptor descriptor() {
38 return descriptor;
39 }
40
41 public ObjectNode params() {
42 return MAPPER.createObjectNode();
43 }
44
45 public String toJson() {
46 return null;
47 }
48
49 public JsonNode toJsonNode() {
50 return null;
51 }
52}