All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.infrautils.diagstatus.DiagStatusService Maven / Gradle / Ivy

/*
 * Copyright (c) 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.infrautils.diagstatus;

import java.util.Collection;

/**
 * DiagStatus ServiceDescriptor which lets users register/retrieve for particular service status details.
 *
 * 

The term "service" in this context refers to a "higher-level functional service", not an OSGi Service interface. * (It could map to an OSGi service interface, or several of them, or none.) * *

Implementations of this interface are expected to be thread-safe. * * @author Faseela K * @author Michael Vorburger */ public interface DiagStatusService { /** * Register a service for status monitoring. * * @param serviceIdentifier * unique identifier for the service being registered * * @return Registration status */ ServiceRegistration register(String serviceIdentifier); /** * Retrieve the status of a service specified by the identifier. * * @param serviceIdentifier * unique identifier for a service */ ServiceDescriptor getServiceDescriptor(String serviceIdentifier); /** * Retrieve the status of all services registered so far. * * @return status set for all registered services */ Collection getAllServiceDescriptors(); /** * Retrieve the status of all services registered so far. * * @return status as a {@link ServiceStatusSummary} */ ServiceStatusSummary getServiceStatusSummary(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy