<%@ page language="java" contentType="text/html;charset=euc-kr"%> <%@ page import="com.eactive.eai.common.property.PropManager"%> <%@ page import="com.eactive.eai.common.property.PropGroupVO"%> <% PropManager manager = PropManager.getInstance(); String[] grpList = manager.getAllPropGroupNames(); String selectedName = request.getParameter("groupName"); if (selectedName == null && grpList.length > 1) selectedName = (String)grpList[0]; PropGroupVO grpVO = null; if (selectedName != null) { grpVO = manager.getPropGroupVO(selectedName); } %> Properties Informations

Properties Informations

Adapter Group :    

<% if (selectedName != null) { %>
  ÇÁ¶óÆÛƼ ±×·ì¸í :   <%=grpVO.getName()%>
  ÇÁ¶óÆÛƼ ±×·ì¼³¸í :   <%=grpVO.getDescription()%>

<% } %> <% if (selectedName != null) { String[] keys = grpVO.keys(); for ( int inx=0; inx < keys.length; inx++){ String value = grpVO.getProperty(keys[inx]); %> <% } } %>
 Key  Value
<%=keys[inx]%> <%=value%>