mirror of https://github.com/apache/cloudstack.git
89 lines
3.0 KiB
Java
89 lines
3.0 KiB
Java
// Copyright 2012 Citrix Systems, Inc. Licensed under the
|
|
// Apache License, Version 2.0 (the "License"); you may not use this
|
|
// file except in compliance with the License. Citrix Systems, Inc.
|
|
// reserves all rights not expressly granted by the License.
|
|
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Automatically generated by addcopyright.py at 04/03/2012
|
|
package com.cloud.configuration;
|
|
|
|
public interface Resource {
|
|
|
|
public static final short RESOURCE_UNLIMITED = -1;
|
|
|
|
public enum ResourceType {
|
|
user_vm("user_vm", 0, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
public_ip("public_ip", 1, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
volume("volume", 2, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
snapshot("snapshot", 3, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
template("template", 4, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
project("project", 5, ResourceOwnerType.Account, ResourceOwnerType.Domain),
|
|
network("network", 6, ResourceOwnerType.Account, ResourceOwnerType.Domain);
|
|
|
|
private String name;
|
|
private ResourceOwnerType[] supportedOwners;
|
|
private int ordinal;
|
|
|
|
ResourceType(String name, int ordinal, ResourceOwnerType... supportedOwners) {
|
|
this.name = name;
|
|
this.supportedOwners = supportedOwners;
|
|
this.ordinal = ordinal;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public ResourceOwnerType[] getSupportedOwners() {
|
|
return supportedOwners;
|
|
}
|
|
|
|
public boolean supportsOwner(ResourceOwnerType ownerType) {
|
|
boolean success = false;
|
|
if (supportedOwners != null) {
|
|
int length = supportedOwners.length;
|
|
for (int i = 0; i < length; i++) {
|
|
if (supportedOwners[i].getName().equalsIgnoreCase(ownerType.getName())) {
|
|
success = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return success;
|
|
}
|
|
|
|
public int getOrdinal() {
|
|
return ordinal;
|
|
}
|
|
}
|
|
|
|
public static class ResourceOwnerType {
|
|
|
|
public static final ResourceOwnerType Account = new ResourceOwnerType("Account");
|
|
public static final ResourceOwnerType Domain = new ResourceOwnerType("Domain");
|
|
|
|
private String name;
|
|
|
|
public ResourceOwnerType(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
}
|
|
|
|
ResourceType getType();
|
|
|
|
long getOwnerId();
|
|
|
|
ResourceOwnerType getResourceOwnerType();
|
|
|
|
}
|