/* * 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.Date; import java.util.List; import org.apache.brooklyn.camp.commontypes.RepresentationSkew; import org.apache.brooklyn.camp.server.rest.util.DtoFactory; import org.apache.brooklyn.camp.spi.AbstractResource; import org.apache.brooklyn.util.time.Time; import com.fasterxml.jackson.annotation.JsonGetter; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonSetter; import com.fasterxml.jackson.databind.util.ISO8601Utils; public class ResourceDto extends DtoCustomAttributes { protected ResourceDto() {} protected ResourceDto(DtoFactory dtoFactory, AbstractResource x) { type = x.getType(); name = x.getName(); description = x.getDescription(); setCreated(x.getCreated()); tags = x.getTags(); representationSkew = x.getRepresentationSkew(); if (x.getCustomAttributes()!=null && !x.getCustomAttributes().isEmpty()) newInstanceCustomAttributes(x.getCustomAttributes()); uri = dtoFactory.uri(x); } private String uri; private String type; private String name; private String description; private Date created; private List<String> tags; private RepresentationSkew representationSkew; public String getUri() { return uri; } public String getName() { return name; } @JsonInclude(Include.NON_NULL) public String getDescription() { return description; } @JsonGetter("created") public String getCreatedAsString() { return created==null ? null : ISO8601Utils.format(created); } @JsonSetter private void setCreated(Date created) { this.created = Time.dropMilliseconds(created); } @JsonIgnore public Date getCreated() { return created; } @JsonInclude(Include.NON_EMPTY) public List<String> getTags() { return tags; } public String getType() { return type; } @JsonInclude(Include.NON_NULL) public RepresentationSkew getRepresentationSkew() { return representationSkew; } // --- building --- public static ResourceDto newInstance(DtoFactory dtoFactory, AbstractResource x) { return new ResourceDto(dtoFactory, x); } }