Examples of MappingType


Examples of com.cloudera.cdk.data.hbase.impl.MappingType

      if (mappingTypeNode == null) {
        String msg = "mapping attribute must contain type.";
        throw new SchemaValidationException(msg);
      }

      MappingType mappingType = null;
      String mappingValue = null;
      String prefix = null;

      if (mappingTypeNode.getTextValue().equals("column")) {
        mappingType = MappingType.COLUMN;
View Full Code Here

Examples of org.jboss.jbosswsTools.MappingType

    service.setEndpoint( values.get( ENDPOINT ) );
    service.setStyle( Style.Enum.forString( values.get( STYLE ) ) );
    service.setParameterStyle( ParameterStyle.Enum.forString( values.get( PARAMETER_STYLE ) ) );
    service.setName( values.get( SERVICE_NAME ) );

    MappingType mapping = java2Wsdl.addNewMapping();
    mapping.setFile( values.get( MAPPING ) );

    NamespacesType namespaces = java2Wsdl.addNewNamespaces();
    namespaces.setTargetNamespace( values.get( TARGET_NAMESPACE ) );
    namespaces.setTypeNamespace( values.get( TYPES_NAMESPACE ) );
View Full Code Here

Examples of org.jboss.jbosswsTools.MappingType

    service.setEndpoint( values.get( ENDPOINT ) );
    service.setStyle( Style.Enum.forString( values.get( STYLE ) ) );
    service.setParameterStyle( ParameterStyle.Enum.forString( values.get( PARAMETER_STYLE ) ) );
    service.setName( values.get( SERVICE_NAME ) );

    MappingType mapping = java2Wsdl.addNewMapping();
    mapping.setFile( values.get( MAPPING ) );

    NamespacesType namespaces = java2Wsdl.addNewNamespaces();
    namespaces.setTargetNamespace( values.get( TARGET_NAMESPACE ) );
    namespaces.setTypeNamespace( values.get( TYPES_NAMESPACE ) );
View Full Code Here

Examples of org.jboss.jbosswsTools.MappingType

        service.setEndpoint(values.get(ENDPOINT));
        service.setStyle(Style.Enum.forString(values.get(STYLE)));
        service.setParameterStyle(ParameterStyle.Enum.forString(values.get(PARAMETER_STYLE)));
        service.setName(values.get(SERVICE_NAME));

        MappingType mapping = java2Wsdl.addNewMapping();
        mapping.setFile(values.get(MAPPING));

        NamespacesType namespaces = java2Wsdl.addNewNamespaces();
        namespaces.setTargetNamespace(values.get(TARGET_NAMESPACE));
        namespaces.setTypeNamespace(values.get(TYPES_NAMESPACE));
View Full Code Here

Examples of org.jboss.jbosswsTools.MappingType

        service.setEndpoint(values.get(ENDPOINT));
        service.setStyle(Style.Enum.forString(values.get(STYLE)));
        service.setParameterStyle(ParameterStyle.Enum.forString(values.get(PARAMETER_STYLE)));
        service.setName(values.get(SERVICE_NAME));

        MappingType mapping = java2Wsdl.addNewMapping();
        mapping.setFile(values.get(MAPPING));

        NamespacesType namespaces = java2Wsdl.addNewNamespaces();
        namespaces.setTargetNamespace(values.get(TARGET_NAMESPACE));
        namespaces.setTypeNamespace(values.get(TYPES_NAMESPACE));
View Full Code Here

Examples of org.kitesdk.data.FieldMapping.MappingType

   *          The HBase Result that represents a row in HBase.
   * @return The field Object we deserialized from the Result.
   */
  public Object deserialize(FieldMapping fieldMapping, Result result) {
    String fieldName = fieldMapping.getFieldName();
    MappingType mappingType = fieldMapping.getMappingType();
    if (mappingType == MappingType.COLUMN || mappingType == MappingType.COUNTER) {
      return deserializeColumn(fieldMapping.getFieldName(),
          fieldMapping.getFamily(), fieldMapping.getQualifier(), result);
    } else if (mappingType == MappingType.KEY_AS_COLUMN) {
      return deserializeKeyAsColumn(fieldMapping.getFieldName(),
View Full Code Here

Examples of org.sonatype.nexus.proxy.mapping.RepositoryPathMapping.MappingType

  }

  protected RepositoryPathMapping convert(CPathMappingItem item)
      throws IllegalArgumentException
  {
    MappingType type = null;

    if (CPathMappingItem.BLOCKING_RULE_TYPE.equals(item.getRouteType())) {
      type = MappingType.BLOCKING;
    }
    else if (CPathMappingItem.INCLUSION_RULE_TYPE.equals(item.getRouteType())) {
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.