blob: 4fc841b410ad9adf22001ae26bd84155cd327777 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2017 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* BAREAU Cyrille <cyrille.bareau@orange.com>,
* BONNARDEL Gregory <gbonnardel.ext@orange.com>,
* BOLLE Sebastien <sebastien.bolle@orange.com>.
*******************************************************************************/
package org.eclipse.om2m.android.dashboard.cse.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown=true)
public class OneM2MApplication extends Resource {
private String apn;
private String iconUrl;
private String presentationUrl;
@JsonProperty("m2m:cnt")
private List<Container> containers;
public OneM2MApplication() {
}
public String getIconUrl() {
return iconUrl;
}
public void setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
}
public String getPresentationUrl() {
return presentationUrl;
}
public void setPresentationUrl(String presentationUrl) {
this.presentationUrl = presentationUrl;
}
public String getApn() {
return apn;
}
public void setApn(String apn) {
this.apn = apn;
}
public List<Container> getContainers() {
return containers;
}
public void setContainers(List<Container> containers) {
this.containers = containers;
}
}