mirror of https://github.com/apache/cloudstack.git
26 lines
347 B
Java
26 lines
347 B
Java
package com.cloud.projects;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.cloud.acl.ControlledEntity;
|
|
|
|
public interface Project extends ControlledEntity{
|
|
|
|
String getDisplayText();
|
|
|
|
long getDomainId();
|
|
|
|
long getAccountId();
|
|
|
|
long getId();
|
|
|
|
Date getCreated();
|
|
|
|
Date getRemoved();
|
|
|
|
long getDataCenterId();
|
|
|
|
String getName();
|
|
|
|
}
|