/*
* Copyright (C) 2014 Michell Bak
*
* 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 com.miz.functions;
import org.teleal.cling.model.meta.Service;
import org.teleal.cling.support.model.DIDLObject;
import org.teleal.cling.support.model.container.Container;
import org.teleal.cling.support.model.item.Item;
public class ContentItem {
private Service<?, ?> service;
private DIDLObject content;
private String id;
private Boolean isContainer;
public ContentItem(Container container, Service<?, ?> service) {
this.service = service;
this.content = container;
this.id = container.getId();
this.isContainer = true;
}
public ContentItem(Item item, Service<?, ?> service) {
this.service = service;
this.content = item;
this.id = item.getId();
this.isContainer = false;
}
public Container getContainer() {
if(isContainer)
return (Container) content;
else {
return null;
}
}
public Item getItem() {
if(isContainer)
return null;
else
return (Item)content;
}
public Service<?, ?> getService() {
return service;
}
public Boolean isContainer() {
return isContainer;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ContentItem that = (ContentItem) o;
return id.equals(that.id);
}
@Override
public int hashCode() {
return content.hashCode();
}
@Override
public String toString() {
return content.getTitle();
}
}