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

org.jclouds.openstack.poppy.v1.domain.Provider Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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 org.jclouds.openstack.poppy.v1.domain;

import java.util.Set;

import org.jclouds.json.SerializedNames;
import org.jclouds.openstack.v2_0.domain.Link;

import com.google.auto.value.AutoValue;

/**
 * Representation of an OpenStack Poppy CDN Provider.
 */
@AutoValue
public abstract class Provider {
   /**
    * @return The name of the provider. The name must not exceed 64 bytes in length and is limited to
    * Unicode, digits, underscores, and hyphens.
    */
   public abstract String getProvider();

   /**
    * @return Specifies a list with an href where rel is provider_url.
    */
   public abstract Set getLinks();

   @SerializedNames({ "provider", "links" })
   private static Provider create(String provider, Set links) {
      return new AutoValue_Provider(provider, links);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy