Skip to content

Commit 1ffc72d

Browse files
author
SDK Automation
committed
Generated from 58d4e9800c40a04eddf23380db322a816ae93b2c
1 parent d38576e commit 1ffc72d

File tree

368 files changed

+56383
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

368 files changed

+56383
-0
lines changed

sdk/logic/mgmt-v2019_05_01/pom.xml

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
<!--
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
-->
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">
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>com.microsoft.azure.logic.v2019_05_01</groupId>
11+
<parent>
12+
<groupId>com.microsoft.azure</groupId>
13+
<artifactId>azure-arm-parent</artifactId>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
16+
</parent>
17+
<artifactId>azure-mgmt-logic</artifactId>
18+
<version>1.0.0-beta</version>
19+
<packaging>jar</packaging>
20+
<name>Microsoft Azure SDK for Logic Management</name>
21+
<description>This package contains Microsoft Logic Management SDK.</description>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
23+
<licenses>
24+
<license>
25+
<name>The MIT License (MIT)</name>
26+
<url>http://opensource.org/licenses/MIT</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
<scm>
31+
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
32+
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
33+
<tag>HEAD</tag>
34+
</scm>
35+
<properties>
36+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37+
<legal><![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal>
38+
</properties>
39+
<developers>
40+
<developer>
41+
<id>microsoft</id>
42+
<name>Microsoft</name>
43+
</developer>
44+
</developers>
45+
<dependencies>
46+
<dependency>
47+
<groupId>com.microsoft.azure</groupId>
48+
<artifactId>azure-client-runtime</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.microsoft.azure</groupId>
52+
<artifactId>azure-arm-client-runtime</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>junit</groupId>
56+
<artifactId>junit</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>com.microsoft.azure</groupId>
61+
<artifactId>azure-client-authentication</artifactId>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.microsoft.azure</groupId>
66+
<artifactId>azure-mgmt-resources</artifactId>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.microsoft.azure</groupId>
71+
<artifactId>azure-arm-client-runtime</artifactId>
72+
<type>test-jar</type>
73+
<scope>test</scope>
74+
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
75+
<version>1.6.5</version>
76+
</dependency>
77+
</dependencies>
78+
<build>
79+
<plugins>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-jar-plugin</artifactId>
83+
<configuration>
84+
<archive>
85+
<manifest>
86+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
87+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
88+
</manifest>
89+
</archive>
90+
</configuration>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.codehaus.mojo</groupId>
94+
<artifactId>build-helper-maven-plugin</artifactId>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-compiler-plugin</artifactId>
99+
<version>3.1</version>
100+
<configuration>
101+
<source>1.7</source>
102+
<target>1.7</target>
103+
<annotationProcessors>
104+
<annotationProcessor>
105+
com.microsoft.azure.management.apigeneration.LangDefinitionProcessor
106+
</annotationProcessor>
107+
</annotationProcessors>
108+
<debug>true</debug>
109+
<optimize>true</optimize>
110+
<compilerArguments>
111+
<AaddGeneratedAnnotation>true</AaddGeneratedAnnotation>
112+
<Adebug>true</Adebug>
113+
</compilerArguments>
114+
</configuration>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-javadoc-plugin</artifactId>
119+
<version>2.8</version>
120+
<configuration>
121+
<excludePackageNames>*.implementation.*;*.utils.*;com.microsoft.schemas._2003._10.serialization;*.blob.core.search</excludePackageNames>
122+
<bottom>
123+
<![CDATA[<code>
124+
/**
125+
<br />* Copyright (c) Microsoft Corporation. All rights reserved.
126+
<br />* Licensed under the MIT License. See License.txt in the project root for
127+
<br />* license information.
128+
<br />*/
129+
</code>]]>
130+
</bottom>
131+
</configuration>
132+
</plugin>
133+
</plugins>
134+
</build>
135+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.logic.v2019_05_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* The AS2 agreement acknowledgement connection settings.
15+
*/
16+
public class AS2AcknowledgementConnectionSettings {
17+
/**
18+
* Indicates whether to ignore mismatch in certificate name.
19+
*/
20+
@JsonProperty(value = "ignoreCertificateNameMismatch", required = true)
21+
private boolean ignoreCertificateNameMismatch;
22+
23+
/**
24+
* Indicates whether to support HTTP status code 'CONTINUE'.
25+
*/
26+
@JsonProperty(value = "supportHttpStatusCodeContinue", required = true)
27+
private boolean supportHttpStatusCodeContinue;
28+
29+
/**
30+
* Indicates whether to keep the connection alive.
31+
*/
32+
@JsonProperty(value = "keepHttpConnectionAlive", required = true)
33+
private boolean keepHttpConnectionAlive;
34+
35+
/**
36+
* Indicates whether to unfold the HTTP headers.
37+
*/
38+
@JsonProperty(value = "unfoldHttpHeaders", required = true)
39+
private boolean unfoldHttpHeaders;
40+
41+
/**
42+
* Get indicates whether to ignore mismatch in certificate name.
43+
*
44+
* @return the ignoreCertificateNameMismatch value
45+
*/
46+
public boolean ignoreCertificateNameMismatch() {
47+
return this.ignoreCertificateNameMismatch;
48+
}
49+
50+
/**
51+
* Set indicates whether to ignore mismatch in certificate name.
52+
*
53+
* @param ignoreCertificateNameMismatch the ignoreCertificateNameMismatch value to set
54+
* @return the AS2AcknowledgementConnectionSettings object itself.
55+
*/
56+
public AS2AcknowledgementConnectionSettings withIgnoreCertificateNameMismatch(boolean ignoreCertificateNameMismatch) {
57+
this.ignoreCertificateNameMismatch = ignoreCertificateNameMismatch;
58+
return this;
59+
}
60+
61+
/**
62+
* Get indicates whether to support HTTP status code 'CONTINUE'.
63+
*
64+
* @return the supportHttpStatusCodeContinue value
65+
*/
66+
public boolean supportHttpStatusCodeContinue() {
67+
return this.supportHttpStatusCodeContinue;
68+
}
69+
70+
/**
71+
* Set indicates whether to support HTTP status code 'CONTINUE'.
72+
*
73+
* @param supportHttpStatusCodeContinue the supportHttpStatusCodeContinue value to set
74+
* @return the AS2AcknowledgementConnectionSettings object itself.
75+
*/
76+
public AS2AcknowledgementConnectionSettings withSupportHttpStatusCodeContinue(boolean supportHttpStatusCodeContinue) {
77+
this.supportHttpStatusCodeContinue = supportHttpStatusCodeContinue;
78+
return this;
79+
}
80+
81+
/**
82+
* Get indicates whether to keep the connection alive.
83+
*
84+
* @return the keepHttpConnectionAlive value
85+
*/
86+
public boolean keepHttpConnectionAlive() {
87+
return this.keepHttpConnectionAlive;
88+
}
89+
90+
/**
91+
* Set indicates whether to keep the connection alive.
92+
*
93+
* @param keepHttpConnectionAlive the keepHttpConnectionAlive value to set
94+
* @return the AS2AcknowledgementConnectionSettings object itself.
95+
*/
96+
public AS2AcknowledgementConnectionSettings withKeepHttpConnectionAlive(boolean keepHttpConnectionAlive) {
97+
this.keepHttpConnectionAlive = keepHttpConnectionAlive;
98+
return this;
99+
}
100+
101+
/**
102+
* Get indicates whether to unfold the HTTP headers.
103+
*
104+
* @return the unfoldHttpHeaders value
105+
*/
106+
public boolean unfoldHttpHeaders() {
107+
return this.unfoldHttpHeaders;
108+
}
109+
110+
/**
111+
* Set indicates whether to unfold the HTTP headers.
112+
*
113+
* @param unfoldHttpHeaders the unfoldHttpHeaders value to set
114+
* @return the AS2AcknowledgementConnectionSettings object itself.
115+
*/
116+
public AS2AcknowledgementConnectionSettings withUnfoldHttpHeaders(boolean unfoldHttpHeaders) {
117+
this.unfoldHttpHeaders = unfoldHttpHeaders;
118+
return this;
119+
}
120+
121+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.logic.v2019_05_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* The integration account AS2 agreement content.
15+
*/
16+
public class AS2AgreementContent {
17+
/**
18+
* The AS2 one-way receive agreement.
19+
*/
20+
@JsonProperty(value = "receiveAgreement", required = true)
21+
private AS2OneWayAgreement receiveAgreement;
22+
23+
/**
24+
* The AS2 one-way send agreement.
25+
*/
26+
@JsonProperty(value = "sendAgreement", required = true)
27+
private AS2OneWayAgreement sendAgreement;
28+
29+
/**
30+
* Get the AS2 one-way receive agreement.
31+
*
32+
* @return the receiveAgreement value
33+
*/
34+
public AS2OneWayAgreement receiveAgreement() {
35+
return this.receiveAgreement;
36+
}
37+
38+
/**
39+
* Set the AS2 one-way receive agreement.
40+
*
41+
* @param receiveAgreement the receiveAgreement value to set
42+
* @return the AS2AgreementContent object itself.
43+
*/
44+
public AS2AgreementContent withReceiveAgreement(AS2OneWayAgreement receiveAgreement) {
45+
this.receiveAgreement = receiveAgreement;
46+
return this;
47+
}
48+
49+
/**
50+
* Get the AS2 one-way send agreement.
51+
*
52+
* @return the sendAgreement value
53+
*/
54+
public AS2OneWayAgreement sendAgreement() {
55+
return this.sendAgreement;
56+
}
57+
58+
/**
59+
* Set the AS2 one-way send agreement.
60+
*
61+
* @param sendAgreement the sendAgreement value to set
62+
* @return the AS2AgreementContent object itself.
63+
*/
64+
public AS2AgreementContent withSendAgreement(AS2OneWayAgreement sendAgreement) {
65+
this.sendAgreement = sendAgreement;
66+
return this;
67+
}
68+
69+
}

0 commit comments

Comments
 (0)