View Javadoc

1   /*
2    * Copyright 2005 The Apache Software Foundation
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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