Package database

Source Code of database.DatabaseCreator

package database;

import hibernateSwingApi.hibernate.HibernateManager;

import java.io.File;

import kullanici.pojos.Kullanici;

public class DatabaseCreator {

  public static void main(String[] args) {
    System.out.println("Start");
    fileControl();
    DatabaseConnection.databaseConnect();
    addAdminUser();
    System.out.println("Finish");
  }

  private static void fileControl() {
    File file = new File(System.getProperty("user.home")
        + "/PSAStandartDosyalar");
    if (!file.exists()) {
      file.mkdir();
    }
  }

  private static void addAdminUser() {
    Kullanici kullanici = new Kullanici();
    kullanici.setKullaniciAdi(HibernateManager.getInstance()
        .getSystemName());
    kullanici.setSifre(HibernateManager.getInstance().getSystemName());
    kullanici.setRol("YÖNETİCİ");
    kullanici.setKasa("EVET");
    kullanici.setPersonel("EVET");
    kullanici.setStok("EVET");
    kullanici.setUrun("EVET");
    kullanici.setYonetici("EVET");
    kullanici.setFirma("EVET");
    kullanici.setKategori("EVET");
    kullanici.setMüsteri("EVET");
    kullanici.setEtiket("EVET");
    kullanici.setBanka("EVET");
    kullanici.setIstatistik("EVET");
    kullanici.setMuhasebe("EVET");
    kullanici.setCekYonetim("EVET");
    kullanici.setKasaYonetim("EVET");
    kullanici.setUrunSevk("EVET");
    kullanici.setKampanya("EVET");
    kullanici.setAdmin(false);
    HibernateManager.getInstance().save(kullanici);
  }
}
TOP

Related Classes of database.DatabaseCreator

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.