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

com.commercetools.sunrise.framework.viewmodels.PageTitleResolver Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.framework.viewmodels;

import com.google.inject.ImplementedBy;

import java.util.Optional;

@ImplementedBy(PageTitleResolverImpl.class)
@FunctionalInterface
public interface PageTitleResolver {

    Optional find(final String key);

    default String getOrEmpty(final String key) {
        return find(key).orElse("");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy