Package com.day.cq.dam.commons.util
Class S7SetHelper
- java.lang.Object
-
- com.day.cq.dam.commons.util.S7SetHelper
-
public class S7SetHelper extends java.lang.ObjectHelper methods for S7 Sets
-
-
Constructor Summary
Constructors Constructor Description S7SetHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageSetcreateS7ImageSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props)Helper method to create S7ImageSetstatic MediaSetcreateS7MixedMediaSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props)Helper method to create S7 Mixed Media Setstatic SpinSetcreateS7SpinSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props)Helper method to create spin Setstatic SwatchSetcreateS7SwatchSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props)Helper method to create S7SwatchSetstatic MediaSetcreateS7VideoSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props)Helper method to create S7 VideoSetstatic booleanisS7Set(Resource resource)Checks whether the given resource represent a S7 set or not.static booleanisS7Video(Resource resource)Checks if the resource represents an S7 video.
-
-
-
Method Detail
-
createS7ImageSet
public static ImageSet createS7ImageSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props) throws PersistenceException
Helper method to create S7ImageSet- Parameters:
parent- parentResourcewhere new set to be createdname- name of the set to be created.props- additional properties to be saved i.e. jcr:title- Returns:
- an instance of
ImageSet - Throws:
PersistenceException- if there is any issue in creating the set. IllegalArgumentException if the parent resource is null or name is null
-
createS7SwatchSet
public static SwatchSet createS7SwatchSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props) throws PersistenceException
Helper method to create S7SwatchSet- Parameters:
parent- parentResourcewhere new set to be createdname- name of the set to be created.props- additional properties to be saved i.e. jcr:title- Returns:
- an instance of
SwatchSet - Throws:
PersistenceException- if there is any issue in creating the set. IllegalArgumentException if the parent resource is null
-
createS7VideoSet
public static MediaSet createS7VideoSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props) throws PersistenceException
Helper method to create S7 VideoSet- Parameters:
parent- parentResourcewhere new set to be createdname- name of the set to be created.props- additional properties to be saved i.e. jcr:title- Returns:
- an instance of
MediaSet - Throws:
PersistenceException- if there is any issue in creating the set. IllegalArgumentException if the parent resource is null
-
createS7MixedMediaSet
public static MediaSet createS7MixedMediaSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props) throws PersistenceException
Helper method to create S7 Mixed Media Set- Parameters:
parent- parentResourcewhere new set to be createdname- name of the set to be created.props- additional properties to be saved i.e. jcr:title- Returns:
- an instance of
MediaSet - Throws:
PersistenceException- if there is any issue in creating the set. IllegalArgumentException if the parent resource is null
-
createS7SpinSet
public static SpinSet createS7SpinSet(Resource parent, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> props) throws PersistenceException
Helper method to create spin Set- Parameters:
parent- parentResourcewhere new set to be createdname- name of the set to be created.props- additional properties to be saved i.e. jcr:title- Returns:
- an instance of
MediaSet - Throws:
PersistenceException- if there is any issue in creating the set. IllegalArgumentException if the parent resource is null
-
isS7Set
public static boolean isS7Set(Resource resource)
Checks whether the given resource represent a S7 set or not.- Parameters:
resource- resource instance- Returns:
trueif the resource represent a S7 setfalseif the resource is not a S7 set- Throws:
java.lang.NullPointerException- if resource is null
-
isS7Video
public static boolean isS7Video(Resource resource)
Checks if the resource represents an S7 video.- Parameters:
resource- resource instance- Returns:
trueif the resource represent a S7 setfalseif the resource is not a S7 set
-
-