![JAR search and dependency download from the Maven repository](/logo.png)
io.gs2.stamina.model.Namespace Maven / Gradle / Ivy
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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.gs2.stamina.model;
import java.util.ArrayList;
import java.util.List;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.ObjectNode;
import io.gs2.model.IModel;
/**
* ネームスペース
*
* @author Game Server Services, Inc.
*
*/
@SuppressWarnings("serial")
@JsonIgnoreProperties(ignoreUnknown=true)
public class Namespace implements IModel, Serializable, Comparable {
/** ネームスペース */
protected String namespaceId;
/**
* ネームスペースを取得
*
* @return ネームスペース
*/
public String getNamespaceId() {
return namespaceId;
}
/**
* ネームスペースを設定
*
* @param namespaceId ネームスペース
*/
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
}
/**
* ネームスペースを設定
*
* @param namespaceId ネームスペース
* @return this
*/
public Namespace withNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
return this;
}
/** オーナーID */
protected String ownerId;
/**
* オーナーIDを取得
*
* @return オーナーID
*/
public String getOwnerId() {
return ownerId;
}
/**
* オーナーIDを設定
*
* @param ownerId オーナーID
*/
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
/**
* オーナーIDを設定
*
* @param ownerId オーナーID
* @return this
*/
public Namespace withOwnerId(String ownerId) {
this.ownerId = ownerId;
return this;
}
/** ネームスペース名 */
protected String name;
/**
* ネームスペース名を取得
*
* @return ネームスペース名
*/
public String getName() {
return name;
}
/**
* ネームスペース名を設定
*
* @param name ネームスペース名
*/
public void setName(String name) {
this.name = name;
}
/**
* ネームスペース名を設定
*
* @param name ネームスペース名
* @return this
*/
public Namespace withName(String name) {
this.name = name;
return this;
}
/** 説明文 */
protected String description;
/**
* 説明文を取得
*
* @return 説明文
*/
public String getDescription() {
return description;
}
/**
* 説明文を設定
*
* @param description 説明文
*/
public void setDescription(String description) {
this.description = description;
}
/**
* 説明文を設定
*
* @param description 説明文
* @return this
*/
public Namespace withDescription(String description) {
this.description = description;
return this;
}
/** スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRN */
protected String overflowTriggerScriptId;
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRNを取得
*
* @return スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRN
*/
public String getOverflowTriggerScriptId() {
return overflowTriggerScriptId;
}
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRNを設定
*
* @param overflowTriggerScriptId スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRN
*/
public void setOverflowTriggerScriptId(String overflowTriggerScriptId) {
this.overflowTriggerScriptId = overflowTriggerScriptId;
}
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRNを設定
*
* @param overflowTriggerScriptId スタミナオーバーフロー上限に当たって回復できなかったスタミナを通知する スクリプト のGRN
* @return this
*/
public Namespace withOverflowTriggerScriptId(String overflowTriggerScriptId) {
this.overflowTriggerScriptId = overflowTriggerScriptId;
return this;
}
/** スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRN */
protected String overflowTriggerNamespaceId;
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRNを取得
*
* @return スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRN
*/
public String getOverflowTriggerNamespaceId() {
return overflowTriggerNamespaceId;
}
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRNを設定
*
* @param overflowTriggerNamespaceId スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRN
*/
public void setOverflowTriggerNamespaceId(String overflowTriggerNamespaceId) {
this.overflowTriggerNamespaceId = overflowTriggerNamespaceId;
}
/**
* スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRNを設定
*
* @param overflowTriggerNamespaceId スタミナオーバーフロー上限に当たって回復できなかったスタミナを追加する ネームスペース のGRN
* @return this
*/
public Namespace withOverflowTriggerNamespaceId(String overflowTriggerNamespaceId) {
this.overflowTriggerNamespaceId = overflowTriggerNamespaceId;
return this;
}
/** 作成日時 */
protected Long createdAt;
/**
* 作成日時を取得
*
* @return 作成日時
*/
public Long getCreatedAt() {
return createdAt;
}
/**
* 作成日時を設定
*
* @param createdAt 作成日時
*/
public void setCreatedAt(Long createdAt) {
this.createdAt = createdAt;
}
/**
* 作成日時を設定
*
* @param createdAt 作成日時
* @return this
*/
public Namespace withCreatedAt(Long createdAt) {
this.createdAt = createdAt;
return this;
}
/** 最終更新日時 */
protected Long updatedAt;
/**
* 最終更新日時を取得
*
* @return 最終更新日時
*/
public Long getUpdatedAt() {
return updatedAt;
}
/**
* 最終更新日時を設定
*
* @param updatedAt 最終更新日時
*/
public void setUpdatedAt(Long updatedAt) {
this.updatedAt = updatedAt;
}
/**
* 最終更新日時を設定
*
* @param updatedAt 最終更新日時
* @return this
*/
public Namespace withUpdatedAt(Long updatedAt) {
this.updatedAt = updatedAt;
return this;
}
public ObjectNode toJson() {
ObjectNode body_ = JsonNodeFactory.instance.objectNode()
.put("namespaceId", this.getNamespaceId())
.put("ownerId", this.getOwnerId())
.put("name", this.getName())
.put("description", this.getDescription())
.put("overflowTriggerScriptId", this.getOverflowTriggerScriptId())
.put("overflowTriggerNamespaceId", this.getOverflowTriggerNamespaceId())
.put("createdAt", this.getCreatedAt())
.put("updatedAt", this.getUpdatedAt());
return body_;
}
@Override
public int compareTo(Namespace o) {
return namespaceId.compareTo(o.namespaceId);
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.namespaceId == null) ? 0 : this.namespaceId.hashCode());
result = prime * result + ((this.ownerId == null) ? 0 : this.ownerId.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.description == null) ? 0 : this.description.hashCode());
result = prime * result + ((this.overflowTriggerScriptId == null) ? 0 : this.overflowTriggerScriptId.hashCode());
result = prime * result + ((this.overflowTriggerNamespaceId == null) ? 0 : this.overflowTriggerNamespaceId.hashCode());
result = prime * result + ((this.createdAt == null) ? 0 : this.createdAt.hashCode());
result = prime * result + ((this.updatedAt == null) ? 0 : this.updatedAt.hashCode());
return result;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null)
return false;
if (getClass() != o.getClass())
return false;
Namespace other = (Namespace) o;
if (namespaceId == null) {
return other.namespaceId == null;
} else if (!namespaceId.equals(other.namespaceId)) {
return false;
}
if (ownerId == null) {
return other.ownerId == null;
} else if (!ownerId.equals(other.ownerId)) {
return false;
}
if (name == null) {
return other.name == null;
} else if (!name.equals(other.name)) {
return false;
}
if (description == null) {
return other.description == null;
} else if (!description.equals(other.description)) {
return false;
}
if (overflowTriggerScriptId == null) {
return other.overflowTriggerScriptId == null;
} else if (!overflowTriggerScriptId.equals(other.overflowTriggerScriptId)) {
return false;
}
if (overflowTriggerNamespaceId == null) {
return other.overflowTriggerNamespaceId == null;
} else if (!overflowTriggerNamespaceId.equals(other.overflowTriggerNamespaceId)) {
return false;
}
if (createdAt == null) {
return other.createdAt == null;
} else if (!createdAt.equals(other.createdAt)) {
return false;
}
if (updatedAt == null) {
return other.updatedAt == null;
} else if (!updatedAt.equals(other.updatedAt)) {
return false;
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy