io.ultreia.java4all.http.spi.model.ClassMappingDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-spi Show documentation
Show all versions of http-spi Show documentation
SPI used by plugin and annotation processors.
The newest version!
package io.ultreia.java4all.http.spi.model;
/*-
* #%L
* Http :: SPI
* %%
* Copyright (C) 2017 - 2024 Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.time.Instant;
import java.util.Date;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
/**
* Created by tchemit on 16/07/17.
*
* @author Tony Chemit - [email protected]
*/
public class ClassMappingDescription {
private final String packageName;
private final String classSuffix;
private final String sourceType;
private final String implementationType;
private final String mojoName;
private final List imports;
private final Set services;
public ClassMappingDescription(String packageName,
String classSuffix,
String sourceType,
String implementationType,
String mojoName,
List imports,
Set services) {
this.packageName = packageName;
this.classSuffix = classSuffix;
this.sourceType = sourceType;
this.implementationType = implementationType;
this.mojoName = mojoName;
this.imports = imports;
this.services = services;
}
public List getImports() {
return imports;
}
public String getPackageName() {
return packageName;
}
public String getClassSuffix() {
return classSuffix;
}
public String getSourceType() {
return sourceType;
}
public String getImplementationType() {
return implementationType;
}
public String getMojoName() {
return mojoName;
}
public Date getDate() {
return Date.from(Instant.now());
}
public Set getServices() {
return services;
}
public Set getAnonymousServices() {
return services.stream().filter(ServiceMapping::isAnonymous).collect(Collectors.toSet());
}
}