/* 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 org.springframework.beans.factory.annotation.Required; import java.util.ArrayList; import java.util.List; /** * @description Experimental. * <p>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.</p> * <p>This is an alternative for {@link KeyStore}.</p> */ @MCElement(name="key") public class Key { @MCElement(name="private", mixed=true) public static class Private extends Blob { /** * @description A file containing the key in PEM 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<Certificate> certificates = new ArrayList<Certificate>(); @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); } 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<Certificate> getCertificates() { return certificates; } @Required @MCChildElement(order=2) public void setCertificates(List<Certificate> certificates) { this.certificates = certificates; } }