Uses of Class
org.eclipse.aether.impl.UpdateCheck
-
Packages that use UpdateCheck Package Description org.eclipse.aether.impl The provisional interfaces defining the various sub components that implement the repository system.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system. -
-
Uses of UpdateCheck in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl that return UpdateCheck Modifier and Type Method Description UpdateCheck<T,E>
UpdateCheck. setAuthoritativeRepository(RemoteRepository authoritativeRepository)
Sets the repository which ultimately hosts the metadata to update.UpdateCheck<T,E>
UpdateCheck. setException(E exception)
Sets the exception for this update check.UpdateCheck<T,E>
UpdateCheck. setFile(java.io.File file)
Sets the local file of the item.UpdateCheck<T,E>
UpdateCheck. setFileValid(boolean fileValid)
Controls whether the local file given bygetFile()
, if existent, should be considered valid or not.UpdateCheck<T,E>
UpdateCheck. setItem(T item)
Sets the item of the check.UpdateCheck<T,E>
UpdateCheck. setLocalLastUpdated(long localLastUpdated)
Sets the last-modified timestamp of the corresponding item produced by a local installation.UpdateCheck<T,E>
UpdateCheck. setPolicy(java.lang.String policy)
Sets the policy to use for the check.UpdateCheck<T,E>
UpdateCheck. setRepository(RemoteRepository repository)
Sets the repository from which a potential update/download will performed.UpdateCheck<T,E>
UpdateCheck. setRequired(boolean required)
Sets the result of an update check.Methods in org.eclipse.aether.impl with parameters of type UpdateCheck Modifier and Type Method Description void
UpdateCheckManager. checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
Checks whether an artifact has to be updated from a remote repository.void
UpdateCheckManager. checkMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
Checks whether metadata has to be updated from a remote repository.void
UpdateCheckManager. touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
Updates the timestamp for the artifact contained in the update check.void
UpdateCheckManager. touchMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
Updates the timestamp for the metadata contained in the update check. -
Uses of UpdateCheck in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl declared as UpdateCheck Modifier and Type Field Description (package private) UpdateCheck<Artifact,ArtifactTransferException>
DefaultArtifactResolver.ResolutionItem. updateCheck
Fields in org.eclipse.aether.internal.impl with type parameters of type UpdateCheck Modifier and Type Field Description (package private) java.util.List<UpdateCheck<Metadata,MetadataTransferException>>
DefaultMetadataResolver.ResolveTask. checks
Methods in org.eclipse.aether.internal.impl with parameters of type UpdateCheck Modifier and Type Method Description void
DefaultUpdateCheckManager. checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
void
DefaultUpdateCheckManager. checkMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
void
DefaultUpdateCheckManager. touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
void
DefaultUpdateCheckManager. touchMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
Constructor parameters in org.eclipse.aether.internal.impl with type arguments of type UpdateCheck Constructor Description ResolveTask(RepositorySystemSession session, RequestTrace trace, MetadataResult result, java.io.File metadataFile, java.util.List<UpdateCheck<Metadata,MetadataTransferException>> checks, java.lang.String policy)
-