cloudstack-mirror/api/src/com/cloud/user/OwnedBy.java
2010-08-18 12:28:30 -07:00

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();
}