Package org.jboss.aerogear.unifiedpush.model

Examples of org.jboss.aerogear.unifiedpush.model.ProxyConfig


         * @param proxyPort Port of proxy.
         * @return the current {@link Builder} instance
         */
        public Builder proxy(String proxyHost, int proxyPort) {
            if (this.proxy == null) {
                this.proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            this.proxy.setProxyHost(proxyHost);
            this.proxy.setProxyPort(proxyPort);
            return this;
        }
View Full Code Here


         * @param proxyUser Username for authentication.
         * @return the current {@link Builder} instance
         */
        public Builder proxyUser(String proxyUser) {
            if (this.proxy == null) {
                this.proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            this.proxy.setProxyUser(proxyUser);
            return this;
        }
View Full Code Here

         * @param proxyPassword Password for user authentication.
         * @return the current {@link Builder} instance
         */
        public Builder proxyPassword(String proxyPassword) {
            if (this.proxy == null) {
                this.proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            this.proxy.setProxyPassword(proxyPassword);
            return this;
        }
View Full Code Here

         * @param proxyType Type of proxy as
         * @return the current {@link Builder} instance
         */
        public Builder proxyType(Proxy.Type proxyType) {
            if (this.proxy == null) {
                this.proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            this.proxy.setProxyType(proxyType);
            return this;
        }
View Full Code Here

         * @param proxyPort Port of proxy.
         * @return the current {@link Builder} instance
         */
        public Builder proxy(String proxyHost, int proxyPort) {
            if (proxy == null) {
                proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            proxy.setProxyHost(proxyHost);
            proxy.setProxyPort(proxyPort);
            return this;
        }
View Full Code Here

         * @param proxyUser Username for authentication.
         * @return the current {@link Builder} instance
         */
        public Builder proxyUser(String proxyUser) {
            if (proxy == null) {
                proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            proxy.setProxyUser(proxyUser);
            return this;
        }
View Full Code Here

         * @param proxyPassword Password for user authentication.
         * @return the current {@link Builder} instance
         */
        public Builder proxyPassword(String proxyPassword) {
            if (proxy == null) {
                proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            proxy.setProxyPassword(proxyPassword);
            return this;
        }
View Full Code Here

         * @param proxyType Type of proxy as
         * @return the current {@link Builder} instance
         */
        public Builder proxyType(Proxy.Type proxyType) {
            if (proxy == null) {
                proxy = new ProxyConfig(Proxy.Type.HTTP);
            }
            proxy.setProxyType(proxyType);
            return this;
        }
View Full Code Here

TOP

Related Classes of org.jboss.aerogear.unifiedpush.model.ProxyConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.