io.swagger.models.properties.DateProperty Java Examples

The following examples show how to use io.swagger.models.properties.DateProperty. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ConverterMgr.java    From servicecomb-java-chassis with Apache License 2.0 6 votes vote down vote up
private static void initPropertyMap() {
  PROPERTY_MAP.put(BooleanProperty.class, TypeFactory.defaultInstance().constructType(Boolean.class));

  PROPERTY_MAP.put(FloatProperty.class, TypeFactory.defaultInstance().constructType(Float.class));
  PROPERTY_MAP.put(DoubleProperty.class, TypeFactory.defaultInstance().constructType(Double.class));
  PROPERTY_MAP.put(DecimalProperty.class, TypeFactory.defaultInstance().constructType(BigDecimal.class));

  PROPERTY_MAP.put(ByteProperty.class, TypeFactory.defaultInstance().constructType(Byte.class));
  PROPERTY_MAP.put(ShortProperty.class, TypeFactory.defaultInstance().constructType(Short.class));
  PROPERTY_MAP.put(IntegerProperty.class, TypeFactory.defaultInstance().constructType(Integer.class));
  PROPERTY_MAP.put(BaseIntegerProperty.class, TypeFactory.defaultInstance().constructType(Integer.class));
  PROPERTY_MAP.put(LongProperty.class, TypeFactory.defaultInstance().constructType(Long.class));

  // stringProperty include enum scenes, not always be string type
  // if convert by StringPropertyConverter, can support enum scenes
  PROPERTY_MAP.put(StringProperty.class, TypeFactory.defaultInstance().constructType(String.class));

  PROPERTY_MAP.put(DateProperty.class, TypeFactory.defaultInstance().constructType(LocalDate.class));
  PROPERTY_MAP.put(DateTimeProperty.class, TypeFactory.defaultInstance().constructType(Date.class));

  PROPERTY_MAP.put(ByteArrayProperty.class, TypeFactory.defaultInstance().constructType(byte[].class));

  PROPERTY_MAP.put(FileProperty.class, TypeFactory.defaultInstance().constructType(Part.class));
}
 
Example #2
Source File: OpenApiTransformer.java    From spring-openapi with MIT License 5 votes vote down vote up
protected void setParameterDetails(AbstractSerializableParameter<?> oasParameter, Class<?> type, Annotation[] annotations) {
	if (byte.class.equals(type) || short.class.equals(type) || int.class.equals(type) || Byte.class.equals(type) ||
		Short.class.equals(type) || Integer.class.equals(type)) {
		oasParameter.setProperty(new IntegerProperty());
	} else if (long.class.equals(type) || Long.class.equals(type) || BigInteger.class.equals(type)) {
		oasParameter.setProperty(new LongProperty());
	} else if (float.class.equals(type) || Float.class.equals(type)) {
		oasParameter.setProperty(new FloatProperty().vendorExtension("x-type", "System.BigDecimal"));
	} else if (double.class.equals(type) || Double.class.equals(type) || BigDecimal.class.equals(type)) {
		oasParameter.setProperty(new DoubleProperty().vendorExtension("x-type", "System.BigDecimal"));
	} else if (char.class.equals(type) || Character.class.equals(type) || String.class.equals(type)) {
		oasParameter.setProperty(new StringProperty());
	} else if (boolean.class.equals(type) || Boolean.class.equals(type)) {
		oasParameter.setProperty(new BooleanProperty());
	} else if (List.class.equals(type)) {
		oasParameter.setProperty(createArrayProperty(type, null, annotations));
	} else if (LocalDate.class.equals(type) || Date.class.equals(type)) {
		oasParameter.setProperty(new DateProperty());
	} else if (LocalDateTime.class.equals(type) || LocalTime.class.equals(type)) {
		oasParameter.setProperty(new DateTimeProperty());
	}  else if (type.isEnum()) {
		mapEnum(oasParameter, type);
	} else {
		oasParameter.setProperty(createRefProperty(type, null));
	}
	asList(annotations).forEach(annotation -> applyAnnotationDetailsOnParameter(oasParameter, annotation));
}
 
