Package nexj.core.meta

Examples of nexj.core.meta.MetadataLookupException


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

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


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

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

   {
      String sResource = (String)m_upgradeResMap.get(sName);

      if (sResource == null)
      {
         throw new MetadataLookupException("err.meta.upgradeLookup", sName, this);
      }

      final Upgrade[] upgradeArray = new Upgrade[1];
      final XMLMetadataHelper helper = getHelper();
      final XMLUpgradeMetadataLoader loader = new XMLUpgradeMetadataLoader(this, helper);
View Full Code Here

      String sResource = (String)m_unitTestResMap.get(sName);

      if (sResource == null)
      {
         throw new MetadataLookupException("err.meta.testing.unit.unitTestLookup", sName, this);
      }

      final UnitTest[] utestArray = new UnitTest[1];
      final XMLMetadataHelper helper = getHelper();
      final XMLUnitTestMetadataLoader loader = new XMLUnitTestMetadataLoader(this, helper);
View Full Code Here

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

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

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

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

   /**
    * @see nexj.core.meta.MetadataObject#createLookupException()
    */
   protected MetadataException createLookupException()
   {
      return new MetadataLookupException("err.meta." + getPropName() + "serviceLookup",
         getFullName(), getMetadata().getName());
   }
View Full Code Here

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

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

      /**
       * @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

         {
            return list.iterator();
         }
      }

      throw new MetadataLookupException("err.meta.integration.bindingLookup",
         message.getName(), getName());
   }
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.