Package fr.norsys.mapper.console.exception

Examples of fr.norsys.mapper.console.exception.MappingException


      Unmarshaller unmar = new Unmarshaller(mapping);
      if (input != null) {
        obj = unmar.unmarshal(new InputSource(input));
      }
    } catch (Throwable th) {
      throw new MappingException("Unmarshall exception occured: "+th);
    }
    return obj;
  }
View Full Code Here


    return obj;
  }
  public Object unmarshall(String inputFile) throws MappingException {
    Object obj = null;
    if(inputFile==null)
      {throw new MappingException("File " + inputFile + " doesn't exist");}
    File f = new File(inputFile);
    if(f == null || !f.isFile())
      {throw new MappingException("File " + inputFile + " doesn't exist");}
    try {
      Mapping mapping = new Mapping();
      URL mappingUrl = Thread.currentThread().getContextClassLoader()
          .getResource(mappingFile);
      mapping.loadMapping(mappingUrl);
      Unmarshaller unmar = new Unmarshaller(mapping);
      InputStream input = new FileInputStream(inputFile);
      obj = unmar.unmarshal(new InputSource(input));
      input.close();
    } catch (Throwable th) {
      throw new MappingException("Unmarshall exception occured: "+th);
    }
    return obj;
  }
View Full Code Here

  public void marshall(Object obj, String outputFile)
      throws MappingException {
    File f = new File(outputFile);
    File dir = f.getParentFile();
    if(f==null || !dir.isDirectory())
      {throw new MappingException("Parent directory of file " + outputFile + " doesn't exist");}
    if(!(obj instanceof MapperConfig))
      {throw new MappingException("Object must be an instance of MapperConfig class");}
    try {
      Mapping mapping = new Mapping();
      URL mappingUrl = Thread.currentThread().getContextClassLoader()
          .getResource(mappingFile);
      mapping.loadMapping(mappingUrl);
      FileWriter writer = new FileWriter(outputFile);
      Marshaller marshaller = new Marshaller(writer);
      marshaller.setEncoding(ConsoleCst.MAPPING_ENCODING);
      marshaller.setMapping(mapping);
      marshaller.marshal(obj);
    } catch (Throwable th) {
      throw new MappingException("Marshall exception occured: "+th);
    }
  }
View Full Code Here

      while (line!=null){
        sb.append(line).append("\n");
        line=reader.readLine();
      }
    } catch (Throwable th) {
      throw new MappingException("Exception occured when reading file "+path+file+": "+th);
    } finally {
      if(reader!=null){
        try {
          reader.close();
        } catch (IOException e) {
View Full Code Here

TOP

Related Classes of fr.norsys.mapper.console.exception.MappingException

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.