mirror of
https://github.com/apache/cloudstack
synced 2026-08-09 16:13:13 +00:00
15 lines
242 B
Java
15 lines
242 B
Java
/**
|
|
*
|
|
*/
|
|
package com.cloud.user;
|
|
|
|
/**
|
|
* OwnedBy must be inheritted by all objects that can be owned by an account.
|
|
*/
|
|
public interface OwnedBy {
|
|
/**
|
|
* @return account id that owns this object.
|
|
*/
|
|
long getAccountId();
|
|
}
|