1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.pluto.descriptors.servlet;
17
18 import java.util.List;
19
20 /***
21 * <B>TODO</B>: Document
22 * @author <a href="ddewolf@apache.org">David H. DeWolf</a>
23 * @version $Id: SecurityConstraintDD.java 156636 2005-03-09 12:16:31Z cziegeler $
24 * @since Feb 28, 2005
25 */
26 public class SecurityConstraintDD {
27
28 private String displayName;
29 private List webResourceCollection;
30 private AuthConstraintDD authConstraint;
31 private UserDataConstraintDD userDataConstraint;
32
33 public SecurityConstraintDD() {
34
35 }
36
37 public String getDisplayName() {
38 return displayName;
39 }
40
41 public void setDisplayName(String displayName) {
42 this.displayName = displayName;
43 }
44
45 public List getWebResourceCollections() {
46 return webResourceCollection;
47 }
48
49 public void setWebResourceCollections(List webResourceCollection) {
50 this.webResourceCollection = webResourceCollection;
51 }
52
53 public AuthConstraintDD getAuthConstraint() {
54 return authConstraint;
55 }
56
57 public void setAuthConstraint(AuthConstraintDD authConstraint) {
58 this.authConstraint = authConstraint;
59 }
60
61 public UserDataConstraintDD getUserDataConstraint() {
62 return userDataConstraint;
63 }
64
65 public void setUserDataConstraint(
66 UserDataConstraintDD userDataConstraint) {
67 this.userDataConstraint = userDataConstraint;
68 }
69
70
71 }
72