blob: 2fdb4cc1281e19eea929ef3b659d60d056cbf160 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.incubator.net.l2monitoring.cfm.service;
import org.onosproject.incubator.net.l2monitoring.cfm.MaintenanceDomain;
import org.onosproject.incubator.net.l2monitoring.cfm.Mep;
import org.onosproject.incubator.net.l2monitoring.cfm.MepEntry;
import org.onosproject.incubator.net.l2monitoring.cfm.MepLbCreate;
import org.onosproject.incubator.net.l2monitoring.cfm.MepLbEntry;
import org.onosproject.incubator.net.l2monitoring.cfm.MepLtCreate;
import org.onosproject.incubator.net.l2monitoring.cfm.MepLtEntry;
import org.onosproject.incubator.net.l2monitoring.cfm.identifier.MaIdShort;
import org.onosproject.incubator.net.l2monitoring.cfm.identifier.MdId;
import org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepId;
import java.util.Optional;
/**
* A common base interface for Mep service.
*/
public interface CfmMepServiceBase {
/**
* Retrieve a named {@link MepEntry} belonging to an MA.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mepId A Mep Id
* @return A MEP Entry or null if none found
* @throws CfmConfigException If there a problem with the MD, MA or MEP
*/
MepEntry getMep(MdId mdName, MaIdShort maName, MepId mepId)
throws CfmConfigException;
/**
* Delete a named {@link Mep} belonging to an MA.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mepId A Mep Id
* @param oldMd The MaintenanceDomain from which the MEP is being deleted
* @return true if the MEP was deleted successfully. false if it was not found
* @throws CfmConfigException If there a problem with the MD or MA
*/
boolean deleteMep(MdId mdName, MaIdShort maName, MepId mepId, Optional<MaintenanceDomain> oldMd)
throws CfmConfigException;
/**
* Create a named {@link Mep} on an MA.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mep A Mep object
* @return True if it was created successfully. False if the object already exists.
* @throws CfmConfigException If there a problem with the MD, MA or MEP
*/
boolean createMep(MdId mdName, MaIdShort maName, Mep mep)
throws CfmConfigException;
/**
* Create a {@link MepLbEntry Loopback} session on the named Mep.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mepId A Mep Id
* @param lbCreate The Loopback session details
* @throws CfmConfigException If there a problem with the MD, MA or MEP
*/
void transmitLoopback(MdId mdName, MaIdShort maName, MepId mepId,
MepLbCreate lbCreate) throws CfmConfigException;
/**
* Abort a {@link MepLbEntry Loopback} session on the named Mep.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mepId A Mep Id
* @throws CfmConfigException If there a problem with the MD, MA or MEP
*/
void abortLoopback(MdId mdName, MaIdShort maName, MepId mepId)
throws CfmConfigException;
/**
* Create a {@link MepLtEntry Linktrace} session on the named Mep.
* @param mdName A Maintenance Domain
* @param maName A Maintetance Association in the MD
* @param mepId A Mep Id
* @param ltCreate The Linktrace session details
* @throws CfmConfigException If there a problem with the MD, MA or MEP
*/
void transmitLinktrace(MdId mdName, MaIdShort maName, MepId mepId,
MepLtCreate ltCreate) throws CfmConfigException;
}