Merge commit 'refs/changes/20/18320/1' of ssh://git.opendaylight.org:29418/alto
[alto.git] / alto-services / api / rfc7285 / src / main / java / org / opendaylight / alto / services / api / rfc7285 / IRDService.java
1 package org.opendaylight.alto.services.api.rfc7285;
2
3 import org.opendaylight.alto.commons.types.rfc7285.IRD;
4
5 public interface IRDService {
6
7     public IRD getDefaultIRD();
8
9     public IRD getIRD(String id);
10
11 }