1 27 package org.objectweb.jonas_rar.deployment.api; 28 29 import java.io.Serializable ; 30 import java.util.List ; 31 32 import org.objectweb.jonas_rar.deployment.xml.JonasSecurityMapping; 33 38 39 public class JonasSecurityMappingDesc implements Serializable { 40 41 44 private List securityEntryList = null; 45 46 49 public JonasSecurityMappingDesc(JonasSecurityMapping jsm) { 50 if (jsm != null) { 51 securityEntryList = jsm.getSecurityEntryList(); 52 } 53 } 54 55 59 public List getSecurityEntryList() { 60 return securityEntryList; 61 } 62 63 } 64 | Popular Tags |