5d801c67e60d3c888c278da9afd2f4cfb1d3b545
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / AbortLocalTransactionRequestTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.commands;
9
10 import org.opendaylight.controller.cluster.access.concepts.ClientIdentifier;
11 import org.opendaylight.controller.cluster.access.concepts.FrontendIdentifier;
12 import org.opendaylight.controller.cluster.access.concepts.FrontendType;
13 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
14 import org.opendaylight.controller.cluster.access.concepts.MemberName;
15 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
16
17 public class AbortLocalTransactionRequestTest
18         extends AbstractLocalTransactionRequestTest<AbortLocalTransactionRequest> {
19     private static final FrontendIdentifier FRONTEND = FrontendIdentifier.create(
20             MemberName.forName("test"), FrontendType.forName("one"));
21     private static final ClientIdentifier CLIENT = ClientIdentifier.create(FRONTEND, 0);
22     private static final LocalHistoryIdentifier HISTORY = new LocalHistoryIdentifier(CLIENT, 0);
23     private static final TransactionIdentifier TRANSACTION = new TransactionIdentifier(HISTORY, 0);
24
25     private static final AbortLocalTransactionRequest OBJECT = new AbortLocalTransactionRequest(TRANSACTION, ACTOR_REF);
26
27     @Override
28     protected AbortLocalTransactionRequest object() {
29         return OBJECT;
30     }
31 }