Package SistemaDeKioscos

Examples of SistemaDeKioscos.ServicioDeAccesoABaseDeDatos$Ticket


     * Creates new form dialogoCargarPlatilloRecomendacion
     */
    public dialogoCargarPlatilloRecomendacion(java.awt.Frame parent, boolean modal) {
        super(parent, modal);
        initComponents();
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
    }
View Full Code Here


    /**
     * Creates new form ventanaDeCarta
     */
    public ventanaDeCarta() {
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
        initComponents();
        cargarRecomendacionDelChef();
    }
View Full Code Here

        cargarRecomendacionDelChef();
    }

    public ventanaDeCarta(int numeroDeMesa) {
        this.numeroDeMesa = numeroDeMesa;
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
        initComponents();
        cargarRecomendacionDelChef();
    }
View Full Code Here

    /**
     * Creates new form alimentos
     */
    public VentanaIngredientes() {
        initComponents();
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
    }
View Full Code Here

     * Creates new form alimentos
     */
    public VentanaPlatillos() {

        initComponents();
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
        admin = new Administrador();
    }
View Full Code Here

    private ArrayList<Platillo> listaDePlatillos;

    ServicioDeAccesoABaseDeDatos baseDeDatos;

    public Administrador() {
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
        listaDePlatillos = new ArrayList<Platillo>();
    }
View Full Code Here

        this.setLocationRelativeTo(null);

        // da el autofocus al inicio
        txtUsuario.requestFocusInWindow();
        txtPass.transferFocus();
        baseDeDatos = new ServicioDeAccesoABaseDeDatos();
        //mandar manseja de bienvenida
        ServicioDeNotificacion.bienvenida();
    }
View Full Code Here

        PrincipalName krbtgt = new PrincipalName(PrincipalName.NT_SRV_XHST, new String[] {
                "krbtgt", realm }); //$NON-NLS-1$

        try {
            Ticket ticket = KrbClient.doAS(InetAddress.getByName(kdc), port, cname, realm,
                    krbtgt);

            return true; //FIXME
        } catch (Exception e) {
            LoginException ex = new LoginException();
View Full Code Here

        assertEquals("crealm", "MY.REALM", reply.getCrealm());
        assertEquals("cname", new PrincipalName(1, new String[] { "me" }),
                reply.getCname());

        // ticket
        Ticket ticket = reply.getTicket();
        assertEquals("ticket's realm", "MY.REALM", ticket.getRealm());
        assertEquals("ticket's sname", new PrincipalName(0, new String[] {
                "krbtgt", "MY.REALM" }), ticket.getSname());
       
        // enc-part
        EncryptedData encPart = reply.getEncPart();
        assertEquals("etype", 3, encPart.getEtype());
        assertEquals("kvno", 1, encPart.getKvno());
View Full Code Here

TOP

Related Classes of SistemaDeKioscos.ServicioDeAccesoABaseDeDatos$Ticket

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.