Package layoutHandling

Source Code of layoutHandling.RegistrationSettingsController

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

import java.io.Serializable;
import layoutHandling.LayoutHandler;

/**
*
* @author Alex
*/
public class RegistrationSettingsController implements Serializable{
 
    private int aeh;
    private int expert;
    private int a_help;
    private int aeh_approved;
    private int gender_separation;
    private int presence;
    private int culture;
    private int hierarchy;
    private int l_help;
    private int access;
    private int choice;
    private int ambiguity;
    private int security;
   
    public RegistrationSettingsController(){
       
    }

    public int getA_help() {
        return a_help;
    }

    public void setA_help(int a_help) {
        this.a_help = a_help;
    }

    public int getAccess() {
        return access;
    }

    public void setAccess(int access) {
        this.access = access;
    }

    public int getAeh() {
        return aeh;
    }

    public void setAeh(int aeh) {
        this.aeh = aeh;
    }

    public int getAeh_approved() {
        return aeh_approved;
    }

    public void setAeh_approved(int aeh_approved) {
        this.aeh_approved = aeh_approved;
    }

    public int getAmbiguity() {
        return ambiguity;
    }

    public void setAmbiguity(int ambiguity) {
        this.ambiguity = ambiguity;
    }

    public int getChoice() {
        return choice;
    }

    public void setChoice(int choice) {
        this.choice = choice;
    }

    public int getCulture() {
        return culture;
    }

    public void setCulture(int culture) {
        this.culture = culture;
    }

    public int getExpert() {
        return expert;
    }

    public void setExpert(int expert) {
        this.expert = expert;
    }

    public int getGender_separation() {
        return gender_separation;
    }

    public void setGender_separation(int gender_separation) {
        this.gender_separation = gender_separation;
    }

    public int getHierarchy() {
        return hierarchy;
    }

    public void setHierarchy(int hierarchy) {
        this.hierarchy = hierarchy;
    }

    public int getL_help() {
        return l_help;
    }

    public void setL_help(int l_help) {
        this.l_help = l_help;
    }

    public int getPresence() {
        return presence;
    }

    public void setPresence(int presence) {
        this.presence = presence;
    }

    public int getSecurity() {
        return security;
    }

    public void setSecurity(int security) {
        this.security = security;
    }
   
    @Override
    public String toString(){
        return "Webservice controller";
    }
   
    public void weights() {
     
        LayoutHandler lh = LayoutHandler.getInstance();
      
       
        lh.putWeight("aeh", aeh);
        lh.putWeight("expert", expert);
        lh.putWeight("a_help", a_help);
        lh.putWeight("aeh_approved", aeh_approved);
        lh.putWeight("gender_separation", gender_separation);
        lh.putWeight("presence", presence);
        lh.putWeight("culture", culture);
        lh.putWeight("hierarchy", hierarchy);
        lh.putWeight("l_help", l_help);
        lh.putWeight("access", access);
        lh.putWeight("choice", choice);
        lh.putWeight("ambiguity", ambiguity);
        lh.putWeight("security", security);
      
       

    }
}
TOP

Related Classes of layoutHandling.RegistrationSettingsController

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.