
com.microsoft.azure.toolkit.lib.common.operation.OperationBundle Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
package com.microsoft.azure.toolkit.lib.common.operation;
import com.microsoft.azure.toolkit.lib.common.bundle.AzureBundle;
import com.microsoft.azure.toolkit.lib.common.bundle.AzureString;
import org.jetbrains.annotations.PropertyKey;
import javax.annotation.Nonnull;
public class OperationBundle {
public static final String BUNDLE = "bundles.com.microsoft.azure.toolkit.operation";
private static final AzureBundle bundle = new AzureBundle(BUNDLE);
public static AzureString description(@Nonnull @PropertyKey(resourceBundle = BUNDLE) String name, @Nonnull Object... params) {
return AzureString.format(bundle, name, params);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy