org.infrastructurebuilder.util.DefaultCryptoIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ibcore Show documentation
Show all versions of ibcore Show documentation
Lightly encumberd Standard interfaces (and exceptions) for JVM-based applications within IB codebases
/**
* Copyright © 2019 admin ([email protected])
*
* 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 org.infrastructurebuilder.util;
import static java.util.Objects.requireNonNull;
import java.util.Optional;
import java.util.SortedSet;
import java.util.UUID;
import org.infrastructurebuilder.util.artifacts.Checksum;
import org.infrastructurebuilder.util.artifacts.ChecksumBuilder;
import org.infrastructurebuilder.util.artifacts.JSONBuilder;
import org.json.JSONObject;
public class DefaultCryptoIdentifier implements CryptoIdentifier {
private static final String IDENTIFIERS = "identifiers";
private static final String VALIDATION_IDENTIFIERS = "validation-identifiers";
private static final String TYPE = "type";
private final String type;
private final String validationIdentifier;
private final String id;
private final SortedSet identifiers;
public DefaultCryptoIdentifier(String type, String id, SortedSet identifiers,
Optional validationIdentifier) {
this.type = requireNonNull(type);
this.identifiers = requireNonNull(identifiers);
this.validationIdentifier = requireNonNull(validationIdentifier).orElse(null);
this.id = Optional.ofNullable(id).orElse(UUID.randomUUID().toString());
}
@Override
public JSONObject asJSON() {
return JSONBuilder.newInstance().addString("id", getId())
// type
.addString(TYPE, getType())
// identifiers
.addString(VALIDATION_IDENTIFIERS, getValidationIdentifier())
//
.addSetString(IDENTIFIERS, getIdentifiers())
//
.asJSON();
}
// @Override
// public Checksum asChecksum() {
// return ChecksumBuilder.newInstance()
// // ID
// .addString(getId())
// // Type
// .addString(getType())
// //
// .addSetString(getIdentifiers())
// // opt
// .addString(getValidationIdentifier())
// //
// .asChecksum();
// }
//
@Override
public SortedSet getIdentifiers() {
return this.identifiers;
}
@Override
public String getId() {
return this.id;
}
@Override
public String getType() {
return this.type;
}
@Override
public Optional getValidationIdentifier() {
return Optional.ofNullable(this.validationIdentifier);
}
}