// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.sdk.template; /** * This is a sample class for template app. */ public class Hello { /** * Sample method. * @return message */ public final String getMessage() { return "hello"; } }