/** * Copyright 2017 ICF Olson * * 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.citytechinc.cq.component.editconfig; import java.util.List; import com.citytechinc.cq.component.xml.DefaultXmlElementParameters; public class EditConfigParameters extends DefaultXmlElementParameters { private static final String EDIT_CONFIG_PRIMARY_TYPE = "cq:EditConfig"; private List<String> actions; private String dialogMode; private String layout; private String emptyText; private Boolean inherit; private Boolean disableTargeting; public List<String> getActions() { return actions; } public void setActions(List<String> actions) { this.actions = actions; } public String getDialogMode() { return dialogMode; } public void setDialogMode(String dialogMode) { this.dialogMode = dialogMode; } public String getLayout() { return layout; } public void setLayout(String layout) { this.layout = layout; } public String getEmptyText() { return emptyText; } public void setEmptyText(String emptyText) { this.emptyText = emptyText; } public Boolean getInherit() { return inherit; } public void setInherit(Boolean inherit) { this.inherit = inherit; } public Boolean getDisableTargeting() { return disableTargeting; } public void setDisableTargeting(Boolean disableTargeting) { this.disableTargeting = disableTargeting; } @Override public String getFieldName() { return "jcr:root"; } @Override public void setFieldName(String fieldName) { throw new UnsupportedOperationException("fieldName is Static for EditConfig"); } @Override public String getPrimaryType() { return EDIT_CONFIG_PRIMARY_TYPE; } @Override public void setPrimaryType(String primaryType) { throw new UnsupportedOperationException("PrimaryType is Static for EditConfig"); } }