Package xcat.schema

Examples of xcat.schema.ComponentStaticInformation


    // create a new instance of the component
    ExecutionEnv[] executionEnvList = null;
    try {
      // parse the xml description of the component
      StringReader readerCompStaticInfo = new StringReader(cInfo.getComponentXML());
      ComponentStaticInformation compStaticInfo  =
        (ComponentStaticInformation)Unmarshaller.unmarshal
        (ComponentStaticInformation.class, readerCompStaticInfo);
      executionEnvList = compStaticInfo.getExecutionEnv();
    } catch (Exception e) {
      logger.severe("Exception thrown while parsing Component XML", e);
      throw new NonstandardException("Exception while parsing Component XML", e);
    }
View Full Code Here

TOP

Related Classes of xcat.schema.ComponentStaticInformation

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.