All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jolokia.service.jsr160.ProxyTargetConfig Maven / Gradle / Ivy

package org.jolokia.service.jsr160;

/*
 * Copyright 2009-2013 Roland Huss
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.HashMap;
import java.util.Map;

import org.jolokia.json.JSONObject;

/**
 * Configuration for proxy mode
 *
 * @author roland
 * @since 15.03.11
 */
public class ProxyTargetConfig {

    // The target URl
    private final String url;

    // Environment used for lookup
    private Map env;

    /**
     * Map which should contain the following keys
     *
     * 
    *
  • url -- JSR-160 Url of the target (mandatory)
  • *
  • user and password -- user and password to use (optional)
  • *
* @param pMap map containing configuration */ public ProxyTargetConfig(Map pMap) { if (pMap == null || pMap.get("url") == null) { throw new IllegalArgumentException("No service url given for JSR-160 target"); } url = pMap.get("url"); String user = pMap.get("user"); if (user != null) { env = new HashMap<>(); env.put("user",user); String pwd = pMap.get("password"); if (pwd != null) { env.put("password",pwd); } } } /** * JSR-160 service URL * * @return Remote service URL of the target */ public String getUrl() { return url; } /** * Env with user and password or empty map * * @return environment map */ public Map getEnv() { return env; } /** * As JSON representation * * @return JSON object representing this proxy configuration */ public JSONObject toJSON() { JSONObject ret = new JSONObject(); ret.put("url", url); if (env != null) { ret.put("env", env); } return ret; } @Override public String toString() { return "TargetConfig[" + url + ", " + env + "]"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy