/modules/etl/mulesoft/src/main/java/com/liferay/mule/internal/connection/config/LiferayProxyConfig.java
http://github.com/liferay/liferay-portal · Java · 72 lines · 43 code · 13 blank · 16 comment · 4 complexity · 84cccdb5d3a00d42e17dbd01f3b9c7c5 MD5 · raw file
- /**
- * Copyright (c) 2000-2021 Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
- package com.liferay.mule.internal.connection.config;
- import org.mule.runtime.extension.api.annotation.param.Optional;
- import org.mule.runtime.extension.api.annotation.param.Parameter;
- import org.mule.runtime.extension.api.annotation.param.display.DisplayName;
- import org.mule.runtime.extension.api.annotation.param.display.Password;
- import org.mule.runtime.extension.api.annotation.param.display.Placement;
- import org.mule.runtime.http.api.client.proxy.ProxyConfig;
- import org.mule.runtime.http.api.client.proxy.ProxyConfigBuilder;
- /**
- * @author Matija Petanjek
- */
- public class LiferayProxyConfig {
- public ProxyConfig getProxyConfig() {
- if ((proxyHost != null) && (proxyPort != null)) {
- ProxyConfigBuilder proxyConfigBuilder = ProxyConfig.builder();
- proxyConfigBuilder.host(proxyHost);
- proxyConfigBuilder.password(proxyPassword);
- proxyConfigBuilder.port(proxyPort);
- proxyConfigBuilder.username(proxyUsername);
- return proxyConfigBuilder.build();
- }
- return null;
- }
- private static final String PROXY_CONFIG = "Proxy Config";
- @DisplayName("Host")
- @Optional
- @Parameter
- @Placement(order = 1, tab = PROXY_CONFIG)
- private String proxyHost;
- @DisplayName("Password")
- @Optional
- @Parameter
- @Password
- @Placement(order = 4, tab = PROXY_CONFIG)
- private String proxyPassword;
- @DisplayName("Port")
- @Optional
- @Parameter
- @Placement(order = 2, tab = PROXY_CONFIG)
- private Integer proxyPort;
- @DisplayName("Username")
- @Optional
- @Parameter
- @Placement(order = 3, tab = PROXY_CONFIG)
- private String proxyUsername;
- }