package org.opendaylight.controller.sal.connector.zeromq; import org.opendaylight.controller.sal.connector.api.RpcRouter; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; import java.io.Serializable; /** * User: abhishk2 */ public class RouteIdentifierImpl implements RpcRouter.RouteIdentifier,Serializable { private QName context; private QName type; private InstanceIdentifier route; @Override public QName getContext() { return this.context; } @Override public QName getType() { return this.type; } @Override public InstanceIdentifier getRoute() { return this.route; } public void setContext(QName context) { this.context = context; } public void setType(QName type) { this.type = type; } public void setRoute(InstanceIdentifier route) { this.route = route; } @Override public String toString() { return "RouteIdentifierImpl{" + "context=" + context + ", type=" + type + ", route=" + route + '}'; } }