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

de.zebrajaeger.opencms.resourceplugin.namingstrategy.PassThroughNamingStrategy Maven / Gradle / Ivy

package de.zebrajaeger.opencms.resourceplugin.namingstrategy;

@SuppressWarnings("unused")
public class PassThroughNamingStrategy extends AbstractNamingStrategy {
    public PassThroughNamingStrategy(String newResourceName) {
        super(newResourceName);
    }

    @Override
    protected String convert(String newResourceName) {
        return newResourceName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy