LoginForm.java :  » MVC » jurfa » com » jurfa » test » pojo » Java Open Source

Java Open Source » MVC » jurfa 
jurfa » com » jurfa » test » pojo » LoginForm.java
package com.jurfa.test.pojo;

import com.jurfa.annotation.ActionParam;

public class LoginForm 
{
  @ActionParam
  private String name;
  
  @ActionParam(name="pass")
  private String password;
  
  @ActionParam
  private int age;

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getPassword() {
    return password;
  }

  public void setPassword(String password) {
    this.password = password;
  }

  public int getAge() {
    return age;
  }

  public void setAge(int age) {
    this.age = age;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.