Uses of Class
io.gitea.model.Attachment
-
Packages that use Attachment Package Description io.gitea.api io.gitea.model -
-
Uses of Attachment in io.gitea.api
Methods in io.gitea.api that return Attachment Modifier and Type Method Description AttachmentRepositoryApi. repoCreateReleaseAttachment(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.io.File attachment, java.lang.String name)Create a release attachmentAttachmentRepositoryApi. repoEditReleaseAttachment(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId, EditAttachmentOptions body)Edit a release attachmentAttachmentRepositoryApi. repoGetReleaseAttachment(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId)Get a release attachmentMethods in io.gitea.api that return types with arguments of type Attachment Modifier and Type Method Description ApiResponse<Attachment>RepositoryApi. repoCreateReleaseAttachmentWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.io.File attachment, java.lang.String name)Create a release attachmentApiResponse<Attachment>RepositoryApi. repoEditReleaseAttachmentWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId, EditAttachmentOptions body)Edit a release attachmentApiResponse<Attachment>RepositoryApi. repoGetReleaseAttachmentWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId)Get a release attachmentjava.util.List<Attachment>RepositoryApi. repoListReleaseAttachments(java.lang.String owner, java.lang.String repo, java.lang.Long id)List release's attachmentsApiResponse<java.util.List<Attachment>>RepositoryApi. repoListReleaseAttachmentsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id)List release's attachmentsMethod parameters in io.gitea.api with type arguments of type Attachment Modifier and Type Method Description com.squareup.okhttp.CallRepositoryApi. repoCreateReleaseAttachmentAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.io.File attachment, java.lang.String name, ApiCallback<Attachment> callback)Create a release attachment (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoEditReleaseAttachmentAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId, EditAttachmentOptions body, ApiCallback<Attachment> callback)Edit a release attachment (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoGetReleaseAttachmentAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId, ApiCallback<Attachment> callback)Get a release attachment (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoListReleaseAttachmentsAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.util.List<Attachment>> callback)List release's attachments (asynchronously) -
Uses of Attachment in io.gitea.model
Methods in io.gitea.model that return Attachment Modifier and Type Method Description AttachmentAttachment. browserDownloadUrl(java.lang.String browserDownloadUrl)AttachmentAttachment. createdAt(org.threeten.bp.OffsetDateTime createdAt)AttachmentAttachment. downloadCount(java.lang.Long downloadCount)AttachmentAttachment. id(java.lang.Long id)AttachmentAttachment. name(java.lang.String name)AttachmentAttachment. size(java.lang.Long size)AttachmentAttachment. uuid(java.lang.String uuid)Methods in io.gitea.model that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<Attachment>Release. getAssets()Get assetsMethods in io.gitea.model with parameters of type Attachment Modifier and Type Method Description ReleaseRelease. addAssetsItem(Attachment assetsItem)Method parameters in io.gitea.model with type arguments of type Attachment Modifier and Type Method Description ReleaseRelease. assets(java.util.List<Attachment> assets)voidRelease. setAssets(java.util.List<Attachment> assets)
-