Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
empty customization java
  • Loading branch information
weidongxu-microsoft committed Sep 14, 2024
commit 3f5536a937dd7c93b6cb6072b0ae15936eff8ab9
21 changes: 21 additions & 0 deletions sdk/face/azure-ai-vision-face/customization/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.azure</groupId>
<artifactId>azure-code-customization-parent</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-code-customization-parent;current} -->
<relativePath>../../../parents/azure-code-customization-parent</relativePath>
</parent>

<name>Microsoft Azure Face client for Java</name>
<description>This package contains client customization for Microsoft Azure Face</description>

<groupId>com.azure.tools</groupId>
<artifactId>azure-face-customization</artifactId>
<version>1.0.0-beta.1</version>
<packaging>jar</packaging>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

import com.azure.autorest.customization.Customization;
import com.azure.autorest.customization.LibraryCustomization;
import org.slf4j.Logger;

import java.lang.reflect.Modifier;
import java.util.Arrays;

/**
* This class contains the customization code to customize the AutoRest generated code for OpenAI.
*/
public class FaceCustomizations extends Customization {

@Override
public void customize(LibraryCustomization customization, Logger logger) {
// NOOP
}
}