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

com.citytechinc.cq.component.AspectRatiosParameters Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component;

import com.citytechinc.cq.component.xml.DefaultXmlElementParameters;

public class AspectRatiosParameters extends DefaultXmlElementParameters {

    private static final String PRIMARY_TYPE = "nt:unstructured";

    private static final String FIELD_NAME = "aspectRatios";

    @Override
    public String getFieldName() {
        return FIELD_NAME;
    }

    @Override
    public void setFieldName(String fieldName) {
        throw new UnsupportedOperationException("FieldName is static for AspectRatios");
    }

    @Override
    public String getPrimaryType() {
        return PRIMARY_TYPE;
    }

    @Override
    public void setPrimaryType(String primaryType) {
        throw new UnsupportedOperationException("PrimaryType is Static for AspectRatios");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy