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

io.gravitee.repository.management.model.Theme Maven / Gradle / Ivy

There is a newer version: 4.5.5
Show newest version
/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * Licensed 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 io.gravitee.repository.management.model;

import java.util.Date;
import java.util.Objects;

/**
 * @author Guillaume CUSNIEUX (guillaume.cusnieux at graviteesource.com)
 * @author GraviteeSource Team
 */
public class Theme {

    public Theme() {}

    public Theme(Theme cloned) {
        this.id = cloned.getId();
        this.name = cloned.getName();
        this.referenceId = cloned.getReferenceId();
        this.referenceType = cloned.getReferenceType();
        this.createdAt = cloned.getCreatedAt();
        this.updatedAt = cloned.getUpdatedAt();
        this.enabled = cloned.isEnabled();
        this.logo = cloned.getLogo();
        this.optionalLogo = cloned.getOptionalLogo();
        this.backgroundImage = cloned.getBackgroundImage();
        this.definition = cloned.getDefinition();
        this.favicon = cloned.getFavicon();
    }

    public enum AuditEvent implements Audit.AuditEvent {
        THEME_DELETED,
        THEME_CREATED,
        THEME_UPDATED,
        THEME_RESET,
    }

    private String id;

    private String referenceType;

    private String referenceId;

    private String name;

    private Date createdAt;

    private Date updatedAt;

    private boolean enabled;

    private String definition;

    private String logo;

    private String backgroundImage;

    private String optionalLogo;

    private String favicon;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public Date getCreatedAt() {
        return createdAt;
    }

    public void setCreatedAt(Date createdAt) {
        this.createdAt = createdAt;
    }

    public Date getUpdatedAt() {
        return updatedAt;
    }

    public void setUpdatedAt(Date updatedAt) {
        this.updatedAt = updatedAt;
    }

    public boolean isEnabled() {
        return enabled;
    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    public String getDefinition() {
        return definition;
    }

    public void setDefinition(String definition) {
        this.definition = definition;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getReferenceType() {
        return referenceType;
    }

    public void setReferenceType(String referenceType) {
        this.referenceType = referenceType;
    }

    public String getReferenceId() {
        return referenceId;
    }

    public void setReferenceId(String referenceId) {
        this.referenceId = referenceId;
    }

    public String getLogo() {
        return logo;
    }

    public void setLogo(String logo) {
        this.logo = logo;
    }

    public String getBackgroundImage() {
        return backgroundImage;
    }

    public void setBackgroundImage(String backgroundImage) {
        this.backgroundImage = backgroundImage;
    }

    public String getOptionalLogo() {
        return optionalLogo;
    }

    public void setOptionalLogo(String optionalLogo) {
        this.optionalLogo = optionalLogo;
    }

    public String getFavicon() {
        return favicon;
    }

    public void setFavicon(String favicon) {
        this.favicon = favicon;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Theme theme = (Theme) o;
        return Objects.equals(id, theme.id);
    }

    @Override
    public int hashCode() {
        return Objects.hash(id);
    }

    @Override
    public String toString() {
        return (
            "Theme{" +
            "id='" +
            id +
            '\'' +
            ", referenceType='" +
            referenceType +
            '\'' +
            ", referenceId='" +
            referenceId +
            '\'' +
            ", name='" +
            name +
            '\'' +
            ", createdAt='" +
            createdAt +
            '\'' +
            ", updatedAt='" +
            updatedAt +
            '\'' +
            ", enabled='" +
            enabled +
            '\'' +
            ", definition='" +
            definition +
            '\'' +
            '}'
        );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy