01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.pluto.descriptors.servlet;
18:
19: import org.apache.pluto.descriptors.common.UserDataConstraintDD;
20:
21: import java.util.List;
22:
23: /**
24: * <B>TODO</B>: Document
25: * @version $Id: SecurityConstraintDD.java 156636 2005-03-09 12:16:31Z cziegeler $
26: * @since Feb 28, 2005
27: */
28: public class SecurityConstraintDD {
29:
30: private String displayName;
31: private List webResourceCollection;
32: private AuthConstraintDD authConstraint;
33: private UserDataConstraintDD userDataConstraint;
34:
35: public SecurityConstraintDD() {
36:
37: }
38:
39: public String getDisplayName() {
40: return displayName;
41: }
42:
43: public void setDisplayName(String displayName) {
44: this .displayName = displayName;
45: }
46:
47: public List getWebResourceCollections() {
48: return webResourceCollection;
49: }
50:
51: public void setWebResourceCollections(List webResourceCollection) {
52: this .webResourceCollection = webResourceCollection;
53: }
54:
55: public AuthConstraintDD getAuthConstraint() {
56: return authConstraint;
57: }
58:
59: public void setAuthConstraint(AuthConstraintDD authConstraint) {
60: this .authConstraint = authConstraint;
61: }
62:
63: public UserDataConstraintDD getUserDataConstraint() {
64: return userDataConstraint;
65: }
66:
67: public void setUserDataConstraint(
68: UserDataConstraintDD userDataConstraint) {
69: this.userDataConstraint = userDataConstraint;
70: }
71:
72: }
|