Examples of User


Examples of at.bestsolution.efxclipse.runtime.examples.fxgraph.model.User

    @FXML private TextArea address;
    @FXML private CheckBox subscribed;
    @FXML private Label success;
   
    @Override public void initialize(URL location, ResourceBundle resources) {
        User loggedUser = App.getInstance().getLoggedUser();
        user.setText(loggedUser.getId());
        if(loggedUser.getEmail() != null) {
            email.setText(loggedUser.getEmail());
        }
        if(loggedUser.getPhone() != null) {
            phone.setText(loggedUser.getPhone());
        }
        if(loggedUser.getAddress() != null) {
            address.setText(loggedUser.getAddress());
        }
        subscribed.setSelected(loggedUser.isSubscribed());
        success.setOpacity(0);
    }
View Full Code Here

Examples of at.bestsolution.efxclipse.runtime.examples.fxgraph.osgi.model.User

    @FXML private TextArea address;
    @FXML private CheckBox subscribed;
    @FXML private Label success;
   
    @Override public void initialize(URL location, ResourceBundle resources) {
        User loggedUser = Application.getInstance().getLoggedUser();
        user.setText(loggedUser.getId());
        if(loggedUser.getEmail() != null) {
            email.setText(loggedUser.getEmail());
        }
        if(loggedUser.getPhone() != null) {
            phone.setText(loggedUser.getPhone());
        }
        if(loggedUser.getAddress() != null) {
            address.setText(loggedUser.getAddress());
        }
        subscribed.setSelected(loggedUser.isSubscribed());
        success.setOpacity(0);
    }
View Full Code Here

Examples of at.fhj.itm.model.User

    int seats = set.getByte("seats");
    int userId = set.getInt("user_id");
    int waypoint = set.getInt("waypoint");
    String copyright = set.getString("copyright");

    User user = userDao.getByID(userId, connection);
    Waypoint wp = waypointDAO.getByID(waypoint, connection);

    return new Trip(id, user, departureDate, seats, wp, copyright);
  }
View Full Code Here

Examples of at.riemers.zero.base.model.User

    }
   
    @RequestMapping(value="/user/statistic.do", method = RequestMethod.GET)   
    public ModelAndView statistic(HttpSession session, HttpServletRequest request) throws Exception {
        log.debug("user statistic action");
        User user = getUser();
       
        ZeroView view = new ZeroView(getMessages(), request.getLocale());
               
        view.addWidget(new SimpleWidget(ZeroView.DIV_CONTENT, "user_userstatistic"));           
        view.addWidget(new SimpleWidget("functions", "user_userstatistic_func"));           
View Full Code Here

Examples of atunit.example.subjects.User

   */ 
  @Unit User user;

  @Before
  public void setUp() {
    user = new User(123, "testusername");
  }
View Full Code Here

Examples of au.edu.qut.yawl.authentication.User

        {
            try {
                Set users = _engineManagement.getUsers();
                Iterator iter = users.iterator();
                while (iter.hasNext()) {
                    User user = (User) iter.next();
                    attemptToCreateWorklist(user.getUserID());
                }
            } catch (Exception e) {
                logError("Failure to load specifications", e);
                System.exit(99);
            }
View Full Code Here

Examples of au.org.aodn.reefscenarios.entities.User

            Job j = new Job();
            j.setJobName("blah");
            j.setJobPath(System.getProperty("user.dir") + "/src/test");
            System.out.println("job path: " + j.createRunPath());
            User user = new User();
            user.setEmailAddress("pauline.mak@utas.edu.au");

            j.setUserId(user.getUserId());
            runner.submitJob(j);

            System.out.println("new PBS job name: " + j.getPBSJobName());

            Assert.assertEquals(j.getPBSJobName(), "62586");
View Full Code Here

Examples of auction.model.User

        UserDAO userDAO = new UserDAOBean();
        ((GenericEJB3DAO) userDAO).setEntityManager(em);

        // Prepare a user object
        User user = userDAO.findById(1l, false);

        // Make a new auction item persistent
        Calendar startDate = GregorianCalendar.getInstance();
        Calendar endDate = GregorianCalendar.getInstance();
        endDate.add(Calendar.DAY_OF_YEAR, 3);
View Full Code Here

Examples of bagcheck.User

  @Test
  public void testBenchmark() throws AvroBaseException, InterruptedException {
    deleteTable(TABLE);
    final AvroBase<User, byte[]> instance = AvroBaseFactory.createAvroBase(new HABModule(), HAB.class, AvroFormat.BINARY);
    final User saved = new User();
    saved.firstName = $("Sam");
    saved.lastName = $("Pullara");
    saved.birthday = $("1212");
    saved.gender = GenderType.MALE;
    saved.email = $("spullara@yahoo.com");
View Full Code Here

Examples of beans.User

        * it calls this method, which resets the string buffer
        */
       public void startElement(String uri, String localName,String qName, Attributes attributes) throws SAXException {
              temp = "";
              if (qName.equalsIgnoreCase("Object")) {
                     this.u = new User();
              }
       }
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.