Examples of toTag()


Examples of org.jibx.runtime.impl.UnmarshallingContext.toTag()

            factory = BindingDirectory.getFactory(jtype);
        }
        UnmarshallingContext ctx = (UnmarshallingContext)factory.createUnmarshallingContext();
        StAXReaderWrapper wrapper = new StAXReaderWrapper(reader, "Data-element", true);
        ctx.setDocument(wrapper);
        ctx.toTag();
        return ctx;
    }
}
View Full Code Here

Examples of org.jibx.runtime.impl.UnmarshallingContext.toTag()

            factory = BindingDirectory.getFactory(jtype);
        }
        UnmarshallingContext ctx = (UnmarshallingContext)factory.createUnmarshallingContext();
        StAXReaderWrapper wrapper = new StAXReaderWrapper(reader, "Data-element", true);
        ctx.setDocument(wrapper);
        ctx.toTag();
        return ctx;
    }
}
View Full Code Here

Examples of org.jibx.runtime.impl.UnmarshallingContext.toTag()

            factory = BindingDirectory.getFactory(jtype);
        }
        UnmarshallingContext ctx = (UnmarshallingContext)factory.createUnmarshallingContext();
        StAXReaderWrapper wrapper = new StAXReaderWrapper(reader, "Data-element", true);
        ctx.setDocument(wrapper);
        ctx.toTag();
        return ctx;
    }
}
View Full Code Here

Examples of org.jibx.runtime.impl.UnmarshallingContext.toTag()

            factory = BindingDirectory.getFactory(jtype);
        }
        UnmarshallingContext ctx = (UnmarshallingContext)factory.createUnmarshallingContext();
        StAXReaderWrapper wrapper = new StAXReaderWrapper(reader, "Data-element", true);
        ctx.setDocument(wrapper);
        ctx.toTag();
        return ctx;
    }
}
View Full Code Here

Examples of org.jibx.ws.io.XmlReaderWrapper.toTag()

     */
    private void readSoapFaultDetail(IXMLReader xmlReader, InContext context, SoapFault fault) throws IOException,
        WsException {
        try {
            XmlReaderWrapper wrpr = XmlReaderWrapper.createXmlReaderWrapper(xmlReader);
            while (wrpr.toTag() == IXMLReader.START_TAG) {
                Object detail = null;
                /**
                 * If handlers are defined on the body fault phase, they have the opportunity to add details to the
                 * SoapFault. Otherwise the SOAP details will be skipped.
                 */
 
View Full Code Here

Examples of org.jibx.ws.io.XmlReaderWrapper.toTag()

     * @throws WsException
     */
    private void readSoapHeaders(IXMLReader xmlReader, InContext context) throws IOException, WsException {
        try {
            XmlReaderWrapper wrpr = XmlReaderWrapper.createXmlReaderWrapper(xmlReader);
            while (wrpr.toTag() == IXMLReader.START_TAG) {
                /**
                 * If handlers are defined on the headers, they have the opportunity to read the header. Otherwise the
                 * header will be skipped.
                 */
                Object header = context.invokeInHandlers(SoapPhase.HEADER, xmlReader);
View Full Code Here

Examples of org.platformlayer.core.model.EndpointInfo.toTag()

          if (Strings.isNullOrEmpty(address)) {
            throw new IllegalStateException();
          }

          EndpointInfo endpoint = new EndpointInfo(address, model.publicPort);
          tagChanges.addTags.add(endpoint.toTag());

          return tagChanges;
        }
      };
View Full Code Here

Examples of org.platformlayer.core.model.EndpointInfo.toTag()

          if (socketAddress.getPort() != publicPort) {
            throw new IllegalStateException();
          }

          EndpointInfo endpoint = new EndpointInfo(socketAddress);
          tagChanges.addTags.add(endpoint.toTag());
          return tagChanges;
        }
      };

      for (ItemBase tagItem : tagItems) {
View Full Code Here

Examples of org.platformlayer.core.model.EndpointInfo.toTag()

            throw new OpsException("Cannot find address for instance: " + model.instance);
          }

          TagChanges tagChanges = new TagChanges();
          EndpointInfo endpoint = new EndpointInfo(publicAddress, model.publicPort);
          tagChanges.addTags.add(endpoint.toTag());

          return tagChanges;
        }
      };
      tagger.platformLayerKey = model.getKey();
View Full Code Here

Examples of org.platformlayer.core.model.EndpointInfo.toTag()

          if (Strings.isNullOrEmpty(address)) {
            throw new IllegalStateException();
          }

          EndpointInfo endpoint = new EndpointInfo(address, model.publicPort);
          tagChanges.addTags.add(endpoint.toTag());

          return tagChanges;
        }
      };
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.