KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > portlets > user > struts > UserCategoriesForm


1 package com.dotmarketing.portlets.user.struts;
2
3 import org.apache.struts.validator.ValidatorForm;
4
5 public class UserCategoriesForm extends ValidatorForm {
6
7     private static final long serialVersionUID = 1L;
8     
9     private long userProxy;
10     private String JavaDoc[] categories;
11
12     public String JavaDoc[] getCategories() {
13         return categories;
14     }
15
16     public void setCategories(String JavaDoc[] categories) {
17         this.categories = categories;
18     }
19
20     public long getUserProxy() {
21         return userProxy;
22     }
23
24     public void setUserProxy(long userProxy) {
25         this.userProxy = userProxy;
26     }
27 }
28
Popular Tags