All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadleafcommerce.openadmin.dto.iFieldMetadata Maven / Gradle / Ivy

There is a newer version: 3.1.15-GA
Show newest version
/*
 * Copyright 2008-2013 the original author or authors.
 *
 * 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 org.broadleafcommerce.openadmin.dto;

import java.io.Serializable;

/**
 * @author Jeff Fischer
 */
public interface iFieldMetadata extends Serializable {

    String[] getAvailableToTypes();

    void setAvailableToTypes(String[] availableToTypes);

    String getInheritedFromType();

    void setInheritedFromType(String inheritedFromType);

    Boolean getExcluded();

    void setExcluded(Boolean excluded);

    String getShowIfProperty();

    void setShowIfProperty(String showIfProperty);

    String getCurrencyCodeField();

    void setCurrencyCodeField(String currencyCodeField);

    String getFriendlyName();

    void setFriendlyName(String friendlyName);

    String getSecurityLevel();

    void setSecurityLevel(String securityLevel);

    Integer getOrder();

    void setOrder(Integer order);

    String getTargetClass();

    void setTargetClass(String targetClass);

    String getFieldName();

    void setFieldName(String fieldName);

    String getOwningClassFriendlyName();

    void setOwningClassFriendlyName(String owningClassFriendlyName);

    String getOwningClass();

    void setOwningClass(String owningClass);

    String getPrefix();

    void setPrefix(String prefix);

    Boolean getChildrenExcluded();

    void setChildrenExcluded(Boolean childrenExcluded);

    String getTab();

    void setTab(String tab);

    Integer getTabOrder();

    void setTabOrder(Integer tabOrder);

    FieldMetadata cloneFieldMetadata();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy