Package de.archivator.altdaten

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

Related Classes of de.archivator.altdaten.AltdatenKonverter

Copyright © 2018 www.massapicom. 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.