blob: d08528f781c4a1f27a22be2bedb8abd012d21256 [file] [log] [blame]
package net.onrc.onos.api.batchoperation;
/**
* An interface of the class which is assigned to BatchOperation.
*/
public interface IBatchOperationTarget {
/**
* Gets ID of the object.
*
* @return ID of the object.
*/
public String getId();
}