com.liferay.bulk.rest.client.dto.v1_0.SelectionScope Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.bulk.rest.client.dto.v1_0;
import com.liferay.bulk.rest.client.function.UnsafeSupplier;
import com.liferay.bulk.rest.client.serdes.v1_0.SelectionScopeSerDes;
import java.util.Objects;
import javax.annotation.Generated;
/**
* @author Alejandro Tardín
* @generated
*/
@Generated("")
public class SelectionScope implements Cloneable {
public Long getFolderId() {
return folderId;
}
public void setFolderId(Long folderId) {
this.folderId = folderId;
}
public void setFolderId(
UnsafeSupplier folderIdUnsafeSupplier) {
try {
folderId = folderIdUnsafeSupplier.get();
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
protected Long folderId;
public Long getRepositoryId() {
return repositoryId;
}
public void setRepositoryId(Long repositoryId) {
this.repositoryId = repositoryId;
}
public void setRepositoryId(
UnsafeSupplier repositoryIdUnsafeSupplier) {
try {
repositoryId = repositoryIdUnsafeSupplier.get();
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
protected Long repositoryId;
public Boolean getSelectAll() {
return selectAll;
}
public void setSelectAll(Boolean selectAll) {
this.selectAll = selectAll;
}
public void setSelectAll(
UnsafeSupplier selectAllUnsafeSupplier) {
try {
selectAll = selectAllUnsafeSupplier.get();
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
protected Boolean selectAll;
@Override
public SelectionScope clone() throws CloneNotSupportedException {
return (SelectionScope)super.clone();
}
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof SelectionScope)) {
return false;
}
SelectionScope selectionScope = (SelectionScope)object;
return Objects.equals(toString(), selectionScope.toString());
}
@Override
public int hashCode() {
String string = toString();
return string.hashCode();
}
public String toString() {
return SelectionScopeSerDes.toJSON(this);
}
}