Package org.apache.sling.feature.maven
Class JSONFeatures
java.lang.Object
org.apache.sling.feature.maven.JSONFeatures
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
handleDefaultMetadata
(org.apache.sling.feature.Feature feature, Map<String, Map<String, String>> defaultMetadata) static void
handleExtensions
(org.apache.sling.feature.Feature feature, File file) Check for extensions of type text and if they reference a file.static String
Read the feature and add theid
attribute if missingstatic void
Write 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 theid
attribute if missing- Parameters:
reader
- The readeroptionalId
- The artifact id to use if theid
attribute 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_ID
then 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
-