blob: 45e05eab0b856426fe7e94c6cb94813489e9dd75 [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 */
Toshio Koide025a9152014-07-21 11:00:34 -070012 public BatchOperationTargetId getId();
Toshio Koidea03915e2014-07-01 18:39:52 -070013}