View Javadoc

1   package org.cateproject.controller.captcha;
2   
3   public class CaptchaChallenge {
4   	private String question;
5   	private String Id;
6   	public String getId() {
7   		return Id;
8   	}
9   	public void setId(String id) {
10  		Id = id;
11  	}
12  	public String getQuestion() {
13  		return question;
14  	}
15  	public void setQuestion(String question) {
16  		this.question = question;
17  	}
18  	
19  }