migration_id
stringclasses 994
values | ver1_file_path
stringlengths 25
222
⌀ | ver2_file_path
stringlengths 28
222
⌀ | ver1_tree_path
stringlengths 1
111
⌀ | ver2_tree_path
stringlengths 1
105
⌀ | ver1_signature
stringlengths 5
3.53k
⌀ | ver2_signature
stringlengths 5
3.53k
⌀ | method_ver1
stringlengths 8
336k
⌀ | method_ver2
stringlengths 8
171k
⌀ |
---|---|---|---|---|---|---|---|---|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/util/observation/EReportingHelper.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/util/observation/EReportingHelper.java
|
EReportingHelper
|
EReportingHelper
|
getGmdDomainConsistency__(EReportingQualityData eReportingObservation, boolean force)
|
getGmdDomainConsistency__(EReportingQualityData eReportingQualityData, boolean force)
|
public static Set<OmResultQuality> getGmdDomainConsistency(EReportingQualityData eReportingObservation, boolean force) throws CodedException {
Set<OmResultQuality> set = Sets.newHashSet();
if (eReportingObservation.isSetDataCaptureFlag()) {
set.add(GmdDomainConsistency.dataCapture(eReportingObservation.getDataCaptureFlag()));
} else if (force) {
set.add(GmdDomainConsistency.dataCapture(GmlConstants.NilReason.unknown));
}
if (eReportingObservation.isSetTimeCoverageFlag()) {
set.add(GmdDomainConsistency.timeCoverage(eReportingObservation.getTimeCoverageFlag()));
}
else if (force) {
set.add(GmdDomainConsistency.timeCoverage(GmlConstants.NilReason.unknown));
}
if (eReportingObservation.isSetUncertaintyEstimation()) {
set.add(GmdDomainConsistency.uncertaintyEstimation(eReportingObservation.getUncertaintyEstimation()));
} else if (force) {
set.add(GmdDomainConsistency.uncertaintyEstimation(GmlConstants.NilReason.unknown));
}
return set;
}
|
public Set<OmResultQuality> getGmdDomainConsistency(EReportingQualityData eReportingQualityData, boolean force)
throws CodedException {
Set<OmResultQuality> set = Sets.newHashSet();
if (eReportingQualityData.isSetDataCaptureFlag()) {
set.add(GmdDomainConsistency.dataCapture(eReportingQualityData.getDataCaptureFlag()));
} else if (force) {
set.add(GmdDomainConsistency.dataCapture(GmlConstants.NilReason.unknown));
}
if (eReportingQualityData.isSetTimeCoverageFlag()) {
set.add(GmdDomainConsistency.timeCoverage(eReportingQualityData.getTimeCoverageFlag()));
} else if (force) {
set.add(GmdDomainConsistency.timeCoverage(GmlConstants.NilReason.unknown));
}
if (eReportingQualityData.isSetUncertaintyEstimation()) {
set.add(GmdDomainConsistency.uncertaintyEstimation(eReportingQualityData.getUncertaintyEstimation()));
} else if (force) {
set.add(GmdDomainConsistency.uncertaintyEstimation(GmlConstants.NilReason.unknown));
}
return set;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
getFeatureOfInterest__()
|
getFeatureOfInterest__()
|
public FeatureOfInterest getFeatureOfInterest() {
return featureOfInterest;
}
|
public AbstractFeatureEntity<?> getFeatureOfInterest() {
return featureOfInterest;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
setFeatureOfInterest__(FeatureOfInterest featureOfInterest)
|
setFeatureOfInterest__(AbstractFeatureEntity<?> featureOfInterest)
|
public void setFeatureOfInterest(FeatureOfInterest featureOfInterest) {
this.featureOfInterest = featureOfInterest;
}
|
public ObservationContext setFeatureOfInterest(AbstractFeatureEntity<?> featureOfInterest) {
this.featureOfInterest = featureOfInterest;
return this;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
getObservableProperty__()
|
getPhenomenon__()
|
public ObservableProperty getObservableProperty() {
return observableProperty;
}
|
public PhenomenonEntity getPhenomenon() {
return observableProperty;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
setObservableProperty__(ObservableProperty observableProperty)
|
setPhenomenon__(PhenomenonEntity observableProperty)
|
public void setObservableProperty(ObservableProperty observableProperty) {
this.observableProperty = observableProperty;
}
|
public ObservationContext setPhenomenon(PhenomenonEntity observableProperty) {
this.observableProperty = observableProperty;
return this;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
getProcedure__()
|
getProcedure__()
|
public Procedure getProcedure() {
return procedure;
}
|
public ProcedureEntity getProcedure() {
return procedure;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
hibernate/common/src/main/java/org/n52/sos/ds/hibernate/dao/observation/ObservationContext.java
|
ObservationContext
|
ObservationContext
|
setProcedure__(Procedure procedure)
|
setProcedure__(ProcedureEntity procedure)
|
public void setProcedure(Procedure procedure) {
this.procedure = procedure;
}
|
public ObservationContext setProcedure(ProcedureEntity procedure) {
this.procedure = procedure;
return this;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hashCode__()
|
hashCode__()
|
@Override
public int hashCode() {
return Objects.hashCode(updateTime,
defaultEpsgCode,
maxPhenomenonTimeForOfferings,
minPhenomenonTimeForOfferings,
maxResultTimeForOfferings,
minResultTimeForOfferings,
maxPhenomenonTimeForProcedures,
minPhenomenonTimeForProcedures,
allowedObservationTypeForOfferings,
childFeaturesForFeatureOfInterest,
childProceduresForProcedures,
featuresOfInterestForOfferings,
featuresOfInterestForResultTemplates,
observablePropertiesForOfferings,
observablePropertiesForProcedures,
observationTypesForOfferings,
observedPropertiesForResultTemplates,
offeringsForObservableProperties,
offeringsForProcedures,
parentFeaturesForFeaturesOfInterest,
parentProceduresForProcedures,
proceduresForFeaturesOfInterest,
proceduresForObservableProperties,
proceduresForOfferings,
hiddenChildProceduresForOfferings,
relatedFeaturesForOfferings,
resultTemplatesForOfferings,
rolesForRelatedFeatures,
envelopeForOfferings,
nameForOfferings,
i18nNameForOfferings,
i18nDescriptionForOfferings,
epsgCodes,
featuresOfInterest,
procedures,
resultTemplates,
offerings,
globalEnvelope,
globalResultTimeEnvelope,
globalPhenomenonTimeEnvelope,
supportedLanguages,
featureOfInterestHumanReadableNameForIdentifier,
featureOfInterestIdentifierForHumanReadableName,
observablePropertyHumanReadableNameForIdentifier,
observablePropertyIdentifierForHumanReadableName,
procedureHumanReadableNameForIdentifier,
procedureIdentifierForHumanReadableName,
offeringHumanReadableNameForIdentifier,
offeringIdentifierForHumanReadableName,
compositePhenomenons,
compositePhenomenonsForProcedure,
compositePhenomenonsForOffering,
observablePropertiesForCompositePhenomenon,
compositePhenomenonForObservableProperty,
typeInstanceProcedures,
componentAggregationProcedures,
typeOfProcedures);
}
|
@Override
public int hashCode() {
int hash = 5;
hash = 61 * hash + Objects.hashCode(this.maxPhenomenonTimeForOfferings);
hash = 61 * hash + Objects.hashCode(this.minPhenomenonTimeForOfferings);
hash = 61 * hash + Objects.hashCode(this.maxResultTimeForOfferings);
hash = 61 * hash + Objects.hashCode(this.minResultTimeForOfferings);
hash = 61 * hash + Objects.hashCode(this.maxPhenomenonTimeForProcedures);
hash = 61 * hash + Objects.hashCode(this.minPhenomenonTimeForProcedures);
hash = 61 * hash + Objects.hashCode(this.allowedObservationTypeForOfferings);
hash = 61 * hash + Objects.hashCode(this.allowedFeatureOfInterestTypeForOfferings);
hash = 61 * hash + Objects.hashCode(this.childFeaturesForFeatureOfInterest);
hash = 61 * hash + Objects.hashCode(this.childProceduresForProcedures);
hash = 61 * hash + Objects.hashCode(this.compositePhenomenonsForProcedure);
hash = 61 * hash + Objects.hashCode(this.compositePhenomenonsForOffering);
hash = 61 * hash + Objects.hashCode(this.compositePhenomenonsForObservableProperty);
hash = 61 * hash + Objects.hashCode(this.featuresOfInterestForOfferings);
hash = 61 * hash + Objects.hashCode(this.featuresOfInterestForResultTemplates);
hash = 61 * hash + Objects.hashCode(this.observablePropertiesForCompositePhenomenons);
hash = 61 * hash + Objects.hashCode(this.observablePropertiesForOfferings);
hash = 61 * hash + Objects.hashCode(this.observablePropertiesForProcedures);
hash = 61 * hash + Objects.hashCode(this.observationTypesForOfferings);
hash = 61 * hash + Objects.hashCode(this.featureOfInterestTypesForOfferings);
hash = 61 * hash + Objects.hashCode(this.observedPropertiesForResultTemplates);
hash = 61 * hash + Objects.hashCode(this.offeringsForObservableProperties);
hash = 61 * hash + Objects.hashCode(this.offeringsForProcedures);
hash = 61 * hash + Objects.hashCode(this.parentFeaturesForFeaturesOfInterest);
hash = 61 * hash + Objects.hashCode(this.parentProceduresForProcedures);
hash = 61 * hash + Objects.hashCode(this.proceduresForFeaturesOfInterest);
hash = 61 * hash + Objects.hashCode(this.proceduresForObservableProperties);
hash = 61 * hash + Objects.hashCode(this.proceduresForOfferings);
hash = 61 * hash + Objects.hashCode(this.hiddenChildProceduresForOfferings);
hash = 61 * hash + Objects.hashCode(this.relatedFeaturesForOfferings);
hash = 61 * hash + Objects.hashCode(this.resultTemplatesForOfferings);
hash = 61 * hash + Objects.hashCode(this.rolesForRelatedFeatures);
hash = 61 * hash + Objects.hashCode(this.envelopeForOfferings);
hash = 61 * hash + Objects.hashCode(this.nameForOfferings);
hash = 61 * hash + Objects.hashCode(this.i18nNameForOfferings);
hash = 61 * hash + Objects.hashCode(this.i18nDescriptionForOfferings);
hash = 61 * hash + Objects.hashCode(this.epsgCodes);
hash = 61 * hash + Objects.hashCode(this.featuresOfInterest);
hash = 61 * hash + Objects.hashCode(this.procedures);
hash = 61 * hash + Objects.hashCode(this.resultTemplates);
hash = 61 * hash + Objects.hashCode(this.offerings);
hash = 61 * hash + Objects.hashCode(this.compositePhenomenons);
hash = 61 * hash + Objects.hashCode(this.globalPhenomenonTimeEnvelope);
hash = 61 * hash + Objects.hashCode(this.globalResultTimeEnvelope);
hash = 61 * hash + Objects.hashCode(this.spatialFilteringProfileEnvelopeForOfferings);
hash = 61 * hash + Objects.hashCode(this.supportedLanguages);
hash = 61 * hash + Objects.hashCode(this.requestableProcedureDescriptionFormats);
hash = 61 * hash + Objects.hashCode(this.featureOfInterestIdentifierHumanReadableName);
hash = 61 * hash + Objects.hashCode(this.observablePropertyIdentifierHumanReadableName);
hash = 61 * hash + Objects.hashCode(this.procedureIdentifierHumanReadableName);
hash = 61 * hash + Objects.hashCode(this.offeringIdentifierHumanReadableName);
hash = 61 * hash + Objects.hashCode(this.typeInstanceProcedures);
hash = 61 * hash + Objects.hashCode(this.componentAggregationProcedures);
hash = 61 * hash + Objects.hashCode(this.typeOfProceduresMap);
hash = 61 * hash + this.defaultEpsgCode;
hash = 61 * hash + Objects.hashCode(this.globalEnvelope);
hash = 61 * hash + Objects.hashCode(this.updateTime);
return hash;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
equals__(Object obj)
|
equals__(Object obj)
|
@Override
public boolean equals(Object obj) {
if (obj instanceof InMemoryCacheImpl) {
final InMemoryCacheImpl other = (InMemoryCacheImpl) obj;
return Objects.equal(this.updateTime, other.getLastUpdateTime())
&& Objects.equal(this.defaultEpsgCode, other.getDefaultEPSGCode())
&& Objects.equal(this.maxPhenomenonTimeForOfferings, other.maxPhenomenonTimeForOfferings)
&& Objects.equal(this.minPhenomenonTimeForOfferings, other.minPhenomenonTimeForOfferings)
&& Objects.equal(this.maxResultTimeForOfferings, other.maxResultTimeForOfferings)
&& Objects.equal(this.minResultTimeForOfferings, other.minResultTimeForOfferings)
&& Objects.equal(this.maxPhenomenonTimeForProcedures, other.maxPhenomenonTimeForProcedures)
&& Objects.equal(this.minPhenomenonTimeForProcedures, other.minPhenomenonTimeForProcedures)
&& Objects.equal(this.allowedObservationTypeForOfferings, other.allowedObservationTypeForOfferings)
&& Objects.equal(this.childFeaturesForFeatureOfInterest, other.childFeaturesForFeatureOfInterest)
&& Objects.equal(this.childProceduresForProcedures, other.childProceduresForProcedures)
&& Objects.equal(this.featuresOfInterestForOfferings, other.featuresOfInterestForOfferings)
&& Objects.equal(this.featuresOfInterestForResultTemplates, other.featuresOfInterestForResultTemplates)
&& Objects.equal(this.observablePropertiesForOfferings, other.observablePropertiesForOfferings)
&& Objects.equal(this.observablePropertiesForProcedures, other.observablePropertiesForProcedures)
&& Objects.equal(this.observedPropertiesForResultTemplates, other.observedPropertiesForResultTemplates)
&& Objects.equal(this.offeringsForObservableProperties, other.offeringsForObservableProperties)
&& Objects.equal(this.offeringsForProcedures, other.offeringsForProcedures)
&& Objects.equal(this.parentFeaturesForFeaturesOfInterest, other.parentFeaturesForFeaturesOfInterest)
&& Objects.equal(this.parentProceduresForProcedures, other.parentProceduresForProcedures)
&& Objects.equal(this.proceduresForFeaturesOfInterest, other.proceduresForFeaturesOfInterest)
&& Objects.equal(this.proceduresForObservableProperties, other.proceduresForObservableProperties)
&& Objects.equal(this.proceduresForOfferings, other.proceduresForOfferings)
&& Objects.equal(this.hiddenChildProceduresForOfferings, other.hiddenChildProceduresForOfferings)
&& Objects.equal(this.relatedFeaturesForOfferings, other.relatedFeaturesForOfferings)
&& Objects.equal(this.resultTemplatesForOfferings, other.resultTemplatesForOfferings)
&& Objects.equal(this.rolesForRelatedFeatures, other.rolesForRelatedFeatures)
&& Objects.equal(this.envelopeForOfferings, other.envelopeForOfferings)
&& Objects.equal(this.nameForOfferings, other.nameForOfferings)
&& Objects.equal(this.i18nNameForOfferings, other.i18nNameForOfferings)
&& Objects.equal(this.i18nDescriptionForOfferings, other.i18nDescriptionForOfferings)
&& Objects.equal(this.epsgCodes, other.epsgCodes)
&& Objects.equal(this.featuresOfInterest, other.featuresOfInterest)
&& Objects.equal(this.procedures, other.procedures)
&& Objects.equal(this.resultTemplates, other.resultTemplates)
&& Objects.equal(this.globalEnvelope, other.getGlobalEnvelope())
&& Objects.equal(this.globalPhenomenonTimeEnvelope, other.globalPhenomenonTimeEnvelope)
&& Objects.equal(this.globalResultTimeEnvelope, other.globalResultTimeEnvelope)
&& Objects.equal(this.offerings, other.offerings)
&& Objects.equal(this.supportedLanguages, other.getSupportedLanguages())
&& Objects.equal(this.featureOfInterestHumanReadableNameForIdentifier, other.featureOfInterestHumanReadableNameForIdentifier)
&& Objects.equal(this.featureOfInterestIdentifierForHumanReadableName, other.featureOfInterestIdentifierForHumanReadableName)
&& Objects.equal(this.observablePropertyHumanReadableNameForIdentifier,other.observablePropertyHumanReadableNameForIdentifier)
&& Objects.equal(this.observablePropertyIdentifierForHumanReadableName, other.observablePropertyIdentifierForHumanReadableName)
&& Objects.equal(this.procedureHumanReadableNameForIdentifier, other.procedureHumanReadableNameForIdentifier)
&& Objects.equal(this.procedureIdentifierForHumanReadableName, other.procedureIdentifierForHumanReadableName)
&& Objects.equal(this.offeringHumanReadableNameForIdentifier, other.offeringHumanReadableNameForIdentifier)
&& Objects.equal(this.offeringIdentifierForHumanReadableName, other.offeringIdentifierForHumanReadableName)
&& Objects.equal(this.compositePhenomenons, other.compositePhenomenons)
&& Objects.equal(this.compositePhenomenonsForProcedure, other.compositePhenomenonsForProcedure)
&& Objects.equal(this.compositePhenomenonsForOffering, other.compositePhenomenonsForOffering)
&& Objects.equal(this.observablePropertiesForCompositePhenomenon, other.observablePropertiesForCompositePhenomenon)
&& Objects.equal(this.compositePhenomenonForObservableProperty, other.compositePhenomenonForObservableProperty)
&& Objects.equal(this.typeInstanceProcedures, other.typeInstanceProcedures)
&& Objects.equal(this.componentAggregationProcedures, other.componentAggregationProcedures)
&& Objects.equal(this.typeOfProcedures, other.typeOfProcedures);
}
return false;
}
|
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final InMemoryCacheImpl other = (InMemoryCacheImpl) obj;
if (this.defaultEpsgCode != other.defaultEpsgCode) {
return false;
}
if (!Objects.equals(this.maxPhenomenonTimeForOfferings, other.maxPhenomenonTimeForOfferings)) {
return false;
}
if (!Objects.equals(this.minPhenomenonTimeForOfferings, other.minPhenomenonTimeForOfferings)) {
return false;
}
if (!Objects.equals(this.maxResultTimeForOfferings, other.maxResultTimeForOfferings)) {
return false;
}
if (!Objects.equals(this.minResultTimeForOfferings, other.minResultTimeForOfferings)) {
return false;
}
if (!Objects.equals(this.maxPhenomenonTimeForProcedures, other.maxPhenomenonTimeForProcedures)) {
return false;
}
if (!Objects.equals(this.minPhenomenonTimeForProcedures, other.minPhenomenonTimeForProcedures)) {
return false;
}
if (!Objects.equals(this.allowedObservationTypeForOfferings, other.allowedObservationTypeForOfferings)) {
return false;
}
if (!Objects.equals(this.allowedFeatureOfInterestTypeForOfferings,
other.allowedFeatureOfInterestTypeForOfferings)) {
return false;
}
if (!Objects.equals(this.childFeaturesForFeatureOfInterest, other.childFeaturesForFeatureOfInterest)) {
return false;
}
if (!Objects.equals(this.childProceduresForProcedures, other.childProceduresForProcedures)) {
return false;
}
if (!Objects.equals(this.compositePhenomenonsForProcedure, other.compositePhenomenonsForProcedure)) {
return false;
}
if (!Objects.equals(this.compositePhenomenonsForOffering, other.compositePhenomenonsForOffering)) {
return false;
}
if (!Objects.equals(this.compositePhenomenonsForObservableProperty,
other.compositePhenomenonsForObservableProperty)) {
return false;
}
if (!Objects.equals(this.featuresOfInterestForOfferings, other.featuresOfInterestForOfferings)) {
return false;
}
if (!Objects.equals(this.featuresOfInterestForResultTemplates, other.featuresOfInterestForResultTemplates)) {
return false;
}
if (!Objects.equals(this.observablePropertiesForCompositePhenomenons,
other.observablePropertiesForCompositePhenomenons)) {
return false;
}
if (!Objects.equals(this.observablePropertiesForOfferings, other.observablePropertiesForOfferings)) {
return false;
}
if (!Objects.equals(this.observablePropertiesForProcedures, other.observablePropertiesForProcedures)) {
return false;
}
if (!Objects.equals(this.observationTypesForOfferings, other.observationTypesForOfferings)) {
return false;
}
if (!Objects.equals(this.featureOfInterestTypesForOfferings, other.featureOfInterestTypesForOfferings)) {
return false;
}
if (!Objects.equals(this.observedPropertiesForResultTemplates, other.observedPropertiesForResultTemplates)) {
return false;
}
if (!Objects.equals(this.offeringsForObservableProperties, other.offeringsForObservableProperties)) {
return false;
}
if (!Objects.equals(this.offeringsForProcedures, other.offeringsForProcedures)) {
return false;
}
if (!Objects.equals(this.parentFeaturesForFeaturesOfInterest, other.parentFeaturesForFeaturesOfInterest)) {
return false;
}
if (!Objects.equals(this.parentProceduresForProcedures, other.parentProceduresForProcedures)) {
return false;
}
if (!Objects.equals(this.proceduresForFeaturesOfInterest, other.proceduresForFeaturesOfInterest)) {
return false;
}
if (!Objects.equals(this.proceduresForObservableProperties, other.proceduresForObservableProperties)) {
return false;
}
if (!Objects.equals(this.proceduresForOfferings, other.proceduresForOfferings)) {
return false;
}
if (!Objects.equals(this.hiddenChildProceduresForOfferings, other.hiddenChildProceduresForOfferings)) {
return false;
}
if (!Objects.equals(this.relatedFeaturesForOfferings, other.relatedFeaturesForOfferings)) {
return false;
}
if (!Objects.equals(this.resultTemplatesForOfferings, other.resultTemplatesForOfferings)) {
return false;
}
if (!Objects.equals(this.rolesForRelatedFeatures, other.rolesForRelatedFeatures)) {
return false;
}
if (!Objects.equals(this.envelopeForOfferings, other.envelopeForOfferings)) {
return false;
}
if (!Objects.equals(this.nameForOfferings, other.nameForOfferings)) {
return false;
}
if (!Objects.equals(this.i18nNameForOfferings, other.i18nNameForOfferings)) {
return false;
}
if (!Objects.equals(this.i18nDescriptionForOfferings, other.i18nDescriptionForOfferings)) {
return false;
}
if (!Objects.equals(this.epsgCodes, other.epsgCodes)) {
return false;
}
if (!Objects.equals(this.featuresOfInterest, other.featuresOfInterest)) {
return false;
}
if (!Objects.equals(this.procedures, other.procedures)) {
return false;
}
if (!Objects.equals(this.resultTemplates, other.resultTemplates)) {
return false;
}
if (!Objects.equals(this.offerings, other.offerings)) {
return false;
}
if (!Objects.equals(this.compositePhenomenons, other.compositePhenomenons)) {
return false;
}
if (!Objects.equals(this.globalPhenomenonTimeEnvelope, other.globalPhenomenonTimeEnvelope)) {
return false;
}
if (!Objects.equals(this.globalResultTimeEnvelope, other.globalResultTimeEnvelope)) {
return false;
}
if (!Objects.equals(this.spatialFilteringProfileEnvelopeForOfferings,
other.spatialFilteringProfileEnvelopeForOfferings)) {
return false;
}
if (!Objects.equals(this.supportedLanguages, other.supportedLanguages)) {
return false;
}
if (!Objects.equals(this.requestableProcedureDescriptionFormats,
other.requestableProcedureDescriptionFormats)) {
return false;
}
if (!Objects.equals(this.featureOfInterestIdentifierHumanReadableName,
other.featureOfInterestIdentifierHumanReadableName)) {
return false;
}
if (!Objects.equals(this.observablePropertyIdentifierHumanReadableName,
other.observablePropertyIdentifierHumanReadableName)) {
return false;
}
if (!Objects.equals(this.procedureIdentifierHumanReadableName, other.procedureIdentifierHumanReadableName)) {
return false;
}
if (!Objects.equals(this.offeringIdentifierHumanReadableName, other.offeringIdentifierHumanReadableName)) {
return false;
}
if (!Objects.equals(this.typeInstanceProcedures, other.typeInstanceProcedures)) {
return false;
}
if (!Objects.equals(this.componentAggregationProcedures, other.componentAggregationProcedures)) {
return false;
}
if (!Objects.equals(this.typeOfProceduresMap, other.typeOfProceduresMap)) {
return false;
}
if (!Objects.equals(this.globalEnvelope, other.globalEnvelope)) {
return false;
}
if (!Objects.equals(this.updateTime, other.updateTime)) {
return false;
}
return true;
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getGlobalEnvelope__()
|
getGlobalEnvelope__()
|
@Override
public SosEnvelope getGlobalEnvelope() {
return copyOf(this.globalEnvelope);
}
|
@Override
public ReferencedEnvelope getGlobalEnvelope() {
return copyOf(this.globalEnvelope);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getOfferingsForObservableProperty__(final String observableProperty)
|
getOfferingsForObservableProperty__(String observableProperty)
|
@Override
public Set<String> getOfferingsForObservableProperty(final String observableProperty) {
return copyOf(this.offeringsForObservableProperties.get(observableProperty));
}
|
@Override
public Set<String> getOfferingsForObservableProperty(String observableProperty) {
return copyOf(this.offeringsForObservableProperties.get(observableProperty));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getOfferingsForProcedure__(final String procedure)
|
getOfferingsForProcedure__(String procedure)
|
@Override
public Set<String> getOfferingsForProcedure(final String procedure) {
return copyOf(this.offeringsForProcedures.get(procedure));
}
|
@Override
public Set<String> getOfferingsForProcedure(String procedure) {
return copyOf(this.offeringsForProcedures.get(procedure));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getProceduresForFeatureOfInterest__(final String featureOfInterest)
|
getProceduresForFeatureOfInterest__(String featureOfInterest)
|
@Override
public Set<String> getProceduresForFeatureOfInterest(final String featureOfInterest) {
return copyOf(this.proceduresForFeaturesOfInterest.get(featureOfInterest));
}
|
@Override
public Set<String> getProceduresForFeatureOfInterest(String featureOfInterest) {
return copyOf(this.proceduresForFeaturesOfInterest.get(featureOfInterest));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getProceduresForObservableProperty__(final String observableProperty)
|
getProceduresForObservableProperty__(String observableProperty)
|
@Override
public Set<String> getProceduresForObservableProperty(final String observableProperty) {
return copyOf(this.proceduresForObservableProperties.get(observableProperty));
}
|
@Override
public Set<String> getProceduresForObservableProperty(String observableProperty) {
return copyOf(this.proceduresForObservableProperties.get(observableProperty));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getProceduresForOffering__(final String offering)
|
getProceduresForOffering__(String offering)
|
@Override
public Set<String> getProceduresForOffering(final String offering) {
return copyOf(this.proceduresForOfferings.get(offering));
}
|
@Override
public Set<String> getProceduresForOffering(String offering) {
return copyOf(this.proceduresForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getHiddenChildProceduresForOffering__(final String offering)
|
getHiddenChildProceduresForOffering__(String offering)
|
@Override
public Set<String> getHiddenChildProceduresForOffering(final String offering) {
return copyOf(this.hiddenChildProceduresForOfferings.get(offering));
}
|
@Override
public Set<String> getHiddenChildProceduresForOffering(String offering) {
return copyOf(this.hiddenChildProceduresForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getRelatedFeaturesForOffering__(final String offering)
|
getRelatedFeaturesForOffering__(String offering)
|
@Override
public Set<String> getRelatedFeaturesForOffering(final String offering) {
return copyOf(this.relatedFeaturesForOfferings.get(offering));
}
|
@Override
public Set<String> getRelatedFeaturesForOffering(String offering) {
return copyOf(this.relatedFeaturesForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getResultTemplatesForOffering__(final String offering)
|
getResultTemplatesForOffering__(String offering)
|
@Override
public Set<String> getResultTemplatesForOffering(final String offering) {
return copyOf(this.resultTemplatesForOfferings.get(offering));
}
|
@Override
public Set<String> getResultTemplatesForOffering(String offering) {
return copyOf(this.resultTemplatesForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getRolesForRelatedFeature__(final String relatedFeature)
|
getRolesForRelatedFeature__(String relatedFeature)
|
@Override
public Set<String> getRolesForRelatedFeature(final String relatedFeature) {
return copyOf(this.rolesForRelatedFeatures.get(relatedFeature));
}
|
@Override
public Set<String> getRolesForRelatedFeature(String relatedFeature) {
return copyOf(this.rolesForRelatedFeatures.get(relatedFeature));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getEnvelopeForOffering__(final String offering)
|
getEnvelopeForOffering__(String offering)
|
@Override
public SosEnvelope getEnvelopeForOffering(final String offering) {
return copyOf(this.envelopeForOfferings.get(offering));
}
|
@Override
public ReferencedEnvelope getEnvelopeForOffering(String offering) {
return copyOf(this.envelopeForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getNameForOffering__(final String offering)
|
getNameForOffering__(String offering)
|
@Override
public String getNameForOffering(final String offering) {
return this.nameForOfferings.get(offering);
}
|
@Override
public String getNameForOffering(String offering) {
return this.nameForOfferings.get(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getI18nNameForOffering__(String offering, Locale i18n)
|
getI18nNameForOffering__(String offering, Locale i18n)
|
@Override
public LocalizedString getI18nNameForOffering(String offering, Locale i18n) {
MultilingualString map = this.i18nNameForOfferings.get(offering);
if (map != null) {
return map.getLocalization(i18n).orNull();
}
return null;
}
|
@Override
public LocalizedString getI18nNameForOffering(String offering, Locale i18n) {
return Optional.ofNullable(this.i18nNameForOfferings.get(offering)).flatMap(m -> m.getLocalization(i18n))
.orElse(null);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getI18nDescriptionForOffering__(String offering, Locale i18n)
|
getI18nDescriptionForOffering__(String offering, Locale i18n)
|
@Override
public LocalizedString getI18nDescriptionForOffering(String offering, Locale i18n) {
MultilingualString map = this.i18nDescriptionForOfferings.get(offering);
if (map != null) {
return map.getLocalization(i18n).orNull();
}
return null;
}
|
@Override
public LocalizedString getI18nDescriptionForOffering(String offering, Locale i18n) {
return Optional.ofNullable(this.i18nDescriptionForOfferings.get(offering))
.flatMap(m -> m.getLocalization(i18n)).orElse(null);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hasI18NDescriptionForOffering__(String offering, Locale i18n)
|
hasI18NDescriptionForOffering__(String offering, Locale i18n)
|
@Override
public boolean hasI18NDescriptionForOffering(String offering, Locale i18n) {
return this.i18nDescriptionForOfferings.containsKey(offering) && this.i18nDescriptionForOfferings.get(offering).hasLocale(i18n);
}
|
@Override
public boolean hasI18NDescriptionForOffering(String offering, Locale i18n) {
return this.i18nDescriptionForOfferings.containsKey(offering)
&& this.i18nDescriptionForOfferings.get(offering).hasLocale(i18n);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getMaxPhenomenonTimeForOffering__(final String offering)
|
getMaxPhenomenonTimeForOffering__(String offering)
|
@Override
public DateTime getMaxPhenomenonTimeForOffering(final String offering) {
return this.maxPhenomenonTimeForOfferings.get(offering);
}
|
@Override
public DateTime getMaxPhenomenonTimeForOffering(String offering) {
return this.maxPhenomenonTimeForOfferings.get(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getMinPhenomenonTimeForOffering__(final String offering)
|
getMinPhenomenonTimeForOffering__(String offering)
|
@Override
public DateTime getMinPhenomenonTimeForOffering(final String offering) {
return this.minPhenomenonTimeForOfferings.get(offering);
}
|
@Override
public DateTime getMinPhenomenonTimeForOffering(String offering) {
return this.minPhenomenonTimeForOfferings.get(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getAllowedObservationTypesForOffering__(final String offering)
|
getAllowedObservationTypesForOffering__(String offering)
|
@Override
public Set<String> getAllowedObservationTypesForOffering(final String offering) {
return copyOf(this.allowedObservationTypeForOfferings.get(offering));
}
|
@Override
public Set<String> getAllowedObservationTypesForOffering(String offering) {
return copyOf(this.allowedObservationTypeForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getFeaturesOfInterestForOffering__(final String offering)
|
getFeaturesOfInterestForOffering__(String offering)
|
@Override
public Set<String> getFeaturesOfInterestForOffering(final String offering) {
return copyOf(this.featuresOfInterestForOfferings.get(offering));
}
|
@Override
public Set<String> getFeaturesOfInterestForOffering(String offering) {
return copyOf(this.featuresOfInterestForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getFeaturesOfInterestForResultTemplate__(final String resultTemplate)
|
getFeaturesOfInterestForResultTemplate__(String resultTemplate)
|
@Override
public Set<String> getFeaturesOfInterestForResultTemplate(final String resultTemplate) {
return copyOf(this.featuresOfInterestForResultTemplates.get(resultTemplate));
}
|
@Override
public Set<String> getFeaturesOfInterestForResultTemplate(String resultTemplate) {
return copyOf(this.featuresOfInterestForResultTemplates.get(resultTemplate));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservablePropertiesForOffering__(final String offering)
|
getObservablePropertiesForOffering__(String offering)
|
@Override
public Set<String> getObservablePropertiesForOffering(final String offering) {
return copyOf(this.observablePropertiesForOfferings.get(offering));
}
|
@Override
public Set<String> getObservablePropertiesForOffering(String offering) {
return copyOf(this.observablePropertiesForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservablePropertiesForProcedure__(final String procedure)
|
getObservablePropertiesForProcedure__(String procedure)
|
@Override
public Set<String> getObservablePropertiesForProcedure(final String procedure) {
return copyOf(this.observablePropertiesForProcedures.get(procedure));
}
|
@Override
public Set<String> getObservablePropertiesForProcedure(String procedure) {
return copyOf(this.observablePropertiesForProcedures.get(procedure));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservationTypesForOffering__(final String offering)
|
getObservationTypesForOffering__(String offering)
|
@Override
public Set<String> getObservationTypesForOffering(final String offering) {
return copyOf(this.observationTypesForOfferings.get(offering));
}
|
@Override
public Set<String> getObservationTypesForOffering(String offering) {
return copyOf(this.observationTypesForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservablePropertiesForResultTemplate__(final String resultTemplate)
|
getObservablePropertiesForResultTemplate__(String resultTemplate)
|
@Override
public Set<String> getObservablePropertiesForResultTemplate(final String resultTemplate) {
return copyOf(this.observedPropertiesForResultTemplates.get(resultTemplate));
}
|
@Override
public Set<String> getObservablePropertiesForResultTemplate(String resultTemplate) {
return copyOf(this.observedPropertiesForResultTemplates.get(resultTemplate));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getParentProcedures__(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
getChildOfferings__(final String offeringIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
@Override
public Set<String> getParentProcedures(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return getHierarchy(this.parentProceduresForProcedures, procedureIdentifier, fullHierarchy, includeSelf);
}
|
@Override
public Set<String> getChildOfferings(final String offeringIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return SosHelper.getHierarchy(this.childOfferingsForOfferings, offeringIdentifier, fullHierarchy, includeSelf);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getParentFeatures__(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
getParentFeatures__(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
@Override
public Set<String> getParentFeatures(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return getHierarchy(this.parentFeaturesForFeaturesOfInterest, featureIdentifier, fullHierarchy, includeSelf);
}
|
@Override
public Set<String> getParentFeatures(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return SosHelper.getHierarchy(this.parentFeaturesForFeaturesOfInterest, featureIdentifier, fullHierarchy,
includeSelf);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getChildProcedures__(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
getChildProcedures__(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
@Override
public Set<String> getChildProcedures(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return getHierarchy(this.childProceduresForProcedures, procedureIdentifier, fullHierarchy, includeSelf);
}
|
@Override
public Set<String> getChildProcedures(final String procedureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return SosHelper.getHierarchy(this.childProceduresForProcedures, procedureIdentifier, fullHierarchy,
includeSelf);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getChildProcedures__(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
getParentOfferings__(final Set<String> offeringIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
@Override
public Set<String> getChildProcedures(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return getHierarchy(this.childProceduresForProcedures, procedureIdentifiers, fullHierarchy, includeSelves);
}
|
@Override
public Set<String> getParentOfferings(final Set<String> offeringIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return SosHelper.getHierarchy(this.parentOfferingsForOfferings, offeringIdentifiers, fullHierarchy,
includeSelves);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getChildFeatures__(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
getChildFeatures__(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf)
|
@Override
public Set<String> getChildFeatures(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return getHierarchy(this.childFeaturesForFeatureOfInterest, featureIdentifier, fullHierarchy, includeSelf);
}
|
@Override
public Set<String> getChildFeatures(final String featureIdentifier, final boolean fullHierarchy,
final boolean includeSelf) {
return SosHelper.getHierarchy(this.childFeaturesForFeatureOfInterest, featureIdentifier, fullHierarchy,
includeSelf);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getParentProcedures__(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
getParentProcedures__(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
@Override
public Set<String> getParentProcedures(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return getHierarchy(this.parentProceduresForProcedures, procedureIdentifiers, fullHierarchy, includeSelves);
}
|
@Override
public Set<String> getParentProcedures(final Set<String> procedureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return SosHelper.getHierarchy(this.parentProceduresForProcedures, procedureIdentifiers, fullHierarchy,
includeSelves);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getParentFeatures__(final Set<String> featureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
getParentFeatures__(final Set<String> featureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves)
|
@Override
public Set<String> getParentFeatures(final Set<String> featureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return getHierarchy(this.parentFeaturesForFeaturesOfInterest, featureIdentifiers, fullHierarchy,
includeSelves);
}
|
@Override
public Set<String> getParentFeatures(final Set<String> featureIdentifiers, final boolean fullHierarchy,
final boolean includeSelves) {
return SosHelper.getHierarchy(this.parentFeaturesForFeaturesOfInterest, featureIdentifiers, fullHierarchy,
includeSelves);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hasFeatureOfInterest__(final String featureOfInterest)
|
hasFeatureOfInterest__(String featureOfInterest)
|
@Override
public boolean hasFeatureOfInterest(final String featureOfInterest) {
return this.featuresOfInterest.contains(featureOfInterest);
}
|
@Override
public boolean hasFeatureOfInterest(String featureOfInterest) {
return this.featuresOfInterest.contains(featureOfInterest);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hasOffering__(final String offering)
|
hasOffering__(String offering)
|
@Override
public boolean hasOffering(final String offering) {
return this.offerings.contains(offering);
}
|
@Override
public boolean hasOffering(String offering) {
return this.offerings.contains(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hasProcedure__(final String procedure)
|
hasProcedure__(String procedure)
|
@Override
public boolean hasProcedure(final String procedure) {
return this.procedures.contains(procedure);
}
|
@Override
public boolean hasProcedure(String procedure) {
return this.procedures.contains(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
hasResultTemplate__(final String resultTemplate)
|
hasResultTemplate__(String resultTemplate)
|
@Override
public boolean hasResultTemplate(final String resultTemplate) {
return this.resultTemplates.contains(resultTemplate);
}
|
@Override
public boolean hasResultTemplate(String resultTemplate) {
return this.resultTemplates.contains(resultTemplate);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getMaxResultTimeForOffering__(final String offering)
|
getMaxResultTimeForOffering__(String offering)
|
@Override
public DateTime getMaxResultTimeForOffering(final String offering) {
return this.maxResultTimeForOfferings.get(offering);
}
|
@Override
public DateTime getMaxResultTimeForOffering(String offering) {
return this.maxResultTimeForOfferings.get(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getMinResultTimeForOffering__(final String offering)
|
getMinResultTimeForOffering__(String offering)
|
@Override
public DateTime getMinResultTimeForOffering(final String offering) {
return this.minResultTimeForOfferings.get(offering);
}
|
@Override
public DateTime getMinResultTimeForOffering(String offering) {
return this.minResultTimeForOfferings.get(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getSpatialFilteringProfileEnvelopeForOffering__(String offering)
|
getSpatialFilteringProfileEnvelopeForOffering__(String offering)
|
@Override
public SosEnvelope getSpatialFilteringProfileEnvelopeForOffering(String offering) {
return copyOf(this.spatialFilteringProfileEnvelopeForOfferings.get(offering));
}
|
@Override
public ReferencedEnvelope getSpatialFilteringProfileEnvelopeForOffering(String offering) {
return copyOf(this.spatialFilteringProfileEnvelopeForOfferings.get(offering));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
isLanguageSupported__(final Locale language)
|
isLanguageSupported__(Locale language)
|
@Override
public boolean isLanguageSupported(final Locale language) {
return this.supportedLanguages.contains(language);
}
|
@Override
public boolean isLanguageSupported(Locale language) {
return this.supportedLanguages.contains(language);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getFeatureOfInterestIdentifierForHumanReadableName__(String humanReadableName)
|
getFeatureOfInterestIdentifierForHumanReadableName__(String humanReadableName)
|
@Override
public String getFeatureOfInterestIdentifierForHumanReadableName(String humanReadableName) {
if (featureOfInterestIdentifierForHumanReadableName.containsKey(humanReadableName)) {
return featureOfInterestIdentifierForHumanReadableName.get(humanReadableName);
}
return humanReadableName;
}
|
@Override
public String getFeatureOfInterestIdentifierForHumanReadableName(String humanReadableName) {
return this.featureOfInterestIdentifierHumanReadableName.inverse().getOrDefault(humanReadableName,
humanReadableName);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getFeatureOfInterestHumanReadableNameForIdentifier__(String identifier)
|
getFeatureOfInterestHumanReadableNameForIdentifier__(String identifier)
|
@Override
public String getFeatureOfInterestHumanReadableNameForIdentifier(String identifier) {
if (featureOfInterestHumanReadableNameForIdentifier.containsKey(identifier)) {
return featureOfInterestHumanReadableNameForIdentifier.get(identifier);
}
return identifier;
}
|
@Override
public String getFeatureOfInterestHumanReadableNameForIdentifier(String identifier) {
return this.featureOfInterestIdentifierHumanReadableName.getOrDefault(identifier, identifier);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservablePropertyIdentifierForHumanReadableName__(String humanReadableName)
|
getObservablePropertyIdentifierForHumanReadableName__(String humanReadableName)
|
@Override
public String getObservablePropertyIdentifierForHumanReadableName(String humanReadableName) {
if (observablePropertyIdentifierForHumanReadableName.containsKey(humanReadableName)) {
return observablePropertyIdentifierForHumanReadableName.get(humanReadableName);
}
return humanReadableName;
}
|
@Override
public String getObservablePropertyIdentifierForHumanReadableName(String humanReadableName) {
return this.observablePropertyIdentifierHumanReadableName.inverse().getOrDefault(humanReadableName,
humanReadableName);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getObservablePropertyHumanReadableNameForIdentifier__(String identifier)
|
getObservablePropertyHumanReadableNameForIdentifier__(String identifier)
|
@Override
public String getObservablePropertyHumanReadableNameForIdentifier(String identifier) {
if (observablePropertyHumanReadableNameForIdentifier.containsKey(identifier)) {
return observablePropertyHumanReadableNameForIdentifier.get(identifier);
}
return identifier;
}
|
@Override
public String getObservablePropertyHumanReadableNameForIdentifier(String identifier) {
return this.observablePropertyIdentifierHumanReadableName.getOrDefault(identifier, identifier);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getProcedureIdentifierForHumanReadableName__(String humanReadableName)
|
getProcedureIdentifierForHumanReadableName__(String humanReadableName)
|
@Override
public String getProcedureIdentifierForHumanReadableName(String humanReadableName) {
if (procedureIdentifierForHumanReadableName.containsKey(humanReadableName)) {
return procedureIdentifierForHumanReadableName.get(humanReadableName);
}
return humanReadableName;
}
|
@Override
public String getProcedureIdentifierForHumanReadableName(String humanReadableName) {
return this.procedureIdentifierHumanReadableName.inverse().getOrDefault(humanReadableName, humanReadableName);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getProcedureHumanReadableNameForIdentifier__(String identifier)
|
getProcedureHumanReadableNameForIdentifier__(String identifier)
|
@Override
public String getProcedureHumanReadableNameForIdentifier(String identifier) {
if (procedureHumanReadableNameForIdentifier.containsKey(identifier)) {
return procedureHumanReadableNameForIdentifier.get(identifier);
}
return identifier;
}
|
@Override
public String getProcedureHumanReadableNameForIdentifier(String identifier) {
return this.procedureIdentifierHumanReadableName.getOrDefault(identifier, identifier);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getOfferingIdentifierForHumanReadableName__(String humanReadableName)
|
getOfferingIdentifierForHumanReadableName__(String humanReadableName)
|
@Override
public String getOfferingIdentifierForHumanReadableName(String humanReadableName) {
if (offeringIdentifierForHumanReadableName.containsKey(humanReadableName)) {
return offeringIdentifierForHumanReadableName.get(humanReadableName);
}
return humanReadableName;
}
|
@Override
public String getOfferingIdentifierForHumanReadableName(String humanReadableName) {
return this.offeringIdentifierHumanReadableName.inverse().getOrDefault(humanReadableName, humanReadableName);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
getOfferingHumanReadableNameForIdentifier__(String identifier)
|
getOfferingHumanReadableNameForIdentifier__(String identifier)
|
@Override
public String getOfferingHumanReadableNameForIdentifier(String identifier) {
if (offeringHumanReadableNameForIdentifier.containsKey(identifier)) {
return offeringHumanReadableNameForIdentifier.get(identifier);
}
return identifier;
}
|
@Override
public String getOfferingHumanReadableNameForIdentifier(String identifier) {
return this.offeringIdentifierHumanReadableName.getOrDefault(identifier, identifier);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
addEpsgCode__(final Integer epsgCode)
|
addEpsgCode__(Integer epsgCode)
|
@Override
public void addEpsgCode(final Integer epsgCode) {
greaterZero(EPSG_CODE, epsgCode);
LOG.trace("Adding EpsgCode {}", epsgCode);
this.epsgCodes.add(epsgCode);
}
|
@Override
public void addEpsgCode(Integer epsgCode) {
CacheValidation.greaterZero(EPSG_CODE, epsgCode);
LOG.trace("Adding EpsgCode {}", epsgCode);
this.epsgCodes.add(epsgCode);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
addFeatureOfInterest__(final String featureOfInterest)
|
addFeatureOfInterest__(String featureOfInterest)
|
@Override
public void addFeatureOfInterest(final String featureOfInterest) {
notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Adding FeatureOfInterest {}", featureOfInterest);
this.featuresOfInterest.add(featureOfInterest);
}
|
@Override
public void addFeatureOfInterest(String featureOfInterest) {
CacheValidation.notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Adding FeatureOfInterest {}", featureOfInterest);
this.featuresOfInterest.add(featureOfInterest);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
addProcedure__(final String procedure)
|
addProcedure__(String procedure)
|
@Override
public void addProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Adding procedure {}", procedure);
this.procedures.add(procedure);
}
|
@Override
public void addProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Adding procedure {}", procedure);
this.procedures.add(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
addResultTemplate__(final String resultTemplate)
|
addResultTemplate__(String resultTemplate)
|
@Override
public void addResultTemplate(final String resultTemplate) {
notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Adding SosResultTemplate {}", resultTemplate);
this.resultTemplates.add(resultTemplate);
}
|
@Override
public void addResultTemplate(String resultTemplate) {
CacheValidation.notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Adding SosResultTemplate {}", resultTemplate);
this.resultTemplates.add(resultTemplate);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeFeatureOfInterest__(final String featureOfInterest)
|
removeFeatureOfInterest__(String featureOfInterest)
|
@Override
public void removeFeatureOfInterest(final String featureOfInterest) {
notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Removing FeatureOfInterest {}", featureOfInterest);
this.featuresOfInterest.remove(featureOfInterest);
}
|
@Override
public void removeFeatureOfInterest(String featureOfInterest) {
CacheValidation.notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Removing FeatureOfInterest {}", featureOfInterest);
this.featuresOfInterest.remove(featureOfInterest);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeProcedure__(final String procedure)
|
removeProcedure__(String procedure)
|
@Override
public void removeProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing Procedure {}", procedure);
this.procedures.remove(procedure);
}
|
@Override
public void removeProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing Procedure {}", procedure);
this.procedures.remove(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeResultTemplate__(final String resultTemplate)
|
removeResultTemplate__(String resultTemplate)
|
@Override
public void removeResultTemplate(final String resultTemplate) {
notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing SosResultTemplate {}", resultTemplate);
this.resultTemplates.remove(resultTemplate);
}
|
@Override
public void removeResultTemplate(String resultTemplate) {
CacheValidation.notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing SosResultTemplate {}", resultTemplate);
this.resultTemplates.remove(resultTemplate);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setObservablePropertiesForOffering__(final String offering, final Collection<String> observableProperties)
|
setObservablePropertiesForOffering__(String offering, Collection<String> observableProperties)
|
@Override
public void setObservablePropertiesForOffering(final String offering, final Collection<String> observableProperties) {
final Set<String> newValue = newSynchronizedSet(observableProperties);
LOG.trace("Setting ObservableProperties for Offering {} to {}", offering, observableProperties);
this.observablePropertiesForOfferings.put(offering, newValue);
}
|
@Override
public void setObservablePropertiesForOffering(String offering, Collection<String> observableProperties) {
final Set<String> newValue = newSynchronizedSet(observableProperties);
LOG.trace("Setting ObservableProperties for Offering {} to {}", offering, observableProperties);
this.observablePropertiesForOfferings.put(offering, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setObservablePropertiesForProcedure__(final String procedure,
final Collection<String> observableProperties)
|
setObservablePropertiesForProcedure__(String procedure, final Collection<String> observableProperties)
|
@Override
public void setObservablePropertiesForProcedure(final String procedure,
final Collection<String> observableProperties) {
final Set<String> newValue = newSynchronizedSet(observableProperties);
LOG.trace("Setting ObservableProperties for Procedure {} to {}", procedure, newValue);
this.observablePropertiesForProcedures.put(procedure, newValue);
}
|
@Override
public void setObservablePropertiesForProcedure(String procedure, final Collection<String> observableProperties) {
final Set<String> newValue = newSynchronizedSet(observableProperties);
LOG.trace("Setting ObservableProperties for Procedure {} to {}", procedure, newValue);
this.observablePropertiesForProcedures.put(procedure, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setObservationTypesForOffering__(final String offering, final Collection<String> observationTypes)
|
setObservationTypesForOffering__(String offering, Collection<String> observationTypes)
|
@Override
public void setObservationTypesForOffering(final String offering, final Collection<String> observationTypes) {
final Set<String> newValue = newSynchronizedSet(observationTypes);
LOG.trace("Setting ObservationTypes for Offering {} to {}", offering, newValue);
this.observationTypesForOfferings.put(offering, newValue);
}
|
@Override
public void setObservationTypesForOffering(String offering, Collection<String> observationTypes) {
final Set<String> newValue = newSynchronizedSet(observationTypes);
LOG.trace("Setting ObservationTypes for Offering {} to {}", offering, newValue);
this.observationTypesForOfferings.put(offering, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setOfferingsForObservableProperty__(final String observableProperty, final Collection<String> offerings)
|
setOfferingsForObservableProperty__(String observableProperty, Collection<String> offerings)
|
@Override
public void setOfferingsForObservableProperty(final String observableProperty, final Collection<String> offerings) {
final Set<String> newValue = newSynchronizedSet(offerings);
LOG.trace("Setting Offerings for ObservableProperty {} to {}", observableProperty, newValue);
this.offeringsForObservableProperties.put(observableProperty, newValue);
}
|
@Override
public void setOfferingsForObservableProperty(String observableProperty, Collection<String> offerings) {
final Set<String> newValue = newSynchronizedSet(offerings);
LOG.trace("Setting Offerings for ObservableProperty {} to {}", observableProperty, newValue);
this.offeringsForObservableProperties.put(observableProperty, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setOfferingsForProcedure__(final String procedure, final Collection<String> offerings)
|
setOfferingsForProcedure__(String procedure, Collection<String> offerings)
|
@Override
public void setOfferingsForProcedure(final String procedure, final Collection<String> offerings) {
final Set<String> newValue = newSynchronizedSet(offerings);
LOG.trace("Setting Offerings for Procedure {} to {}", procedure, newValue);
this.offeringsForProcedures.put(procedure, newValue);
}
|
@Override
public void setOfferingsForProcedure(String procedure, Collection<String> offerings) {
final Set<String> newValue = newSynchronizedSet(offerings);
LOG.trace("Setting Offerings for Procedure {} to {}", procedure, newValue);
this.offeringsForProcedures.put(procedure, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setProceduresForFeatureOfInterest__(final String featureOfInterest,
final Collection<String> proceduresForFeatureOfInterest)
|
setProceduresForFeatureOfInterest__(String featureOfInterest, Collection<String> procedures)
|
@Override
public void setProceduresForFeatureOfInterest(final String featureOfInterest,
final Collection<String> proceduresForFeatureOfInterest) {
final Set<String> newValue = newSynchronizedSet(proceduresForFeatureOfInterest);
LOG.trace("Setting Procedures for FeatureOfInterest {} to {}", featureOfInterest, newValue);
this.proceduresForFeaturesOfInterest.put(featureOfInterest, newValue);
}
|
@Override
public void setProceduresForFeatureOfInterest(String featureOfInterest, Collection<String> procedures) {
final Set<String> newValue = newSynchronizedSet(procedures);
LOG.trace("Setting Procedures for FeatureOfInterest {} to {}", featureOfInterest, newValue);
this.proceduresForFeaturesOfInterest.put(featureOfInterest, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setProceduresForObservableProperty__(final String observableProperty, final Collection<String> procedures)
|
setProceduresForObservableProperty__(String observableProperty, Collection<String> procedures)
|
@Override
public void setProceduresForObservableProperty(final String observableProperty, final Collection<String> procedures) {
final Set<String> newValue = newSynchronizedSet(procedures);
LOG.trace("Setting Procedures for ObservableProperty {} to {}", observableProperty, procedures);
this.proceduresForObservableProperties.put(observableProperty, newValue);
}
|
@Override
public void setProceduresForObservableProperty(String observableProperty, Collection<String> procedures) {
final Set<String> newValue = newSynchronizedSet(procedures);
LOG.trace("Setting Procedures for ObservableProperty {} to {}", observableProperty, procedures);
this.proceduresForObservableProperties.put(observableProperty, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setProceduresForOffering__(final String offering, final Collection<String> procedures)
|
setProceduresForOffering__(String offering, Collection<String> procedures)
|
@Override
public void setProceduresForOffering(final String offering, final Collection<String> procedures) {
final Set<String> newValue = newSynchronizedSet(procedures);
LOG.trace("Setting Procedures for Offering {} to {}", offering, newValue);
this.proceduresForOfferings.put(offering, newValue);
}
|
@Override
public void setProceduresForOffering(String offering, Collection<String> procedures) {
final Set<String> newValue = newSynchronizedSet(procedures);
LOG.trace("Setting Procedures for Offering {} to {}", offering, newValue);
this.proceduresForOfferings.put(offering, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setRelatedFeaturesForOffering__(final String offering, final Collection<String> relatedFeatures)
|
setRelatedFeaturesForOffering__(String offering, Collection<String> relatedFeatures)
|
@Override
public void setRelatedFeaturesForOffering(final String offering, final Collection<String> relatedFeatures) {
final Set<String> newValue = newSynchronizedSet(relatedFeatures);
LOG.trace("Setting Related Features for Offering {} to {}", offering, newValue);
this.relatedFeaturesForOfferings.put(offering, newValue);
}
|
@Override
public void setRelatedFeaturesForOffering(String offering, Collection<String> relatedFeatures) {
final Set<String> newValue = newSynchronizedSet(relatedFeatures);
LOG.trace("Setting Related Features for Offering {} to {}", offering, newValue);
this.relatedFeaturesForOfferings.put(offering, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setResultTemplatesForOffering__(final String offering, final Collection<String> resultTemplates)
|
setResultTemplatesForOffering__(String offering, Collection<String> resultTemplates)
|
@Override
public void setResultTemplatesForOffering(final String offering, final Collection<String> resultTemplates) {
final Set<String> newValue = newSynchronizedSet(resultTemplates);
LOG.trace("Setting ResultTemplates for Offering {} to {}", offering, newValue);
this.resultTemplatesForOfferings.put(offering, newValue);
}
|
@Override
public void setResultTemplatesForOffering(String offering, Collection<String> resultTemplates) {
final Set<String> newValue = newSynchronizedSet(resultTemplates);
LOG.trace("Setting ResultTemplates for Offering {} to {}", offering, newValue);
this.resultTemplatesForOfferings.put(offering, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setRolesForRelatedFeature__(final String relatedFeature, final Collection<String> roles)
|
setRolesForRelatedFeature__(String relatedFeature, Collection<String> roles)
|
@Override
public void setRolesForRelatedFeature(final String relatedFeature, final Collection<String> roles) {
final Set<String> newValue = newSynchronizedSet(roles);
LOG.trace("Setting Roles for RelatedFeature {} to {}", relatedFeature, newValue);
this.rolesForRelatedFeatures.put(relatedFeature, newValue);
}
|
@Override
public void setRolesForRelatedFeature(String relatedFeature, Collection<String> roles) {
final Set<String> newValue = newSynchronizedSet(roles);
LOG.trace("Setting Roles for RelatedFeature {} to {}", relatedFeature, newValue);
this.rolesForRelatedFeatures.put(relatedFeature, newValue);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setFeaturesOfInterest__(final Collection<String> featuresOfInterest)
|
setFeaturesOfInterest__(Collection<String> featuresOfInterest)
|
@Override
public void setFeaturesOfInterest(final Collection<String> featuresOfInterest) {
LOG.trace("Setting FeaturesOfInterest");
this.featuresOfInterest.clear();
addFeaturesOfInterest(featuresOfInterest);
}
|
@Override
public void setFeaturesOfInterest(Collection<String> featuresOfInterest) {
LOG.trace("Setting FeaturesOfInterest");
this.featuresOfInterest.clear();
addFeaturesOfInterest(featuresOfInterest);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setProcedures__(final Collection<String> procedures)
|
setProcedures__(Collection<String> procedures)
|
@Override
public void setProcedures(final Collection<String> procedures) {
LOG.trace("Setting Procedures");
this.procedures.clear();
addProcedures(procedures);
}
|
@Override
public void setProcedures(Collection<String> procedures) {
LOG.trace("Setting Procedures");
this.procedures.clear();
addProcedures(procedures);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setMaxPhenomenonTimeForOffering__(final String offering, final DateTime maxTime)
|
setMaxPhenomenonTimeForOffering__(String offering, DateTime maxTime)
|
@Override
public void setMaxPhenomenonTimeForOffering(final String offering, final DateTime maxTime) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Setting maximal EventTime for Offering {} to {}", offering, maxTime);
if (maxTime == null) {
this.maxPhenomenonTimeForOfferings.remove(offering);
} else {
this.maxPhenomenonTimeForOfferings.put(offering, DateTimeHelper.toUTC(maxTime));
}
}
|
@Override
public void setMaxPhenomenonTimeForOffering(String offering, DateTime maxTime) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Setting maximal EventTime for Offering {} to {}", offering, maxTime);
if (maxTime == null) {
this.maxPhenomenonTimeForOfferings.remove(offering);
} else {
this.maxPhenomenonTimeForOfferings.put(offering, DateTimeHelper.toUTC(maxTime));
}
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setMinPhenomenonTimeForOffering__(final String offering, final DateTime minTime)
|
setMinPhenomenonTimeForOffering__(String offering, DateTime minTime)
|
@Override
public void setMinPhenomenonTimeForOffering(final String offering, final DateTime minTime) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Setting minimal EventTime for Offering {} to {}", offering, minTime);
if (minTime == null) {
this.minPhenomenonTimeForOfferings.remove(offering);
} else {
this.minPhenomenonTimeForOfferings.put(offering, DateTimeHelper.toUTC(minTime));
}
}
|
@Override
public void setMinPhenomenonTimeForOffering(String offering, DateTime minTime) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Setting minimal EventTime for Offering {} to {}", offering, minTime);
if (minTime == null) {
this.minPhenomenonTimeForOfferings.remove(offering);
} else {
this.minPhenomenonTimeForOfferings.put(offering, DateTimeHelper.toUTC(minTime));
}
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setMaxPhenomenonTimeForProcedure__(final String procedure, final DateTime maxTime)
|
setMaxPhenomenonTimeForProcedure__(String procedure, DateTime maxTime)
|
@Override
public void setMaxPhenomenonTimeForProcedure(final String procedure, final DateTime maxTime) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Setting maximal phenomenon time for procedure {} to {}", procedure, maxTime);
if (maxTime == null) {
this.maxPhenomenonTimeForProcedures.remove(procedure);
} else {
this.maxPhenomenonTimeForProcedures.put(procedure, DateTimeHelper.toUTC(maxTime));
}
}
|
@Override
public void setMaxPhenomenonTimeForProcedure(String procedure, DateTime maxTime) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Setting maximal phenomenon time for procedure {} to {}", procedure, maxTime);
if (maxTime == null) {
this.maxPhenomenonTimeForProcedures.remove(procedure);
} else {
this.maxPhenomenonTimeForProcedures.put(procedure, DateTimeHelper.toUTC(maxTime));
}
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setMinPhenomenonTimeForProcedure__(final String procedure, final DateTime minTime)
|
setMinPhenomenonTimeForProcedure__(String procedure, DateTime minTime)
|
@Override
public void setMinPhenomenonTimeForProcedure(final String procedure, final DateTime minTime) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Setting minimal phenomenon time for procedure {} to {}", procedure, minTime);
if (minTime == null) {
this.minPhenomenonTimeForProcedures.remove(procedure);
} else {
this.minPhenomenonTimeForProcedures.put(procedure, DateTimeHelper.toUTC(minTime));
}
}
|
@Override
public void setMinPhenomenonTimeForProcedure(String procedure, DateTime minTime) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Setting minimal phenomenon time for procedure {} to {}", procedure, minTime);
if (minTime == null) {
this.minPhenomenonTimeForProcedures.remove(procedure);
} else {
this.minPhenomenonTimeForProcedures.put(procedure, DateTimeHelper.toUTC(minTime));
}
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setNameForOffering__(final String offering, final String name)
|
setNameForOffering__(String offering, String name)
|
@Override
public void setNameForOffering(final String offering, final String name) {
notNullOrEmpty(OFFERING, offering);
notNullOrEmpty(NAME, name);
LOG.trace("Setting Name of Offering {} to {}", offering, name);
this.nameForOfferings.put(offering, name);
}
|
@Override
public void setNameForOffering(String offering, String name) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
CacheValidation.notNullOrEmpty(NAME, name);
LOG.trace("Setting Name of Offering {} to {}", offering, name);
this.nameForOfferings.put(offering, name);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setI18nNameForOffering__(String offering, MultilingualString name)
|
setI18nNameForOffering__(String offering, MultilingualString name)
|
@Override
public void setI18nNameForOffering(String offering, MultilingualString name) {
notNullOrEmpty(OFFERING, offering);
notNull(NAME, name);
LOG.trace("Setting I18N Name of Offering {} to {}", offering, name);
this.i18nNameForOfferings.put(offering, name);
}
|
@Override
public void setI18nNameForOffering(String offering, MultilingualString name) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
Objects.requireNonNull(name, NAME);
LOG.trace("Setting I18N Name of Offering {} to {}", offering, name);
this.i18nNameForOfferings.put(offering, name);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setI18nDescriptionForOffering__(String offering,
MultilingualString description)
|
setI18nDescriptionForOffering__(String offering, MultilingualString description)
|
@Override
public void setI18nDescriptionForOffering(String offering,
MultilingualString description) {
notNullOrEmpty(OFFERING, offering);
notNull(DESCRIPTION, description);
LOG.trace("Setting I18N Description of Offering {} to {}", offering, description);
this.i18nDescriptionForOfferings.put(offering, description);
}
|
@Override
public void setI18nDescriptionForOffering(String offering, MultilingualString description) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
Objects.requireNonNull(description, DESCRIPTION);
LOG.trace("Setting I18N Description of Offering {} to {}", offering, description);
this.i18nDescriptionForOfferings.put(offering, description);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
setEnvelopeForOffering__(final String offering, final SosEnvelope envelope)
|
setEnvelopeForOffering__(String offering, ReferencedEnvelope envelope)
|
@Override
public void setEnvelopeForOffering(final String offering, final SosEnvelope envelope) {
LOG.trace("Setting Envelope for Offering {} to {}", offering, envelope);
this.envelopeForOfferings.put(offering, copyOf(envelope));
}
|
@Override
public void setEnvelopeForOffering(String offering, ReferencedEnvelope envelope) {
LOG.trace("Setting Envelope for Offering {} to {}", offering, envelope);
this.envelopeForOfferings.put(offering, copyOf(envelope));
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeAllowedObservationTypesForOffering__(final String offering)
|
removeAllowedObservationTypesForOffering__(String offering)
|
@Override
public void removeAllowedObservationTypesForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing allowedObservationTypes for offering {}", offering);
this.allowedObservationTypeForOfferings.remove(offering);
}
|
@Override
public void removeAllowedObservationTypesForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing allowedObservationTypes for offering {}", offering);
this.allowedObservationTypeForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeEnvelopeForOffering__(final String offering)
|
removeEnvelopeForOffering__(String offering)
|
@Override
public void removeEnvelopeForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing envelope for offering {}", offering);
this.envelopeForOfferings.remove(offering);
}
|
@Override
public void removeEnvelopeForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing envelope for offering {}", offering);
this.envelopeForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeEpsgCode__(final Integer epsgCode)
|
removeEpsgCode__(Integer epsgCode)
|
@Override
public void removeEpsgCode(final Integer epsgCode) {
notNull(EPSG_CODE, epsgCode);
LOG.trace("Removing epsgCode {}", epsgCode);
this.epsgCodes.remove(epsgCode);
}
|
@Override
public void removeEpsgCode(Integer epsgCode) {
Objects.requireNonNull(epsgCode, EPSG_CODE);
LOG.trace("Removing epsgCode {}", epsgCode);
this.epsgCodes.remove(epsgCode);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeFeaturesOfInterestForResultTemplate__(final String resultTemplate)
|
removeFeaturesOfInterestForResultTemplate__(String resultTemplate)
|
@Override
public void removeFeaturesOfInterestForResultTemplate(final String resultTemplate) {
notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing featuresOfInterest for resultTemplate {}", resultTemplate);
this.featuresOfInterestForResultTemplates.remove(resultTemplate);
}
|
@Override
public void removeFeaturesOfInterestForResultTemplate(String resultTemplate) {
CacheValidation.notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing featuresOfInterest for resultTemplate {}", resultTemplate);
this.featuresOfInterestForResultTemplates.remove(resultTemplate);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeMaxPhenomenonTimeForOffering__(final String offering)
|
removeMaxPhenomenonTimeForOffering__(String offering)
|
@Override
public void removeMaxPhenomenonTimeForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing maxEventTime for offering {}", offering);
this.maxPhenomenonTimeForOfferings.remove(offering);
}
|
@Override
public void removeMaxPhenomenonTimeForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing maxEventTime for offering {}", offering);
this.maxPhenomenonTimeForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeMinPhenomenonTimeForOffering__(final String offering)
|
removeMinPhenomenonTimeForOffering__(String offering)
|
@Override
public void removeMinPhenomenonTimeForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing minEventTime for offering {}", offering);
this.minPhenomenonTimeForOfferings.remove(offering);
}
|
@Override
public void removeMinPhenomenonTimeForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing minEventTime for offering {}", offering);
this.minPhenomenonTimeForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeMaxPhenomenonTimeForProcedure__(final String procedure)
|
removeMaxPhenomenonTimeForProcedure__(String procedure)
|
@Override
public void removeMaxPhenomenonTimeForProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing maxEventTime for procedure {}", procedure);
this.maxPhenomenonTimeForProcedures.remove(procedure);
}
|
@Override
public void removeMaxPhenomenonTimeForProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing maxEventTime for procedure {}", procedure);
this.maxPhenomenonTimeForProcedures.remove(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeMinPhenomenonTimeForProcedure__(final String procedure)
|
removeMinPhenomenonTimeForProcedure__(String procedure)
|
@Override
public void removeMinPhenomenonTimeForProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing minEventTime for procedure {}", procedure);
this.minPhenomenonTimeForProcedures.remove(procedure);
}
|
@Override
public void removeMinPhenomenonTimeForProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing minEventTime for procedure {}", procedure);
this.minPhenomenonTimeForProcedures.remove(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeNameForOffering__(final String offering)
|
removeNameForOffering__(String offering)
|
@Override
public void removeNameForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing name for offering {}", offering);
this.nameForOfferings.remove(offering);
}
|
@Override
public void removeNameForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing name for offering {}", offering);
this.nameForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeObservablePropertiesForOffering__(final String offering)
|
removeObservablePropertiesForOffering__(String offering)
|
@Override
public void removeObservablePropertiesForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing observableProperties for offering {}", offering);
this.observablePropertiesForOfferings.remove(offering);
}
|
@Override
public void removeObservablePropertiesForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing observableProperties for offering {}", offering);
this.observablePropertiesForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeObservablePropertiesForProcedure__(final String procedure)
|
removeObservablePropertiesForProcedure__(String procedure)
|
@Override
public void removeObservablePropertiesForProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing observableProperties for procedure {}", procedure);
this.observablePropertiesForProcedures.remove(procedure);
}
|
@Override
public void removeObservablePropertiesForProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing observableProperties for procedure {}", procedure);
this.observablePropertiesForProcedures.remove(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeObservablePropertiesForResultTemplate__(final String resultTemplate)
|
removeObservablePropertiesForResultTemplate__(String resultTemplate)
|
@Override
public void removeObservablePropertiesForResultTemplate(final String resultTemplate) {
notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing observableProperties for resultTemplate {}", resultTemplate);
this.observedPropertiesForResultTemplates.remove(resultTemplate);
}
|
@Override
public void removeObservablePropertiesForResultTemplate(String resultTemplate) {
CacheValidation.notNullOrEmpty(RESULT_TEMPLATE, resultTemplate);
LOG.trace("Removing observableProperties for resultTemplate {}", resultTemplate);
this.observedPropertiesForResultTemplates.remove(resultTemplate);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeObservationTypesForOffering__(final String offering)
|
removeObservationTypesForOffering__(String offering)
|
@Override
public void removeObservationTypesForOffering(final String offering) {
notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing observationTypes for offering {}", offering);
this.observationTypesForOfferings.remove(offering);
}
|
@Override
public void removeObservationTypesForOffering(String offering) {
CacheValidation.notNullOrEmpty(OFFERING, offering);
LOG.trace("Removing observationTypes for offering {}", offering);
this.observationTypesForOfferings.remove(offering);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeOfferingsForObservableProperty__(final String observableProperty)
|
removeOfferingsForObservableProperty__(String observableProperty)
|
@Override
public void removeOfferingsForObservableProperty(final String observableProperty) {
notNullOrEmpty(OBSERVABLE_PROPERTY, observableProperty);
LOG.trace("Removing offerings for observableProperty {}", observableProperty);
this.offeringsForObservableProperties.remove(observableProperty);
}
|
@Override
public void removeOfferingsForObservableProperty(String observableProperty) {
CacheValidation.notNullOrEmpty(OBSERVABLE_PROPERTY, observableProperty);
LOG.trace("Removing offerings for observableProperty {}", observableProperty);
this.offeringsForObservableProperties.remove(observableProperty);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeOfferingsForProcedure__(final String procedure)
|
removeOfferingsForProcedure__(String procedure)
|
@Override
public void removeOfferingsForProcedure(final String procedure) {
notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing offering for procedure {}", procedure);
this.offeringsForProcedures.remove(procedure);
}
|
@Override
public void removeOfferingsForProcedure(String procedure) {
CacheValidation.notNullOrEmpty(PROCEDURE, procedure);
LOG.trace("Removing offering for procedure {}", procedure);
this.offeringsForProcedures.remove(procedure);
}
|
52North_SOS__520cc60fd93dbfb6e48d75f23765d72556ef7fa1__c92d475de8a1b1cf5cb71462302fc510d7a69446
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
core/cache/src/main/java/org/n52/sos/cache/InMemoryCacheImpl.java
|
InMemoryCacheImpl
|
InMemoryCacheImpl
|
removeProceduresForFeatureOfInterest__(final String featureOfInterest)
|
removeProceduresForFeatureOfInterest__(String featureOfInterest)
|
@Override
public void removeProceduresForFeatureOfInterest(final String featureOfInterest) {
notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Removing procedures for featureOfInterest {}", featureOfInterest);
this.proceduresForFeaturesOfInterest.remove(featureOfInterest);
}
|
@Override
public void removeProceduresForFeatureOfInterest(String featureOfInterest) {
CacheValidation.notNullOrEmpty(FEATURE_OF_INTEREST, featureOfInterest);
LOG.trace("Removing procedures for featureOfInterest {}", featureOfInterest);
this.proceduresForFeaturesOfInterest.remove(featureOfInterest);
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.