Package org.fourthline.cling.model.meta

Examples of org.fourthline.cling.model.meta.DeviceDetails


     * @throws ValidationException
     * @throws IOException
     */
    public CliMediaRenderer() throws IllegalArgumentException, ValidationException, IOException, Exception {
     
      this(new DeviceDetails(
                "CliMediaRenderer",
                new ManufacturerDetails(MANUFACTURER_NAME, MANUFACTURER_SITE),
                new ModelDetails(MODEL_NAME, MODEL_DESCRIPTION, MODEL_VERSION, MODEL_SITE)
        ));
        
View Full Code Here


     * @throws ValidationException
     * @throws IOException
     */
    public CliMediaRenderer(String name) throws IllegalArgumentException,
      ValidationException, IOException, Exception {
      this(new DeviceDetails(
                name,
                new ManufacturerDetails(MANUFACTURER_NAME, MANUFACTURER_SITE),
                new ModelDetails(MODEL_NAME, MODEL_DESCRIPTION, MODEL_VERSION, MODEL_SITE)
        ));
    }
View Full Code Here

TOP

Related Classes of org.fourthline.cling.model.meta.DeviceDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.