Package nexj.core.meta

Examples of nexj.core.meta.MetadataLookupException


   /**
    * @see nexj.core.meta.integration.EndpointPart#getChild(java.lang.String)
    */
   public EndpointPart getChild(String sName)
   {
      throw new MetadataLookupException("err.meta.namedLookup",
         new Object[]{EndpointPart.class.getName(), sName});
   }
View Full Code Here


    */
   public Message getMessage(String sName) throws MetadataLookupException
   {
      if (sName == null)
      {
         throw new MetadataLookupException("err.meta.integration.messageTableLookup", "", this);
      }

      Message message = (Message)m_messageMap.get(sName);
     
      if (message == null)
      {
         throw new MetadataLookupException("err.meta.integration.messageTableLookup", sName, this);
      }

      return message;
   }
View Full Code Here

      if (part != null)
      {
         return part;
      }

      throw new MetadataLookupException("err.meta.msgPartLookup", sName, this);
   }
View Full Code Here

   {
      Metaclass metaclass = findMetaclassByTypeCode(typeCode);
     
      if (metaclass == null)
      {
         throw new MetadataLookupException("err.meta.typeCodeLookup",
            String.valueOf(typeCode), m_metaclass);
      }

      return metaclass;
   }
View Full Code Here

      if (adapter != null)
      {
         return adapter;
      }

      throw new MetadataLookupException("err.meta.adapterLookup", sName, this);
   }
View Full Code Here

   /**
    * @see nexj.core.meta.workflow.Flow#getArgument(java.lang.String)
    */
   public Variable getArgument(String sName) throws MetadataLookupException
   {
      throw new MetadataLookupException("err.meta." + getPropName() + ".argLookup", sName, this);
   }
View Full Code Here

         {
            return fragment;
         }
      }

      throw new MetadataLookupException("err.meta.persistence.fragmentLookup", sName, this);
   }
View Full Code Here

      if (version != null)
      {
         return version;
      }

      throw new MetadataLookupException("err.meta.upgrade.versionLookup", sName, this);
   }
View Full Code Here

      if (sURI != null)
      {
         return sURI;
      }

      throw new MetadataLookupException("err.meta.integration.xml.namespaceLookup", sName, getRootMessage());
   }
View Full Code Here

      if (namespace != null)
      {
         return namespace;
      }

      throw new MetadataLookupException("err.meta.integration.xml.namespaceLookup", sName, getRootMessage());
   }
View Full Code Here

TOP

Related Classes of nexj.core.meta.MetadataLookupException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.