/* * Copyright 2000-2013 JetBrains s.r.o. * * 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 com.intellij.tasks.trello.model; import com.intellij.util.xmlb.annotations.Attribute; import com.intellij.util.xmlb.annotations.Tag; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; /** * @author Mikhail Golubev */ @SuppressWarnings("UnusedDeclaration") @Tag("TrelloBoard") public class TrelloBoard extends TrelloModel { public static final String REQUIRED_FIELDS = "closed,name,idOrganization"; private boolean closed; private String idOrganization; private String name; /** * Serialization constructor */ @SuppressWarnings("UnusedDeclaration") public TrelloBoard() { } @Override public String toString() { return String.format("TrelloBoard(id='%s', name='%s')", getId(), getName()); } public boolean isClosed() { return closed; } @Nullable public String getIdOrganization() { return idOrganization; } @NotNull @Attribute("name") @Override public String getName() { return name; } @Override public void setName(@NotNull String name) { this.name = name; } }