Examples of AltdatenKonverter


Examples of de.archivator.altdaten.AltdatenKonverter

    public void handleFileUpload(FileUploadEvent event) { 
        FacesMessage msg = new FacesMessage("Succesful", event.getFile().getFileName() + " is uploaded.");
        FacesContext.getCurrentInstance().addMessage(null, msg);
        UploadedFile file = event.getFile();
        try {
        AltdatenKonverter me = new AltdatenKonverter(file.getInputstream());

        me.extractArchivale();

        CompassConfiguration conf = new CompassConfiguration().configure();
        conf.addClass(Archivale.class);
        conf.addClass(Dokumentart.class);
        conf.addClass(Name.class);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.