blob: 272267972a109f37ec13d24096313f1bb0628129 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with 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.
*/
package org.apache.ambari.server.api.resources;
import org.apache.ambari.server.api.query.Query;
import org.apache.ambari.server.controller.spi.Resource;
import java.util.Map;
/**
* Resource instance which contains request specific state.
*/
public interface ResourceInstance {
/**
* Set the values of the parent foreign keys.
*
* @param keyValueMap map of all parent foreign keys. Map from resource type to id value.
*/
public void setKeyValueMap(Map<Resource.Type, String> keyValueMap);
/**
* Obtain the primary and foreign key properties for the resource.
*
* @return map of primary and foreign key values keyed by resource type
*/
public Map<Resource.Type, String> getKeyValueMap();
/**
* Return the query associated with the resource.
* Each resource has one query.
*
* @return the associated query
*/
public Query getQuery();
/**
* Return the resource definition for this resource type.
* All information in the definition is static and is specific to the resource type,
* not the resource instance.
*
* @return the associated resource definition
*/
public ResourceDefinition getResourceDefinition();
/**
* Return all sub-resource instances.
* This will include all children of this resource as well
* as any other resources referred to via a foreign key property.
*
* @return all sub-resource instances
*/
public Map<String, ResourceInstance> getSubResources();
/**
* Determine if resource is a collection resource.
*
* @return true if the resource is a collection resource; false otherwise
*/
public boolean isCollectionResource();
}