org.sonatype.nexus.repository.view.handlers.HighAvailabilitySupportChecker Java Examples
The following examples show how to use
org.sonatype.nexus.repository.view.handlers.HighAvailabilitySupportChecker.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AptRecipeSupport.java From nexus-public with Eclipse Public License 1.0 | 5 votes |
protected AptRecipeSupport(final HighAvailabilitySupportChecker highAvailabilitySupportChecker, final Type type, final Format format) { super(type, format); this.highAvailabilitySupportChecker = highAvailabilitySupportChecker; }
Example #2
Source File: AptHostedRecipe.java From nexus-public with Eclipse Public License 1.0 | 5 votes |
@Inject public AptHostedRecipe(final HighAvailabilitySupportChecker highAvailabilitySupportChecker, @Named(HostedType.NAME) final Type type, @Named(AptFormat.NAME) final Format format) { super(highAvailabilitySupportChecker, type, format); }
Example #3
Source File: AptProxyRecipe.java From nexus-public with Eclipse Public License 1.0 | 4 votes |
@Inject public AptProxyRecipe(final HighAvailabilitySupportChecker highAvailabilitySupportChecker, @Named(ProxyType.NAME) final Type type, @Named(AptFormat.NAME) final Format format) { super(highAvailabilitySupportChecker, type, format); }