Source code: org/acs/damsel/client/remove/RemoveAssetFromCollectionForm.java
1 package org.acs.damsel.client.remove;
2
3 import org.acs.damsel.srvr.collection.*;
4 import org.acs.damsel.client.ClientApp;
5 import org.acs.damsel.srvr.user.*;
6 import org.apache.struts.action.*;
7 import javax.servlet.http.*;
8 import java.util.Vector;
9 import java.sql.*;
10
11 public class RemoveAssetFromCollectionForm extends ActionForm {
12 private String collectionSelect = new String();
13 private String selectString = new String();
14 private String userName = new String();
15 private boolean changedCollection = false;
16
17 public boolean getChangedCollection() {
18 return changedCollection;
19 }
20 public String getCollectionSelect() {
21 return collectionSelect;
22 }
23 public void setCollectionSelect(String collectionSelect) {
24 this.collectionSelect = collectionSelect;
25 }
26 public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
27 /**@todo: finish this method, this is just the skeleton.*/
28 return null;
29 }
30 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
31 }
32 public String getSelectString() {
33 return selectString;
34 }
35 public void setSelectString(String selectString) {
36 this.selectString = selectString;
37 }
38 public String getUserName() {
39 return userName;
40 }
41 public void setUserName(String userName) {
42 this.userName = userName;
43 }
44 public boolean isChangedCollection() {
45 return changedCollection;
46 }
47 public void setChangedCollection(boolean changedCollection) {
48 this.changedCollection = changedCollection;
49 }
50 }