blob: 63e47c1735db262cc113408e6cb8778a947fc142 [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
*
* https://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.ivy.core.module.descriptor;
import org.apache.ivy.core.module.id.ModuleRevisionId;
/**
* Describes parent descriptor information for a module descriptor.
*/
public interface ExtendsDescriptor {
/**
* get the module revision id of the declared parent descriptor
*
* @return ModuleRevisionId
*/
ModuleRevisionId getParentRevisionId();
/**
* get the resolved revision id for {@link #getParentRevisionId}, see
* {@link org.apache.ivy.core.module.descriptor.ModuleDescriptor#getResolvedModuleRevisionId()}
*
* @return ModuleRevisionId
*/
ModuleRevisionId getResolvedParentRevisionId();
ModuleDescriptor getParentMd();
/**
* If there is an explicit path to check for the parent descriptor, return it. Otherwise returns
* null.
*
* @return String
*/
String getLocation();
/**
* Get the parts of the parent descriptor that are inherited. Default supported types are
* <code>info</code>, <code>description</code>, <code>configurations</code>,
* <code>dependencies</code>, and/or <code>all</code>. Ivy extensions may add support for
* additional extends types.
*
* @return String[]
*/
String[] getExtendsTypes();
/**
* @return true if the <code>all</code> extend type is specified, implying all other types
*/
boolean isAllInherited();
/**
* @return true if parent info attributes are inherited (organisation, branch, revision, etc)
*/
boolean isInfoInherited();
/**
* @return true if parent description is inherited
*/
boolean isDescriptionInherited();
/**
* @return true if parent configurations are inherited
*/
boolean areConfigurationsInherited();
/**
* @return true if parent dependencies are inherited
*/
boolean areDependenciesInherited();
boolean isLocal();
}