blob: 66d1447782e54a76292316573341e843d418c8f7 [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds 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.privatechef;
import java.net.URI;
import java.util.Properties;
import org.jclouds.apis.ApiMetadata;
import org.jclouds.chef.ChefApiMetadata;
import org.jclouds.chef.ChefAsyncApi;
import org.jclouds.chef.ChefContext;
import org.jclouds.chef.config.ChefBootstrapModule;
import org.jclouds.chef.config.ChefParserModule;
import org.jclouds.ohai.config.JMXOhaiModule;
import org.jclouds.privatechef.config.PrivateChefRestClientModule;
import com.google.common.collect.ImmutableSet;
import com.google.inject.Module;
/**
* Implementation of {@link ApiMetadata} for Private Chef api.
*
* @author Adrian Cole
*/
public class PrivateChefApiMetadata extends ChefApiMetadata {
@Override
public Builder toBuilder() {
return new Builder().fromApiMetadata(this);
}
public PrivateChefApiMetadata() {
this(new Builder());
}
protected PrivateChefApiMetadata(Builder builder) {
super(builder);
}
public static Properties defaultProperties() {
Properties properties = ChefApiMetadata.defaultProperties();
return properties;
}
public static class Builder extends ChefApiMetadata.Builder<Builder> {
protected Builder() {
super(PrivateChefApi.class, PrivateChefAsyncApi.class);
id("privatechef")
.name("Private Chef Api")
.identityName("User")
.credentialName("Certificate")
.version(ChefAsyncApi.VERSION)
.documentation(URI.create("http://www.opscode.com/support/"))
.defaultEndpoint("https://api.opscode.com")
.defaultProperties(PrivateChefApiMetadata.defaultProperties())
.view(ChefContext.class)
.defaultModules(
ImmutableSet.<Class<? extends Module>> of(PrivateChefRestClientModule.class,
ChefParserModule.class, ChefBootstrapModule.class, JMXOhaiModule.class));
}
@Override
public PrivateChefApiMetadata build() {
return new PrivateChefApiMetadata(this);
}
@Override
protected Builder self() {
return this;
}
}
}