package com.zetcode.service; public class TextService { public String upper(String value) { return value.toUpperCase(); } }