Package org.apache.sling.feature.maven
Class JSONFeatures
java.lang.Object
org.apache.sling.feature.maven.JSONFeatures
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidhandleDefaultMetadata(org.apache.sling.feature.Feature feature, Map<String, Map<String, String>> defaultMetadata) static voidhandleExtensions(org.apache.sling.feature.Feature feature, File file) Check for extensions of type text and if they reference a file.static StringRead the feature and add theidattribute if missingstatic voidWrite the feature.
-
Field Details
-
PLACEHOLDER_ID
public static final org.apache.sling.feature.ArtifactId PLACEHOLDER_ID
-
-
Constructor Details
-
JSONFeatures
public JSONFeatures()
-
-
Method Details
-
read
public static String read(Reader reader, org.apache.sling.feature.ArtifactId optionalId, String location) throws IOException Read the feature and add theidattribute if missing- Parameters:
reader- The readeroptionalId- The artifact id to use if theidattribute is missinglocation- The location- Returns:
- The feature as a string
- Throws:
IOException- If reading fails
-
write
public static void write(Writer writer, org.apache.sling.feature.Feature feature) throws IOException Write the feature. If the id is thePLACEHOLDER_IDthen the id is not written out- Parameters:
writer- The writerfeature- The feature- Throws:
IOException- If anything goes wrong
-
handleExtensions
public static void handleExtensions(org.apache.sling.feature.Feature feature, File file) throws IOException Check for extensions of type text and if they reference a file.- Parameters:
feature- The feature to checkfile- The file to check for- Throws:
IOException- when an IO Exception occurs
-
handleDefaultMetadata
-