blob: d08528f781c4a1f27a22be2bedb8abd012d21256 [file] [log] [blame]
Toshio Koidea03915e2014-07-01 18:39:52 -07001package net.onrc.onos.api.batchoperation;
2
3/**
4 * An interface of the class which is assigned to BatchOperation.
5 */
6public interface IBatchOperationTarget {
7 /**
8 * Gets ID of the object.
9 *
10 * @return ID of the object.
11 */
12 public String getId();
13}