/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package singleton;

/**
 *
 * @author user
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        for(int i=0;i<10;i++){
                PrimaryKey pk= PrimaryKey.getInstance();
                System.out.println("Pk:"+pk.getPK());
        }
        //PrimaryKey pk1 =new PrimaryKey();
    }


}