Example #3
Source File: XmlExampleGenerator.java    From TypeScript-Microservices with MIT License 5 votes vote down vote up
/**
* Get the example string value for the given Property.
*
* If an example value was not provided in the specification, a default will be generated.
*
* @param property Property to get example string for
*
* @return Example String
*/
protected String getExample(Property property) {
    if (property.getExample() != null) {
        return property.getExample().toString();
    } else if (property instanceof DateTimeProperty) {
        return "2000-01-23T04:56:07.000Z";
    } else if (property instanceof DateProperty) {
        return "2000-01-23";
    } else if (property instanceof BooleanProperty) {
        return "true";
    } else if (property instanceof LongProperty) {
        return "123456789";
    } else if (property instanceof DoubleProperty) { // derived from DecimalProperty so make sure this is first
        return "3.149";
    }  else if (property instanceof DecimalProperty) {
        return "1.3579";
    } else if (property instanceof PasswordProperty) {
        return "********";
    } else if (property instanceof UUIDProperty) {
        return "046b6c7f-0b8a-43b9-b35d-6489e6daee91";
    // do these last in case the specific types above are derived from these classes
    } else if (property instanceof StringProperty) {
        return "aeiou";
    } else if (property instanceof BaseIntegerProperty) {
        return "123";
    } else if (property instanceof AbstractNumericProperty) {
        return "1.23";
    }
    LOGGER.warn("default example value not implemented for " + property);
    return "";
}
 
Example #4
Source File: WSDL11SOAPOperationExtractor.java    From carbon-apimgt with Apache License 2.0 5 votes vote down vote up
private Property getPropertyFromDataType(String dataType) {

        switch (dataType) {
        case "string":
            return new StringProperty();
        case "boolean":
            return new BooleanProperty();
        case "int":
            return new IntegerProperty();
        case "nonNegativeInteger":
            return new IntegerProperty();
        case "integer":
            return new IntegerProperty();
        case "positiveInteger":
            return new IntegerProperty();
        case "double":
            return new DoubleProperty();
        case "float":
            return new FloatProperty();
        case "long":
            return new LongProperty();
        case "date":
            return new DateProperty();
        case "dateTime":
            return new DateTimeProperty();
        default:
            return new RefProperty();
        }
    }
 
Example #5
Source File: ElmClientCodegen.java    From TypeScript-Microservices with MIT License 4 votes vote down vote up
@Override
public String toDefaultValue(Property p) {
    if (p instanceof StringProperty) {
        StringProperty sp = (StringProperty) p;
        if (sp.getDefault() != null) {
            return toOptionalValue("\"" + sp.getDefault().toString() + "\"");
        }
        return toOptionalValue(null);
    } else if (p instanceof BooleanProperty) {
        BooleanProperty bp = (BooleanProperty) p;
        if (bp.getDefault() != null) {
            return toOptionalValue(bp.getDefault() ? "True" : "False");
        }
        return toOptionalValue(null);
    } else if (p instanceof DateProperty) {
        return toOptionalValue(null);
    } else if (p instanceof DateTimeProperty) {
        return toOptionalValue(null);
    } else if (p instanceof DoubleProperty) {
        DoubleProperty dp = (DoubleProperty) p;
        if (dp.getDefault() != null) {
            return toOptionalValue(dp.getDefault().toString());
        }
        return toOptionalValue(null);
    } else if (p instanceof FloatProperty) {
        FloatProperty fp = (FloatProperty) p;
        if (fp.getDefault() != null) {
            return toOptionalValue(fp.getDefault().toString());
        }
        return toOptionalValue(null);
    } else if (p instanceof IntegerProperty) {
        IntegerProperty ip = (IntegerProperty) p;
        if (ip.getDefault() != null) {
            return toOptionalValue(ip.getDefault().toString());
        }
        return toOptionalValue(null);
    } else if (p instanceof LongProperty) {
        LongProperty lp = (LongProperty) p;
        if (lp.getDefault() != null) {
            return toOptionalValue(lp.getDefault().toString());
        }
        return toOptionalValue(null);
    } else {
        return toOptionalValue(null);
    }
}
 
