| java.lang.Object org.apache.ivy.core.deliver.DeliverOptions
DeliverOptions | public class DeliverOptions (Code) | | A set of options used to do a deliver.
|
DeliverOptions | public DeliverOptions()(Code) | | Creates an instance of DeliverOptions which require to be configured using the appropriate
setters.
|
getConfs | public String[] getConfs()(Code) | | Return the configurations which must be deliverd. Returns null if all
configurations has to be deliverd. Attention: the returned array can contain wildcards!
the configurations to deliver |
getPdrResolver | public PublishingDependencyRevisionResolver getPdrResolver()(Code) | | Return the pdrResolver that will be used during deliver for each dependency to get its
published information. This can particularly useful when the deliver is made for a release,
and when we wish to deliver each dependency which is still in integration. The
PublishingDependencyRevisionResolver can then do the delivering work for the dependency and
return the new (delivered) dependency info (with the delivered revision). Note that
PublishingDependencyRevisionResolver is only called for each direct dependency.
the pdrResolver that will be used during deliver |
getResolveId | public String getResolveId()(Code) | | Returns the id of a previous resolve to use for delivering.
the id of a previous resolve |
getStatus | public String getStatus()(Code) | | Returns the status to which the module should be delivered, or null if the current status
should be kept.
the status to which the module should be delivered |
isResolveDynamicRevisions | public boolean isResolveDynamicRevisions()(Code) | | |
isValidate | public boolean isValidate()(Code) | | |
newInstance | public static DeliverOptions newInstance(IvySettings settings)(Code) | | Returns an instance of DeliverOptions with options corresponding to default values taken from
the given settings.
Parameters: settings - The settings to use to get default option values a DeliverOptions instance ready to be used or customized |
setConfs | public DeliverOptions setConfs(String[] confs)(Code) | | Sets the configurations to deliver.
Parameters: confs - the configurations to deliver the instance of DeliverOptions on which the method has been called, for easy methodchaining |
setPdrResolver | public DeliverOptions setPdrResolver(PublishingDependencyRevisionResolver pdrResolver)(Code) | | Sets the pdrResolver that will be used during deliver for each dependency to get its
published information. This can particularly useful when the deliver is made for a release,
and when we wish to deliver each dependency which is still in integration. The
PublishingDependencyRevisionResolver can then do the delivering work for the dependency and
return the new (delivered) dependency info (with the delivered revision). Note that
PublishingDependencyRevisionResolver is only called for each direct dependency.
the instance of DeliverOptions on which the method has been called, for easy methodchaining |
setResolveDynamicRevisions | public DeliverOptions setResolveDynamicRevisions(boolean resolveDynamicRevisions)(Code) | | |
setResolveId | public DeliverOptions setResolveId(String resolveId)(Code) | | Sets the id of a previous resolve to use for delivering.
Parameters: resolveId - the id of a previous resolve the instance of DeliverOptions on which the method has been called, for easy methodchaining |
setStatus | public DeliverOptions setStatus(String status)(Code) | | Sets the status to which the module should be delivered, use null if the current status
should be kept.
the instance of DeliverOptions on which the method has been called, for easy methodchaining |
|
|