blob: 84b125645c01a9c5df499b2e655711317dd95bdf [file] [log] [blame]
Thomas Vachuska9ed335b2015-04-14 12:07:47 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska9ed335b2015-04-14 12:07:47 -07003 *
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 */
16package org.onosproject.ui.impl;
17
18import com.fasterxml.jackson.databind.JsonNode;
19
20import java.util.Set;
21
22/**
23 * Provisional service to keep track of the topology view sprite definitions.
24 */
25public interface SpriteService {
26
27 /**
28 * Returns set of registered sprite definition names.
29 *
30 * @return set of sprite definition names
31 */
32 Set<String> getNames();
33
34 /**
35 * Registers sprite data under the specified name.
36 *
37 * @param name sprite definition name
38 * @param spriteData sprite data
39 */
40 void put(String name, JsonNode spriteData);
41
42 /**
43 * Returns the sprite definition registered under the given name.
44 *
45 * @param name sprite definition name
46 * @return sprite data
47 */
48 JsonNode get(String name);
49
50}