org.bonitasoft.engine.business.application.ApplicationMenuUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bonita-common Show documentation
Show all versions of bonita-common Show documentation
Bonita Common is the useful layer common to bonita-client and bonita-server
/**
* Copyright (C) 2019 Bonitasoft S.A.
* Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
* 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
* version 2.1 of the License.
* 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.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.business.application;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
/**
* @author Elias Ricken de Medeiros
*/
public class ApplicationMenuUpdater implements Serializable {
private final Map fields;
public ApplicationMenuUpdater() {
fields = new HashMap(4);
}
/**
* Retrieves all fields to be updated
*
* @return a {@link Map}<{@link ApplicationMenuField}, {@link Serializable}> containing all fields to be updated
* @see ApplicationMenuField
*/
public Map getFields() {
return fields;
}
/**
* Defines the identifier of the new {@link ApplicationPage} related to the
* {@link org.bonitasoft.engine.business.application.ApplicationMenu}. Use
* {@code null} to reference no {@code ApplicationPage}.
*
* @param applicationPageId the identifier of new related {@code ApplicationPage}
* @return the current {@code ApplicationMenuUpdater}
* @see org.bonitasoft.engine.business.application.ApplicationPage
* @see org.bonitasoft.engine.business.application.ApplicationMenu
*/
public ApplicationMenuUpdater setApplicationPageId(final Long applicationPageId) {
fields.put(ApplicationMenuField.APPLICATION_PAGE_ID, applicationPageId);
return this;
}
/**
* Defines the new value for the {@link ApplicationMenu} display name
*
* @param displayName the new value for the {@code ApplicationMenu} display name
* @return the current {@code ApplicationMenuUpdater}
* @see ApplicationMenu
*/
public ApplicationMenuUpdater setDisplayName(final String displayName) {
fields.put(ApplicationMenuField.DISPLAY_NAME, displayName);
return this;
}
/**
* Defines the new value for the {@link ApplicationMenu} index
*
* @param index the new value for the {@code ApplicationMenu} index
* @return the current {@code ApplicationMenuUpdater}
* @see ApplicationMenu
*/
public ApplicationMenuUpdater setIndex(final int index) {
fields.put(ApplicationMenuField.INDEX, index);
return this;
}
/**
* Defines the identifier of the new parent {@link ApplicationMenu}.Use {@code null} to reference no
* {@code ApplicationMenu}
*
* @param parentId the identifier of the new parent {@link ApplicationMenu}
* @return the current {@code ApplicationMenuUpdater}
* @see ApplicationMenu
*/
public ApplicationMenuUpdater setParentId(final Long parentId) {
fields.put(ApplicationMenuField.PARENT_ID, parentId);
return this;
}
/**
* Determines if this updater has at least one field to update
*
* @return true if there is at least one field to update; false otherwise
*/
public boolean hasFields() {
return !getFields().isEmpty();
}
}