/* * 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.apache.brooklyn.camp.spi; import org.apache.brooklyn.camp.spi.collection.BasicResourceLookup; import org.apache.brooklyn.camp.spi.collection.ResourceLookup; import org.apache.brooklyn.camp.spi.collection.ResourceLookup.EmptyResourceLookup; /** Holds the metadata (name, description, etc) for a PCT * as well as fields pointing to behaviour (eg creation of PlatformComponent). * <p> * See {@link AbstractResource} for more general information. */ public class ApplicationComponent extends AbstractResource { public static final String CAMP_TYPE = "ApplicationComponent"; static { assert CAMP_TYPE.equals(ApplicationComponent.class.getSimpleName()); } /** Use {@link #builder()} to create */ protected ApplicationComponent() {} ResourceLookup<ApplicationComponent> applicationComponents; ResourceLookup<PlatformComponent> platformComponents; String externalManagementUri; public ResourceLookup<ApplicationComponent> getApplicationComponents() { return applicationComponents != null ? applicationComponents : new EmptyResourceLookup<ApplicationComponent>(); } public ResourceLookup<PlatformComponent> getPlatformComponents() { return platformComponents != null ? platformComponents : new EmptyResourceLookup<PlatformComponent>(); } private void setApplicationComponents(ResourceLookup<ApplicationComponent> applicationComponents) { this.applicationComponents = applicationComponents; } private void setPlatformComponents(ResourceLookup<PlatformComponent> platformComponents) { this.platformComponents = platformComponents; } // builder public static Builder<? extends ApplicationComponent> builder() { return new ApplicationComponent().new Builder<ApplicationComponent>(CAMP_TYPE); } public class Builder<T extends ApplicationComponent> extends AbstractResource.Builder<T,Builder<T>> { protected Builder(String type) { super(type); } public Builder<T> applicationComponentTemplates(ResourceLookup<ApplicationComponent> x) { ApplicationComponent.this.setApplicationComponents(x); return thisBuilder(); } public Builder<T> platformComponentTemplates(ResourceLookup<PlatformComponent> x) { ApplicationComponent.this.setPlatformComponents(x); return thisBuilder(); } public synchronized Builder<T> add(ApplicationComponent x) { if (ApplicationComponent.this.applicationComponents==null) { ApplicationComponent.this.applicationComponents = new BasicResourceLookup<ApplicationComponent>(); } if (!(ApplicationComponent.this.applicationComponents instanceof BasicResourceLookup)) { throw new IllegalStateException("Cannot add to resource lookup "+ApplicationComponent.this.applicationComponents); } ((BasicResourceLookup<ApplicationComponent>)ApplicationComponent.this.applicationComponents).add(x); return thisBuilder(); } public synchronized Builder<T> add(PlatformComponent x) { if (ApplicationComponent.this.platformComponents==null) { ApplicationComponent.this.platformComponents = new BasicResourceLookup<PlatformComponent>(); } if (!(ApplicationComponent.this.platformComponents instanceof BasicResourceLookup)) { throw new IllegalStateException("Cannot add to resource lookup "+ApplicationComponent.this.platformComponents); } ((BasicResourceLookup<PlatformComponent>)ApplicationComponent.this.platformComponents).add(x); return thisBuilder(); } } }