Co jeśli nie chcę, aby niektóre zmienne były przetwarzane w plik XML?

package jaxb.classes;

import javax.xml.bind.annotation.*;

@XmlAccessorType(XmlAccessType.FIELD)
public class Task {
    @XmlElement(name="input")
    private String input;   // String representing the input file
    @XmlElement(name="output")
    private String output; // String representing the output file
    @XmlElement(name="format")
    private Format format; // a jaxb.classes.Format representing the format of conversion
    @XmlElement(name="taskID")
    private long taskID; // a unique ID for each task.
    @XmlElement(name="isReady")
    public boolean isReady; // boolean value representing whether the task is ready for conversion


    public boolean isChanging; // boolean representing if the user is changing the task DO NOT MARSHALL
    public boolean isExecuting; // boolean representing whether the task is being executed  DO NOT MARSHALL

    public long getTaskID(){
        return taskID;
    }

    public String getInput(){
        return input;
    }

    public String getOutput(){
        return output;
    }

    public Format getFormat(){
        return format;
    }

    public void setOutput(String out){
        output = out;
    }

    public void setFormat(Format f){
        format = f;
    }

}  

Oto klasa reprezentująca oczekujące zadania do konwersji. Zostanie on przekonwertowany na XML, który będzie zawierał zapisane dane.
Nie chcę jednakisChanging, isExecuting zrobić w XML. Chcę, żeby byłyfalse kiedy są odczytywane.

Jak mogę to zrobić ?

questionAnswers(1)

yourAnswerToTheQuestion