resourcerefstruct.java
来自「一个java 代码生成器」· Java 代码 · 共 80 行
JAVA
80 行
/**
* Copyright (c) 2002, Siddhartha P. Chandurkar siddhartha@visioncodified.com
* All rights reserved.
* Licensed under the Academic Free License version 1.1
* See the file LICENSE.TXT for details.
* LICENSE.txt is located in the directory <install-directory>\Jenerator
* of your Jenertaor Installation.
*
*/
package com.jenerator.struct.ejb;
/**
* ResourceRefStruct
*
* @author Siddhartha P. Chandurkar siddhartha@visioncodified.com
* @version 0.9.0
*/
public class ResourceRefStruct {
//ATTRIBUTES
private String description;
private String resRefName;
private String resType;
private String resAuth;
private String dsJndiName;
//CONSTRUCTORS
public ResourceRefStruct(String description, String resRefName, String resType, String resAuth, String dsJndiName) {
this.description = description;
this.resRefName = resRefName;
this.resType = resType;
this.resAuth = resAuth;
this.dsJndiName = dsJndiName;
}
//METHODS
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getResRefName() {
return resRefName;
}
public void setResRefName(String resRefName) {
this.resRefName = resRefName;
}
public String getResType() {
return resType;
}
public void setResType(String resType) {
this.resType = resType;
}
public String getResAuth() {
return resAuth;
}
public void setResAuth(String resAuth) {
this.resAuth = resAuth;
}
public String getDsJndiName() {
return dsJndiName;
}
public void setDsJndiName(String dsJndiName) {
this.dsJndiName = dsJndiName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?