Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
/**
* 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.arm.utils;
The ResourceNamerFactory to generate ResourceNamer.
/**
* The ResourceNamerFactory to generate ResourceNamer.
*/
public class ResourceNamerFactory {
Factory method to generate instance of ResourceNamer.
Params: - name – prefix for the names.
Returns: instance of ResourceNamer
/**
* Factory method to generate instance of ResourceNamer.
* @param name prefix for the names.
* @return instance of ResourceNamer
*/
public ResourceNamer createResourceNamer(String name) {
return new ResourceNamer(name);
}
}