Example #6
Source File: AbstractTypeScriptClientCodegen.java    From TypeScript-Microservices with MIT License 4 votes vote down vote up
@Override
public String toDefaultValue(Property p) {
    if (p instanceof StringProperty) {
        StringProperty sp = (StringProperty) p;
        if (sp.getDefault() != null) {
            return "'" + sp.getDefault() + "'";
        }
        return UNDEFINED_VALUE;
    } else if (p instanceof BooleanProperty) {
        return UNDEFINED_VALUE;
    } else if (p instanceof DateProperty) {
        return UNDEFINED_VALUE;
    } else if (p instanceof DateTimeProperty) {
        return UNDEFINED_VALUE;
    } else if (p instanceof DoubleProperty) {
        DoubleProperty dp = (DoubleProperty) p;
        if (dp.getDefault() != null) {
            return dp.getDefault().toString();
        }
        return UNDEFINED_VALUE;
    } else if (p instanceof FloatProperty) {
        FloatProperty fp = (FloatProperty) p;
        if (fp.getDefault() != null) {
            return fp.getDefault().toString();
        }
        return UNDEFINED_VALUE;
    } else if (p instanceof IntegerProperty) {
        IntegerProperty ip = (IntegerProperty) p;
        if (ip.getDefault() != null) {
            return ip.getDefault().toString();
        }
        return UNDEFINED_VALUE;
    } else if (p instanceof LongProperty) {
        LongProperty lp = (LongProperty) p;
        if (lp.getDefault() != null) {
            return lp.getDefault().toString();
        }
        return UNDEFINED_VALUE;
    } else {
        return UNDEFINED_VALUE;
    }
}
 
Example #7
Source File: DefaultCodegen.java    From TypeScript-Microservices with MIT License 4 votes vote down vote up
/**
 * returns the swagger type for the property
 * @param p Swagger property object
 * @return string presentation of the type
 **/
@SuppressWarnings("static-method")
public String getSwaggerType(Property p) {
    String datatype = null;
    if (p instanceof StringProperty && "number".equals(p.getFormat())) {
        datatype = "BigDecimal";
    } else if ((p instanceof ByteArrayProperty) || (p instanceof StringProperty && "byte".equals(p.getFormat()))) {
        datatype = "ByteArray";
    } else if (p instanceof BinaryProperty) {
        datatype = "binary";
    } else if (p instanceof FileProperty) {
        datatype = "file";
    } else if (p instanceof BooleanProperty) {
        datatype = "boolean";
    } else if (p instanceof DateProperty) {
        datatype = "date";
    } else if (p instanceof DateTimeProperty) {
        datatype = "DateTime";
    } else if (p instanceof DoubleProperty) {
        datatype = "double";
    } else if (p instanceof FloatProperty) {
        datatype = "float";
    } else if (p instanceof IntegerProperty) {
        datatype = "integer";
    } else if (p instanceof LongProperty) {
        datatype = "long";
    } else if (p instanceof MapProperty) {
        datatype = "map";
    } else if (p instanceof DecimalProperty) {
        datatype = "number";
    } else if ( p instanceof UUIDProperty) {
        datatype = "UUID";
    } else if (p instanceof RefProperty) {
        try {
            RefProperty r = (RefProperty) p;
            datatype = r.get$ref();
            if (datatype.indexOf("#/definitions/") == 0) {
                datatype = datatype.substring("#/definitions/".length());
            }
        } catch (Exception e) {
            LOGGER.warn("Error obtaining the datatype from RefProperty:" + p + ". Datatype default to Object");
            datatype = "Object";
            LOGGER.error(e.getMessage(), e);
        }
    } else if (p instanceof StringProperty) {
        datatype = "string";
    } else {
        if (p != null) {
            datatype = p.getType();
        }
    }
    return datatype;
}