Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss221_settings / ibssUpassMaintenanceDetails.jsp @ 72:dde60018a086

History | View | Annotate | Download (5.05 KB)

1
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/struts-bean-el" prefix="beanEL" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic" %>
5
<%@ taglib uri="/WEB-INF/tld/struts-html" prefix="html"%>
6
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
7
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
8

    
9

    
10
<bean:define id="upassSettingsView" name="settingsForm" property="upassSettingsView" />
11

    
12
<h3 class="title"><strong>Admin 
13
<c:out value="${sessionScope.displayDesc}"/>
14
</strong></h3>
15
<table id="errorTable">
16
<tr>
17
	<td>
18
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
19
	</td>
20
</tr>
21
</table>
22

    
23
<table class="tabularForm">
24
<tr><td height="30" colspan="4">&nbsp;</td></tr>
25
<tr>
26
		<td width="10%">&nbsp;</td>
27
		<td width="35%"><bean:message key="upass.password.minimum.length"/>:</td>
28
		<td width="5%"><strong>
29
			<c:choose>
30
				<c:when test="${not empty upassSettingsView.map.PASSWORD_MIN_LENGTH}">
31
					<c:out value="${upassSettingsView.map.PASSWORD_MIN_LENGTH}"/>
32
				</c:when>
33
				<c:otherwise>-</c:otherwise>
34
			</c:choose>
35
		</strong></td>
36
</tr>
37

    
38
<tr>
39
		<td width="10%">&nbsp;</td>
40
		<td width="35%"><bean:message key="upass.password.generation"/>:</td>
41
		<td width="5%"><strong>
42
			<c:choose>
43
				<c:when test="${not empty upassSettingsView.map.PASSWORD_GENERATION}">
44
					<c:out value="${upassSettingsView.map.PASSWORD_GENERATION}"/>
45
				</c:when>
46
				<c:otherwise>-</c:otherwise>
47
			</c:choose>
48
		</strong></td>
49
</tr>
50
<tr>
51
		<td width="10%">&nbsp;</td>
52
		<td width="35%"><bean:message key="upass.password.expiry.day"/>:</td>
53
		<td width="5%"><strong>
54
			<c:choose>
55
				<c:when test="${not empty upassSettingsView.map.PASSWORD_EXPIRY_DAY}">
56
					<c:out value="${upassSettingsView.map.PASSWORD_EXPIRY_DAY}"/>
57
				</c:when>
58
				<c:otherwise>-</c:otherwise>
59
			</c:choose>
60
		</strong></td>
61
		<td><bean:message key="upass.period.day"/></td>
62
</tr>
63

    
64
<tr>
65
		<td width="10%">&nbsp;</td>
66
		<td width="35%"><bean:message key="upass.password.expiry.notif.alert"/>:</td>
67
		<td width="5%"><strong>
68
			<c:choose>
69
				<c:when test="${not empty upassSettingsView.map.NOTIF_ALERT}">
70
					<c:out value="${upassSettingsView.map.NOTIF_ALERT}"/>
71
				</c:when>
72
				<c:otherwise>-</c:otherwise>
73
			</c:choose>
74
		</strong></td>
75
		<td><bean:message key="upass.period.day"/></td>
76
</tr>
77

    
78
<tr>
79
		<td width="10%">&nbsp;</td>
80
		<td width="35%"><bean:message key="upass.password.max.error.attempt"/>:</td>
81
		<td width="5%"><strong>
82
			<c:choose>
83
				<c:when test="${not empty upassSettingsView.map.PASSWORD_MAX_ERROR}">
84
					<c:out value="${upassSettingsView.map.PASSWORD_MAX_ERROR}"/>
85
				</c:when>
86
				<c:otherwise>-</c:otherwise>
87
			</c:choose>
88
		</strong></td>
89
</tr>
90
<tr>
91
		<td width="10%">&nbsp;</td>
92
		<td width="35%"><bean:message key="upass.dormant.user.period"/>:</td>
93
		<td width="35%"><strong>
94
			<c:choose>
95
				<c:when test="${not empty upassSettingsView.map.USER_DORMANT_PERIOD}">
96
					<c:out value="${upassSettingsView.map.USER_DORMANT_PERIOD}"/>
97
				</c:when>
98
				<c:otherwise>-</c:otherwise>
99
			</c:choose>
100
		</strong></td>
101
		<td><bean:message key="upass.period.day"/></td>
102
</tr>
103
<%-- <c:if test="${settingsForm.map.upassApplicationSelect ne 1}"> --%>
104
<!-- <tr> -->
105
<!-- 		<td width="10%">&nbsp;</td> -->
106
<%-- 		<td width="35%"><bean:message key="upass.single.sing-on"/>:</td> --%>
107
<!-- 		<td width="35%"><strong> -->
108
<%-- 			<c:choose> --%>
109
<%-- 				<c:when test="${upassSettingsView.map.SINGLE_SIGNON eq 0}"> --%>
110
<%-- 					<bean:message key="general.yes"/> --%>
111
<%-- 				</c:when> --%>
112
<%-- 				<c:otherwise><bean:message key="general.no"/></c:otherwise> --%>
113
<%-- 			</c:choose> --%>
114
<!-- 		</strong></td> -->
115
<!-- </tr> -->
116
<%-- </c:if> --%>
117
<tr>
118
		<td width="10%">&nbsp;</td>
119
		<td width="35%"><bean:message key="upass.password.complexity"/>:</td>
120
		<td width="35%"><strong>
121
		<c:choose>
122
				<c:when test="${not empty upassSettingsView.map.PASSWORD_ACCEPT_PATTERN}">
123
					<c:out value="${upassSettingsView.map.PASSWORD_ACCEPT_PATTERN}"/>
124
				</c:when>
125
				<c:otherwise>-</c:otherwise>
126
			</c:choose>
127
		</strong></td>
128
</tr>
129

    
130
<tr>
131
		<td width="10%">&nbsp;</td>
132
		<td width="35%"><bean:message key="upass.password.change.interval"/>:</td>
133
		<td width="35%"><strong>
134
			<c:choose>
135
				<c:when test="${not empty upassSettingsView.map.CHANGE_PASSWORD_INTERVAL}">
136
					<c:out value="${upassSettingsView.map.CHANGE_PASSWORD_INTERVAL}"/>
137
				</c:when>
138
				<c:otherwise>-</c:otherwise>
139
			</c:choose>
140
		</strong></td>
141
		<td><bean:message key="upass.period.minute"/></td>
142
</tr>
143
	
144
<tr><td height="30" colspan="4">&nbsp;</td></tr>
145
</table>
146
<c:if test="${settingsForm.map.hasEditAccess eq true }">
147
<div class="floatRight">
148
<htmlEL:form action="/ss221/upassMaintenanceEdit.do">
149
	<htmlEL:submit property="action" styleClass="button floatRight"	onclick="overlay();"><bean:message key="general.button.edit" /></htmlEL:submit>
150
</htmlEL:form>
151
</div>
152
</c:if>