com.almworks.jira.structure.api.backup.BackupWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.backup;
import com.atlassian.annotations.Internal;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@Internal
public interface BackupWriter {
void writeStartElement(@NotNull String localName);
void writeEndElement();
void writeElement(@NotNull String localName, @Nullable String text);
void writeAttribute(@NotNull String localName, @NotNull String value);
void writeCharacters(@NotNull String text);
}