Package io.hawt.jsonschema.internal.customizers.io.fabric8.openshift

Source Code of io.hawt.jsonschema.internal.customizers.io.fabric8.openshift.CreateOpenshiftContainerOptionsSchemaCustomizer

/**
*  Copyright 2005-2014 Red Hat, Inc.
*
*  Red Hat licenses this file to you under the Apache License, version
*  2.0 (the "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
*  implied.  See the License for the specific language governing
*  permissions and limitations under the License.
*/
package io.hawt.jsonschema.internal.customizers.io.fabric8.openshift;

import com.fasterxml.jackson.databind.jsonschema.JsonSchema;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.databind.node.TextNode;
import io.hawt.jsonschema.internal.customizers.JsonSchemaCustomizer;

/**
* Customizes Json schema for OpenShift container options.
*/
public class CreateOpenshiftContainerOptionsSchemaCustomizer extends JsonSchemaCustomizer {

    public static String OPENSHIFT_BROKER_HOST = "OPENSHIFT_BROKER_HOST";
//    public static String OPENSHIFT_NAMESPACE = "OPENSHIFT_NAMESPACE";

    @Override
    public JsonSchema customize(JsonSchema originalSchema) {
        JsonSchema jsonSchema = super.customize(originalSchema);
        String defaultServerUrl = System.getenv(OPENSHIFT_BROKER_HOST);
        if (defaultServerUrl == null || defaultServerUrl.trim().equals("")) {
            defaultServerUrl = "openshift.redhat.com";
        }
//        jsonSchema.asObjectSchema().getProperties().get("serverUrl").asStringSchema().setDefault(defaultServerUrl);
        ((ObjectNode)jsonSchema.getSchemaNode().get("properties").get("serverUrl")).set("default", new TextNode(defaultServerUrl));
        return jsonSchema;
    }

}
TOP

Related Classes of io.hawt.jsonschema.internal.customizers.io.fabric8.openshift.CreateOpenshiftContainerOptionsSchemaCustomizer

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.