Examples of Betrieb


Examples of awkejb.entities.Betrieb

   
    public Betrieb getBetrieb(int betriebID) {
        System.out.println("-- BetriebManagerBean::getBetrieb --");
        System.out.println("betriebID: " + betriebID);
       
        Betrieb myBetrieb = new Betrieb();
        myBetrieb.setBetriebID(10);
        myBetrieb.setBezeichnung("Firma Huber");
        myBetrieb.setAwkErstellungsgrund("Pflicht");
        return myBetrieb;
    }
View Full Code Here

Examples of awkejb.entities.Betrieb

   
    // actions
    public String authenticate() {
        int betrieb_id = 0;
        Betrieb dbBetrieb;
       
        // try to authenticate the user
        betrieb_id = betriebManager.authenticateBetrieb(this.login , this.password);
        if (betrieb_id != 0) {
            // get the data from the authenticated user - and write it in the session-bean
View Full Code Here

Examples of awkejb.entities.Betrieb

        this.awkErstellungsgrund = dbBetrieb.getAwkErstellungsgrund();
        this.konzeptersteller = dbBetrieb.getKonzeptersteller();
    }
   
    public Betrieb objExport() {
        Betrieb expBetrieb = new Betrieb();
        expBetrieb.setBetriebID(this.betriebID);
        expBetrieb.setLogin(this.login);
        expBetrieb.setPassword(this.password);
        expBetrieb.setBezeichnung(this.bezeichnung);
        expBetrieb.setAnsprechpartner(this.ansprechpartner);
        expBetrieb.setAnschrift(this.anschrift);
        expBetrieb.setTelefon(this.telefon);
        expBetrieb.setFax(this.fax);
        expBetrieb.setBranche(this.branche);
        expBetrieb.setZweck(this.zweck);
        expBetrieb.setAnzBeschaeftigte(this.anzBeschaeftigte);
        expBetrieb.setAbfallBesitzerNr(this.abfallBesitzerNr);
        expBetrieb.setAnlagenPlan(this.anlagenPlan);
        expBetrieb.setAbfallsammelstellenPlan(this.abfallsammelstellenPlan);
        expBetrieb.setAwkErstellungsgrund(this.awkErstellungsgrund);
        expBetrieb.setKonzeptersteller(this.konzeptersteller);
        return expBetrieb;
    }
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.