io.datarouter.webappinstance.storage.webappinstancelog.BaseWebappInstanceLogKey Maven / Gradle / Ivy
/*
* Copyright © 2009 HotPads ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.datarouter.webappinstance.storage.webappinstancelog;
import java.time.Instant;
import java.util.List;
import io.datarouter.model.field.Field;
import io.datarouter.model.field.imp.StringField;
import io.datarouter.model.field.imp.comparable.InstantField;
import io.datarouter.model.key.primary.RegularPrimaryKey;
import io.datarouter.model.key.primary.base.BaseRegularPrimaryKey;
import io.datarouter.webappinstance.storage.webappinstance.BaseWebappInstance;
import io.datarouter.webappinstance.storage.webappinstance.BaseWebappInstanceKey;
public abstract class BaseWebappInstanceLogKey> extends BaseRegularPrimaryKey{
private String webappName;
private String serverName;
private Instant startup;
private Instant build;
public BaseWebappInstanceLogKey(){
}
public BaseWebappInstanceLogKey(String webappName, String serverName, Instant startup, Instant build){
this.webappName = webappName;
this.serverName = serverName;
this.startup = startup;
this.build = build;
}
public BaseWebappInstanceLogKey(BaseWebappInstance,?> instance){
this.serverName = instance.getKey().getServerName();
this.webappName = instance.getKey().getWebappName();
this.startup = instance.getStartupInstant();
this.build = instance.getBuildInstant();
}
@Override
public List> getFields(){
return List.of(
new StringField(BaseWebappInstanceKey.FieldKeys.webappName, webappName),
new StringField(BaseWebappInstanceKey.FieldKeys.serverName, serverName),
new InstantField(BaseWebappInstance.FieldKeys.startup, startup),
new InstantField(BaseWebappInstance.FieldKeys.build, build));
}
public String getWebappName(){
return webappName;
}
public String getServerName(){
return serverName;
}
public Instant getStartup(){
return startup;
}
public Instant getBuild(){
return build;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy