![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.windowsazure.services.media.models.MediaProcessorInfo Maven / Gradle / Ivy
/**
* Copyright Microsoft Corporation
*
* 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.microsoft.windowsazure.services.media.models;
import com.microsoft.windowsazure.services.media.implementation.ODataEntity;
import com.microsoft.windowsazure.services.media.implementation.atom.EntryType;
import com.microsoft.windowsazure.services.media.implementation.content.MediaProcessorType;
/**
* Data about a Media Processor entity.
*
*/
public class MediaProcessorInfo extends ODataEntity {
/**
* Instantiates a new media processor info.
*
* @param entry
* the entry
* @param content
* the content
*/
public MediaProcessorInfo(EntryType entry, MediaProcessorType content) {
super(entry, content);
}
/**
* Get the asset id.
*
* @return the id
*/
public String getId() {
return getContent().getId();
}
/**
* Get the asset name.
*
* @return the name
*/
public String getName() {
return this.getContent().getName();
}
/**
* Gets the description.
*
* @return the description
*/
public String getDescription() {
return this.getContent().getDescription();
}
/**
* Gets the sku.
*
* @return the sku
*/
public String getSku() {
return this.getContent().getSku();
}
/**
* Gets the vendor.
*
* @return the vendor
*/
public String getVendor() {
return this.getContent().getVendor();
}
/**
* Gets the version.
*
* @return the version
*/
public String getVersion() {
return this.getContent().getVersion();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy