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

com.predic8.membrane.core.config.security.Key Maven / Gradle / Ivy

/* Copyright 2015 predic8 GmbH, www.predic8.com

   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. */

package com.predic8.membrane.core.config.security;

import com.google.common.base.Objects;
import com.predic8.membrane.annot.MCAttribute;
import com.predic8.membrane.annot.MCChildElement;
import com.predic8.membrane.annot.MCElement;
import com.predic8.membrane.annot.MCTextContent;
import com.predic8.membrane.annot.Required;

import java.util.ArrayList;
import java.util.List;

/**
 * @description Experimental.
 * 

Allows to insert a PEM block containing the key (as well as one or more blocks for the * certificate(s)) directly into the proxies.xml file.

*

This is an alternative for {@link KeyStore}.

*/ @MCElement(name="key") public class Key { @MCElement(name="private", mixed=true) public static class Private extends Blob { /** * @description A file/resource containing the private key in PEM format. * See here for a description of the format. */ public void setLocation(String location) { super.setLocation(location); } /** * @description The key in PEM format. */ public void setContent(String content) { super.setContent(content); } } String password; Private private_; List certificates = new ArrayList<>(); @Override public boolean equals(Object obj) { if (!(obj instanceof Key)) return false; Key other = (Key)obj; return Objects.equal(password, other.password) && Objects.equal(private_, other.private_) && Objects.equal(certificates, other.certificates); } @Override public int hashCode() { return java.util.Objects.hash(password, private_, certificates); } public String getPassword() { return password; } @MCAttribute public void setPassword(String password) { this.password = password; } public Private getPrivate() { return private_; } @Required @MCChildElement(order=1) public void setPrivate(Private private_) { this.private_ = private_; } public List getCertificates() { return certificates; } @Required @MCChildElement(order=2) public void setCertificates(List certificates) { this.certificates = certificates; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy