blob: 4c79aa67540d1e824b735c589045335823b4841e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
* <p/>
* http://www.apache.org/licenses/LICENSE-2.0
* <p/>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.eagle.metadata.model;
import org.apache.eagle.metadata.persistence.PersistenceEntity;
import java.util.Map;
/**
* Site app management entity.
*/
public class ApplicationRawEntity extends PersistenceEntity {
private String siteUuid;
private String appType;
private Map<String, Map> configuration;
private long createdTime;
private long modifiedTime;
public String getSiteUuid() {
return siteUuid;
}
public void setSiteUuid(String siteUuid) {
this.siteUuid = siteUuid;
}
public Map<String, Map> getConfiguration() {
return configuration;
}
public void setConfiguration(Map<String, Map> configuration) {
this.configuration = configuration;
}
public long getCreatedTime() {
return createdTime;
}
public void setCreatedTime(long createdTime) {
this.createdTime = createdTime;
}
public long getModifiedTime() {
return modifiedTime;
}
public void setModifiedTime(long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getAppType() {
return appType;
}
public void setAppType(String appType) {
this.appType = appType;
}
}