001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.juneau.bean.jsonschema; 018 019import java.net.*; 020 021import org.apache.juneau.*; 022 023/** 024 * Convenience class for representing a schema reference such as <js>"{'$ref':'/url/to/ref'}"</js>. 025 * 026 * <p> 027 * An instance of this object is equivalent to calling... 028 * 029 * <p class='bjava'> 030 * JsonSchema <jv>schema</jv> = <jk>new</jk> JsonSchema().setRef(<jv>uri</jv>); 031 * </p> 032 */ 033public class JsonSchemaRef extends JsonSchema { 034 035 /** 036 * Constructor. 037 * 038 * <p> 039 * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. 040 * Strings must be valid URIs. 041 * 042 * <p> 043 * URIs defined by {@link UriResolver} can be used for values. 044 * 045 * @param uri The URI of the target reference. Can be <jk>null</jk>. 046 */ 047 public JsonSchemaRef(Object uri) { 048 this.setRef(uri); 049 } 050}