Scene7RenditionProperty.java
587 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.dam.scene7.impl.rendition;
public enum Scene7RenditionProperty {
SCENE7_URL("scene7.url"),
SCENE7_TYPE("scene7.type"),
MIME_TYPE("scene7.mimetype"),
SIZE("scene7.size"),
ASSET_HANDLE("scene7.assetHandle"),
NAME("scene7.name"),
ENCODING_PRESET_HANDLE("scene7.presetHandle");
private String propertyName;
private Scene7RenditionProperty(String propertyName) {
this.propertyName = propertyName;
}
public String getPropertyName() {
return this.propertyName;
}
}