Examples of GestionDemandeFormation


Examples of com.sqli.demowebservice.GestionDemandeFormation

    public static void main(String args[]) throws Exception {
        ClassPathXmlApplicationContext context =
                new ClassPathXmlApplicationContext(new String[]{"/client-beans.xml"});

        GestionDemandeFormation client =
                (GestionDemandeFormation) context.getBean("commandeClient");
        DemandeFormation demande = new DemandeFormation();
        demande.setName("Paul DURAND");
        demande.setTheme("WEB SERVICES");

        String demandeID = client.traitementDemande(demande);
        String message = (demandeID == null) ? "Demande refus�e" : "Demande accept�e; Identifiant de demande " + demandeID;
        System.out.println(message);

    }
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.