/* * @(#) MinefieldLand 0_97_0 08/07/2009 * */ package org.omg.sopes0_97_0.PSM.Wrapper; import org.omg.sopes0_97_0.PSM.Tuple; /** * * MinefieldLand * @author ASMG * @version 0_97_0 08/07/2009 */ public class MinefieldLand { public MinefieldLand ( Tuple tuple ) { if( tuple == null ) { throw new IllegalArgumentException(); } m_tuple = tuple; } public MinefieldLand ( String identifier ) { this( findDbRecord( identifier ) ); } public static String getEntityIdentifier() { return ENTITY_IDENTIFIER; } public String getAttributeValue( String attrName ) { return m_tuple.retrieveAttrValue( attrName ); } private static Tuple findDbRecord( String identifier ) { return null; //no implement } private static final String ENTITY_IDENTIFIER = "10000274"; //value taken from Information Resource Dictionary for JC3 table private static final String ENTITY_DEPTH_CNT = "5"; //value taken from Information Resource Dictionary for JC3 table private Tuple m_tuple = null; }