/* * 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.server.dto; import java.util.Map; import org.apache.brooklyn.camp.server.rest.util.DtoFactory; import org.apache.brooklyn.camp.spi.AbstractResource; import org.apache.brooklyn.camp.spi.Link; public class LinkDto extends DtoCustomAttributes { // defined as a constant so can be used in Swagger REST API annotations public static final String CLASS_NAME = "org.apache.brooklyn.camp.server.dto.LinkDto"; static { assert CLASS_NAME.equals(LinkDto.class.getCanonicalName()); } private String href; private String targetName; protected LinkDto() {} public String getHref() { return href; } public String getTargetName() { return targetName; } // --- building --- public static LinkDto newInstance(DtoFactory dtoFactory, Class<? extends AbstractResource> targetType, Link<?> x) { return new LinkDto().newInstanceInitialization(dtoFactory, targetType, x); } protected LinkDto newInstanceInitialization(DtoFactory dtoFactory, Class<? extends AbstractResource> targetType, Link<?> x) { targetName = x.getName(); href = dtoFactory.uri(targetType, x.getId()); return this; } public static LinkDto newInstance(String href, String targetName) { LinkDto x = new LinkDto(); x.href = href; x.targetName = targetName; return x; } public static LinkDto newInstance(String href, String targetName, Map<String,?> customAttributes) { LinkDto x = newInstance(href, targetName); x.newInstanceCustomAttributes(customAttributes); return x; } }