All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.coursera.naptime.ari.package.scala Maven / Gradle / Ivy

There is a newer version: 0.9.0-alpha5
Show newest version
/*
 * Copyright 2016 Coursera Inc.
 *
 * Licensed 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 org.coursera.naptime

/**
 * This ari defines the key abstractions for automatic resource inclusion as well as GraphQL.
 *
 * The system is split up into 3 distinct layers:
 *
 * {{{
 * +---------------------------------------------------------------------+
 * |                       Presentation Layer                            |
 * |           GraphQL            |            Naptime HTTP              |
 * +------------------------------+--------------------------------------+
 * |                                                                     |
 * |                      Inclusion Engine                               |
 * |                                                                     |
 * +---------------------------------------------------------------------+
 * |                        Data fetching                                |
 * |         Local execution      |           remote execution           |
 * +=====================================================================+
 * |                                                                     |
 * |                   Unmodified Naptime APIs                           |
 * |                                                                     |
 * +---------------------------------------------------------------------+
 * }}}
 *
 * A request enters the system via the presentation layer (typically parsed from the network). The presentation
 * layer constructs a [[org.coursera.naptime.ari.Request]] and passes that to engine. The engine performs a
 * number of validations against the schema, and then makes a number of requests to  to the Data Fetching layer to
 * assemble all of the (available) data required to construct a response. This is passed back to the presentation
 * layer, which constructs a response to be sent out on the wire.
 *
 * The API between the presentation layer and the inclusion engine is the [[org.coursera.naptime.ari.EngineApi]]
 *
 * The API between the inclusion engine and the data fetching layer is defined by
 * [[org.coursera.naptime.ari.FetcherApi]].
 *
 * BEWARE: This code is currently in a high state of flux. Do not depend upon it unless you are prepared for breakages!
 */
package object ari {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy