本文整理汇总了Java中org.onvif.ver10.schema.Dot1XConfiguration类的典型用法代码示例。如果您正苦于以下问题:Java Dot1XConfiguration类的具体用法?Java Dot1XConfiguration怎么用?Java Dot1XConfiguration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Dot1XConfiguration类属于org.onvif.ver10.schema包,在下文中一共展示了Dot1XConfiguration类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDot1XConfigurations
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
public List<Dot1XConfiguration> getDot1XConfigurations() throws Exception {
GetDot1XConfigurationsResponse response = client.processRequest(new GetDot1XConfigurations(),
GetDot1XConfigurationsResponse.class, serviceUrl, true);
if (response == null)
return null;
return response.getDot1XConfiguration();
}
示例2: getDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Gets the value of the dot1XConfiguration property.
*
* <p>
* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the dot1XConfiguration property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getDot1XConfiguration().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link Dot1XConfiguration }
*
*
*/
public List<Dot1XConfiguration> getDot1XConfiguration() {
if (dot1XConfiguration == null) {
dot1XConfiguration = new ArrayList<Dot1XConfiguration>();
}
return this.dot1XConfiguration;
}
示例3: getDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Gets the value of the dot1XConfiguration property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the dot1XConfiguration property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDot1XConfiguration().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Dot1XConfiguration }
*
*
*/
public List<Dot1XConfiguration> getDot1XConfiguration() {
if (dot1XConfiguration == null) {
dot1XConfiguration = new ArrayList<Dot1XConfiguration>();
}
return this.dot1XConfiguration;
}
示例4: getDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Ruft den Wert der dot1XConfiguration-Eigenschaft ab.
*
* @return possible object is {@link Dot1XConfiguration }
*
*/
public Dot1XConfiguration getDot1XConfiguration() {
return dot1XConfiguration;
}
示例5: setDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Legt den Wert der dot1XConfiguration-Eigenschaft fest.
*
* @param value
* allowed object is {@link Dot1XConfiguration }
*
*/
public void setDot1XConfiguration(Dot1XConfiguration value) {
this.dot1XConfiguration = value;
}
示例6: getDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Recupera il valore della proprietà dot1XConfiguration.
*
* @return
* possible object is
* {@link Dot1XConfiguration }
*
*/
public Dot1XConfiguration getDot1XConfiguration() {
return dot1XConfiguration;
}
示例7: setDot1XConfiguration
import org.onvif.ver10.schema.Dot1XConfiguration; //导入依赖的package包/类
/**
* Imposta il valore della proprietà dot1XConfiguration.
*
* @param value
* allowed object is
* {@link Dot1XConfiguration }
*
*/
public void setDot1XConfiguration(Dot1XConfiguration value) {
this.dot1XConfiguration = value;
}