📄 edituser.java
字号:
package org.ejbca.core.protocol.ws.jaxws;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlType;import org.ejbca.core.protocol.ws.objects.UserDataVOWS;@XmlRootElement(name = "editUser", namespace = "http://ws.protocol.core.ejbca.org/")@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "editUser", namespace = "http://ws.protocol.core.ejbca.org/")public class EditUser { @XmlElement(name = "arg0", namespace = "") private UserDataVOWS arg0; /** * * @return * returns UserDataVOWS */ public UserDataVOWS getArg0() { return this.arg0; } /** * * @param arg0 * the value for the arg0 property */ public void setArg0(UserDataVOWS arg0) { this.arg0 = arg0; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -