import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "nom",
    "rabin",
    "aFaitSaBarMitsva",
    "albums"
})
@XmlRootElement(name = "ChatDuRabin")
public class ChatDuRabin {
  public String nom = "";
  public String rabin = null;
  public boolean aFaitSaBarMitsva  = false;
  public String[] albums = null;
 public ChatDuRabin()
    {  }           
  public ChatDuRabin(String n, String r, boolean m, String[]a)
    { nom=n; rabin=r; aFaitSaBarMitsva=m ; albums=a; }           
}
